/* ============================================
   BASE STYLES & FONTS
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Avenir:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Proxima+Nova:wght@400;600&display=swap");

/* Browser-specific resets and fixes */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   NAVIGATION SECTION 
   ============================================ */

/* Base Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-item a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 16px;
}

.nav-item a:hover,
.nav-item a.active {
  color: #ff6b47;
}

.nav-item a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b47;
  transition: width 0.3s ease;
}

.nav-item a:hover::after,
.nav-item a.active::after {
  width: 100%;
}

/* Dropdown Navigation */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 150px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: rgba(255, 107, 71, 0.1);
  color: #ff6b47;
}

/* Social Icons - Desktop */
.social-icons-desktop {
  position: absolute;
  right: 20px;
  display: flex;
  gap: 15px;
}

.social-icons-desktop a {
  color: #666;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icons-desktop a:hover {
  color: #ff6b47;
  transform: translateY(-2px);
}

/* Hide mobile social icons on desktop */
.social-icons-mobile {
  display: none !important;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  left: 20px;
  z-index: 1002;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ============================================
   MOBILE LOGO IN NAVBAR
   ============================================ */

/* Hide mobile logo on desktop */
.nav-logo-mobile {
  display: none;
  visibility: hidden;
}

/* Show mobile logo in navbar ONLY on tablets and below - ENLARGED */
@media (max-width: 991px) {
  /* Enlarged navbar height for mobile */
  .navbar {
    padding: 25px 0;
  }

  .nav-logo-mobile {
    display: flex !important;
    visibility: visible !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
  }

  .nav-logo-mobile img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .nav-logo-mobile span {
    font-family: "Avenir", sans-serif;
    font-size: 0.75rem;
    color: #666;
    max-width: 180px;
    line-height: 1.4;
    text-align: left;
  }

  /* Enlarged hamburger */
  .hamburger span {
    width: 28px;
    height: 3.5px;
    margin: 4px 0;
  }
}

@media (max-width: 767px) {
  .navbar {
    padding: 22px 0;
  }

  .nav-logo-mobile img {
    width: 52px;
    height: 52px;
  }

  .nav-logo-mobile span {
    font-size: 0.7rem;
    max-width: 160px;
  }

  .hamburger span {
    width: 26px;
    height: 3px;
  }
}

@media (max-width: 575px) {
  .navbar {
    padding: 20px 0;
  }

  .nav-logo-mobile {
    gap: 10px;
  }

  .nav-logo-mobile img {
    width: 48px;
    height: 48px;
  }

  .nav-logo-mobile span {
    font-size: 0.68rem;
    max-width: 145px;
  }
}

@media (max-width: 479px) {
  .navbar {
    padding: 18px 0;
  }

  .nav-logo-mobile img {
    width: 44px;
    height: 44px;
  }

  .nav-logo-mobile span {
    font-size: 0.65rem;
    max-width: 130px;
  }
}

@media (max-width: 389px) {
  .nav-logo-mobile {
    gap: 8px;
  }

  .nav-logo-mobile img {
    width: 40px;
    height: 40px;
  }

  .nav-logo-mobile span {
    font-size: 0.6rem;
    max-width: 120px;
  }
}

/* ============================================
   NAVIGATION RESPONSIVE DESIGN
   ============================================ */

/* Large Desktops (1920px+) */
@media (min-width: 1920px) {
  .nav-container {
    max-width: 1600px;
  }

  .nav-item a {
    font-size: 18px;
  }

  .social-icons-desktop a {
    font-size: 24px;
  }
}

/* Extra Large Desktops (1600px - 1919px) */
@media (max-width: 1919px) and (min-width: 1600px) {
  .social-icons-desktop {
    margin-right: -100px;
  }
}

/* Large Desktops (1400px - 1599px) */
@media (max-width: 1599px) and (min-width: 1400px) {
  .social-icons-desktop {
    margin-right: -70px;
  }
}

/* Medium Desktops (1200px - 1399px) */
@media (max-width: 1399px) {
  .social-icons-desktop {
    margin-right: -45px;
  }

  .social-icons-desktop a {
    font-size: small;
  }
}

/* Standard Laptops (1024px - 1199px) */
@media (max-width: 1199px) {
  .nav-container {
    max-width: 1000px;
  }

  .nav-item a {
    font-size: 15px;
  }

  .social-icons-desktop {
    font-size: 2px;
    margin-right: -60px;
  }

  .social-icons-desktop a {
    margin-right: -10px;
  }
}

/* Small Laptops (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .navbar {
    padding: 15px 0;
  }

  .nav-menu {
    gap: 20px;
  }

  .nav-item a {
    font-size: 14px;
  }
}

/* Tablets (768px - 991px) - ENLARGED MENU */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 90px; /* Increased from 70px to accommodate larger navbar */
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 25px 0; /* Increased padding */
    gap: 12px; /* Increased gap */
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 12px 0; /* Increased margin */
  }

  /* Enlarged menu items */
  .nav-item a {
    font-size: 17px !important; /* Larger font */
    padding: 8px 0; /* Added padding */
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    background: rgba(248, 248, 248, 0.9);
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px; /* Increased max height */
    margin-top: 12px; /* Increased margin */
  }

  .dropdown-menu li {
    margin: 8px 0; /* Increased margin */
  }

  .dropdown-menu a {
    padding: 14px 20px; /* Increased padding */
    font-size: 16px !important; /* Larger font */
    border-left: 3px solid transparent;
    background: none !important;
    color: #666 !important;
  }

  .dropdown-menu a:hover {
    background: rgba(255, 107, 71, 0.1) !important;
    color: #ff6b47 !important;
    border-left-color: #ff6b47;
  }

  .dropdown-toggle::after {
    content: " ▼";
    font-size: 12px; /* Slightly larger */
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
  }

  .dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .nav-item a {
    background: none !important;
    color: #666 !important;
  }

  .nav-item a:hover,
  .nav-item a.active {
    color: #ff6b47 !important;
    background: none !important;
  }

  /* Hide desktop social icons */
  .social-icons-desktop {
    display: none !important;
  }

  /* Show mobile social icons inside menu - ENLARGED */
  .social-icons-mobile {
    display: block !important;
    margin-top: 15px; /* Increased margin */
    padding-top: 15px; /* Added padding */
    border-top: 1px solid rgba(0, 0, 0, 0.05); /* Visual separator */
  }

  .social-icons-mobile .social-icons {
    display: flex;
    justify-content: center;
    gap: 25px; /* Increased gap */
  }

  .social-icons-mobile .social-icons a {
    color: #666;
    font-size: 28px; /* Larger icons */
    transition: all 0.3s ease;
  }

  .social-icons-mobile .social-icons a:hover {
    color: #ff6b47;
    transform: translateY(-2px);
  }
}

/* Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .nav-menu {
    top: 85px;
    padding: 22px 0;
  }

  .nav-item a {
    font-size: 16px !important;
  }

  .dropdown-menu a {
    font-size: 15px !important;
  }

  .social-icons-mobile .social-icons a {
    font-size: 26px;
  }

  .social-icons-mobile .social-icons {
    gap: 22px;
  }
}

/* Medium Phones (480px - 575px) */
@media (max-width: 575px) {
  .nav-container {
    padding: 0 15px;
  }

  .nav-menu {
    top: 80px;
    padding: 20px 0;
  }

  .nav-item a {
    font-size: 15px !important;
  }

  .dropdown-menu a {
    font-size: 14px !important;
    padding: 12px 20px;
  }

  .social-icons-mobile .social-icons {
    gap: 20px;
  }

  .social-icons-mobile .social-icons a {
    font-size: 24px;
  }
}

/* Small Phones (390px and below) */
@media (max-width: 389px) {
  .nav-menu {
    top: 75px;
  }

  .nav-item a {
    font-size: 14px !important;
  }

  .dropdown-menu a {
    font-size: 13px !important;
  }

  .social-icons-mobile .social-icons {
    gap: 18px;
  }

  .social-icons-mobile .social-icons a {
    font-size: 22px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: white;
  padding: 100px 0 60px 0;
  position: relative;
  overflow: hidden;
  min-height: 500px;

  /* Cross-browser fixes */
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hero-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;

  /* Cross-browser positioning fixes */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.hero-text {
  position: absolute;
  top: 60px;
  left: 50px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 4.2rem;
  color: #fe805d;
  margin: 0 0 60px 0;
  letter-spacing: 1px;
  line-height: 1.1;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.5s ease 0.2s both;

  /* Cross-browser text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-display: swap;
}

.hero-subtitle {
  font-family: "Avenir", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: #666;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  margin-left: 600px !important;
  opacity: 0;
  animation: fadeInUp 0.5s ease 0.4s both;
}

.hero-logo-section {
  position: absolute;
  top: 20px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 3;
  opacity: 0;
  animation: fadeInUp 0.5s ease 0.4s both;
}

.hero-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;

  /* Cross-browser image rendering */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hero-tagline {
  font-family: "Avenir", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #666;
  text-align: center;
  max-width: 200px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.hero-image {
  position: absolute;
  bottom: 0;
  left: 400px;
  width: 450px;
  height: 300px;
  object-fit: cover;
  z-index: 1;

  /* Cross-browser image rendering */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-object-fit: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Browser-Specific Fixes */
/* Safari-specific fixes */
@supports (-webkit-appearance: none) {
  .hero {
    -webkit-appearance: none;
    appearance: none;
  }

  .hero-text,
  .hero-logo-section {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* Chrome-specific adjustments */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .hero h1 {
    -webkit-text-stroke: 0.01em transparent;
  }
}

/* Firefox-specific fixes */
@-moz-document url-prefix() {
  .hero-image {
    image-rendering: -moz-crisp-edges;
  }
}

/* Edge-specific fixes */
@supports (-ms-ime-align: auto) {
  .hero-content {
    -ms-flex-direction: column;
  }
}

/* ============================================
   HERO SECTION RESPONSIVE DESIGN
   ============================================ */

/* Large Desktops (1920px+) */
@media (min-width: 1920px) {
  .hero h1 {
    font-size: 5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
    margin-left: 700px !important;
  }

  .hero-content {
    max-width: 1800px;
  }

  .hero-logo {
    width: 180px;
    height: 180px;
  }

  .hero-tagline {
    font-size: 1.1rem;
    max-width: 220px;
  }

  .hero-image {
    left: 100px;
    width: 500px;
    height: 350px;
  }
}

/* Extra Large Desktops (1600px - 1919px) */
@media (max-width: 1919px) and (min-width: 1600px) {
  .hero-subtitle {
    margin-left: 520px !important;
  }

  .hero-image {
    left: auto;
  }

  .hero h1 {
    margin-top: auto;
  }
}

/* Large Desktops (1400px - 1599px) */
@media (max-width: 1599px) and (min-width: 1400px) {
  .hero h1 {
    font-size: 4rem;
    margin-top: 50px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-left: 500px !important;
  }

  .hero-image {
    left: 125px;
    width: 420px;
    height: 280px;
  }
}

/* Medium Desktops (1200px - 1399px) */
@media (max-width: 1399px) {
  .hero h1 {
    font-size: 3.8rem;
    margin-top: 100px;
  }

  .hero-subtitle {
    font-size: 1.15rem;
    margin-left: 400px !important;
  }

  .hero-logo {
    width: 140px;
    height: 140px;
  }

  .hero-image {
    left: auto;
    width: 400px;
    height: 270px;
  }
}

/* Standard Laptops (1024px - 1199px) */
@media (max-width: 1199px) {
  .hero-content {
    max-width: 1000px;
    padding: 0 30px;
  }

  .hero-text {
    left: 80px;
  }

  .hero h1 {
    font-size: 3.4rem;
    margin-bottom: 50px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-left: 350px !important;
  }

  .hero-logo-section {
    right: 30px;
  }

  .hero-logo {
    width: 120px;
    height: 120px;
  }

  .hero-tagline {
    font-size: 0.9rem;
    max-width: 180px;
  }

  .hero-image {
    left: 280px;
    width: 350px;
    height: 240px;
  }
}

/* Small Laptops (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .hero {
    min-height: 350px;
    padding: 90px 0 10px 0;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-text {
    left: 30px;
    top: 45px;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    margin-left: 300px !important;
  }

  .hero-logo-section {
    top: 15px;
    right: 20px;
  }

  .hero-logo {
    width: 85px;
    height: 85px;
  }

  .hero-tagline {
    font-size: 0.7rem;
  }

  .hero-image {
    left: 10px;
    bottom: -5px;
    width: 250px;
    height: 200px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .hero {
    min-height: 350px;
    padding: 80px 0 20px 0;
  }

  .hero-content {
    padding: 0 15px;
    min-height: 330px;
  }

  /* Hide logo from hero on tablets/mobile - it shows in navbar instead */
  .hero-logo-section {
    display: none !important;
  }

  /* Title and subtitle - moved right to avoid image overlap */
  .hero-text {
    position: absolute;
    left: 280px;
    top: 50px;
    transform: none;
    width: calc(100% - 300px);
    text-align: left;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: left;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-left: 0 !important;
    margin-right: 0;
    line-height: 1.6;
    text-align: left;
  }

  /* Author image - bottom left */
  .hero-image {
    left: 10px;
    bottom: 0;
    width: 240px;
    height: 200px;
  }
}

/* Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .hero {
    min-height: 320px;
    padding: 75px 0 15px 0;
  }

  .hero-content {
    padding: 0 12px;
    min-height: 305px;
  }

  .hero-logo-section {
    display: none !important;
  }

  /* Text positioned to right of image */
  .hero-text {
    top: 50px;
    left: 220px;
    transform: none;
    width: calc(100% - 235px);
    text-align: left;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .hero-image {
    left: 8px;
    bottom: 0;
    width: 200px;
    height: 165px;
  }
}

/* Medium Phones (480px - 575px) */
@media (max-width: 575px) {
  .hero {
    min-height: 300px;
    padding: 70px 0 12px 0;
  }

  .hero-content {
    padding: 0 10px;
    min-height: 288px;
  }

  .hero-logo-section {
    display: none !important;
  }

  /* Text positioned to right of image */
  .hero-text {
    top: 45px;
    left: 190px;
    transform: none;
    width: calc(100% - 200px);
    text-align: left;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.65rem;
    line-height: 1.45;
  }

  .hero-image {
    left: 6px;
    bottom: 0;
    width: 175px;
    height: 150px;
  }
}

/* Small Phones (390px - 479px) */
@media (max-width: 479px) {
  .hero {
    min-height: 280px;
    padding: 65px 0 10px 0;
  }

  .hero-content {
    padding: 0 8px;
    min-height: 270px;
  }

  .hero-logo-section {
    display: none !important;
  }

  /* Text positioned to right of image */
  .hero-text {
    top: 40px;
    left: 165px;
    transform: none;
    width: calc(100% - 175px);
    text-align: left;
  }

  .hero h1 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.58rem;
    line-height: 1.4;
  }

  .hero-image {
    left: 5px;
    bottom: 0;
    width: 155px;
    height: 140px;
  }
}

/* Extra Small Phones (320px - 389px) */
@media (max-width: 389px) {
  .hero {
    min-height: 260px;
    padding: 60px 0 10px 0;
  }

  .hero-content {
    padding: 0 6px;
    min-height: 250px;
  }

  .hero-logo-section {
    display: none !important;
  }

  /* Text positioned to right of image */
  .hero-text {
    top: 35px;
    left: 145px;
    transform: none;
    width: calc(100% - 152px);
    text-align: left;
  }

  .hero h1 {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }

  .hero-subtitle {
    font-size: 0.53rem;
    line-height: 1.35;
  }

  .hero-image {
    left: 4px;
    bottom: 0;
    width: 138px;
    height: 130px;
  }
}

/* Very Small Phones (below 320px) */
@media (max-width: 319px) {
  .hero {
    min-height: 245px;
    padding: 55px 0 8px 0;
  }

  .hero-content {
    padding: 0 5px;
    min-height: 237px;
  }

  .hero-logo-section {
    display: none !important;
  }

  /* Text positioned to right of image */
  .hero-text {
    top: 32px;
    left: 130px;
    transform: none;
    width: calc(100% - 137px);
    text-align: left;
  }

  .hero h1 {
    font-size: 1.05rem;
    margin-bottom: 7px;
  }

  .hero-subtitle {
    font-size: 0.48rem;
    line-height: 1.3;
  }

  .hero-image {
    left: 3px;
    bottom: 0;
    width: 123px;
    height: 120px;
  }
}

/* ============================================
   WORLD MAP SECTION - MOBILE ONLY
   ============================================ */

/* Hide on desktop - only show on tablets and below */
.world-map-section {
  display: none;
}

/* Show only on tablets and below (991px and smaller) */
@media (max-width: 991px) {
  .world-map-section {
    display: block;
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    overflow: hidden;
  }

  .world-map-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }

  .world-map-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    opacity: 0.7;
  }
}

/* Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .world-map-section {
    padding: 30px 0;
  }

  .world-map-container {
    padding: 0 15px;
  }

  .world-map-image {
    opacity: 0.6;
  }
}

/* Medium Phones (480px - 575px) */
@media (max-width: 575px) {
  .world-map-section {
    padding: 25px 0;
  }

  .world-map-container {
    padding: 0 10px;
  }

  .world-map-image {
    opacity: 0.5;
  }
}

/* Small Phones (390px - 479px) */
@media (max-width: 479px) {
  .world-map-section {
    padding: 20px 0;
  }

  .world-map-container {
    padding: 0 8px;
  }
}

/* Extra Small Phones (320px - 389px) */
@media (max-width: 389px) {
  .world-map-section {
    padding: 15px 0;
  }

  .world-map-container {
    padding: 0 6px;
  }
}

/* ============================================
   NEW RELEASE SECTION
   ============================================ */

.new-release-section {
  background: linear-gradient(
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.3)
    ),
    url("../images/world_map.png");
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.new-release-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  opacity: 0.5;
}

.new-release-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.book-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: transparent;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 40px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.new-release-tag {
  background: #fe805d;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: "Avenir", sans-serif;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 30px;
}

.book-info h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 3rem;
  color: #fe805d;
  margin-bottom: 20px;
}

.book-info p {
  font-family: "Avenir", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #fe805d;
  margin-bottom: 30px;
  line-height: 1.8;
}

.order-text {
  font-family: "Avenir", sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: #fe805d;
  margin-bottom: 20px;
}

.book-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  background: #fe805d;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-family: "Avenir", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

.btn:hover {
  background: #e55a40;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 71, 0.3);
}

.book-cover {
  text-align: center;
}

.book-cover img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-height: 500px;
}

.book-cover img:hover {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* PDF Button Styling */
.btn-pdf {
  background: #dc143c !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-pdf:hover {
  background: #b01030 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4) !important;
}

.btn-pdf i {
  font-size: 16px;
}

/* ============================================
   NEW RELEASE SECTION RESPONSIVE DESIGN
   ============================================ */

/* Small Laptops (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .book-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

/* Tablets (768px - 991px) - REMOVE BACKGROUND IMAGE */
@media (max-width: 991px) {
  .new-release-section {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%) !important;
    background-attachment: scroll !important;
  }

  .new-release-section::before {
    display: none;
  }

  .book-showcase {
    padding: 40px 20px;
  }
}

/* Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .new-release-section {
    padding: 60px 0;
  }

  .new-release-content {
    padding: 0 15px;
  }

  .book-showcase {
    display: block !important;
    padding: 30px 20px !important;
    text-align: center;
    gap: 0 !important;
  }

  .book-info {
    order: 2;
    margin-bottom: 30px;
  }

  .book-info h2 {
    font-size: 2.2rem !important;
    margin-bottom: 15px;
  }

  .book-info p {
    font-size: 0.9rem !important;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
  }

  .order-text {
    font-size: 1.1rem !important;
    margin-bottom: 15px;
  }

  .book-buttons {
    justify-content: center;
    gap: 10px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .book-cover {
    order: 1;
    margin-bottom: 20px;
  }

  .book-cover img {
    max-width: 200px !important;
    width: 200px !important;
    height: auto !important;
    max-height: 280px !important;
    margin: 0 auto;
    display: block;
  }

  .btn-pdf {
    padding: 10px 20px;
    font-size: 12px;
  }

  .btn-pdf i {
    font-size: 14px;
  }
}

/* Medium Phones (480px - 575px) */
@media (max-width: 575px) {
  .new-release-section {
    padding: 40px 0;
  }

  .book-showcase {
    padding: 20px 10px !important;
  }

  .book-info h2 {
    font-size: 1.8rem !important;
  }

  .book-info p {
    font-size: 0.85rem !important;
    margin-bottom: 15px;
  }

  .order-text {
    font-size: 1rem !important;
  }

  .book-cover img {
    max-width: 180px !important;
    width: 180px !important;
    max-height: 250px !important;
  }

  .btn {
    padding: 8px 16px;
    font-size: 11px;
  }

  .btn-pdf {
    padding: 8px 16px;
    font-size: 11px;
  }

  .btn-pdf i {
    font-size: 12px;
  }
}

/* Small Phones (390px - 479px) */
@media (max-width: 479px) {
  .book-showcase {
    padding: 15px 10px !important;
  }

  .book-info h2 {
    font-size: 1.6rem !important;
  }

  .book-info p {
    font-size: 0.8rem !important;
  }

  .book-cover img {
    max-width: 160px !important;
    width: 160px !important;
    max-height: 220px !important;
  }

  .book-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .btn {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }

  .btn-pdf {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    justify-content: center;
  }
}

/* ============================================
   ESERLER SECTION
   ============================================ */

.eserler-section {
  padding: 100px 0;
  background: #fff;
}

.eserler-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.eserler-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 4rem;
  color: #fe805d;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.book-item {
  text-align: center;
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.book-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.book-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.book-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #fe805d;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.book-item p {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1rem;
}

.book-item .btn {
  font-family: "Proxima Nova", sans-serif;
  font-weight: 600;
}

/* ============================================
   ESERLER SECTION RESPONSIVE DESIGN
   ============================================ */

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .eserler-content h2 {
    font-size: 2.5rem;
  }

  .books-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
}

/* Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .book-item {
    padding: 20px;
  }

  .btn {
    padding: 8px 20px;
    font-size: 12px;
  }
}

/* Medium Phones (480px - 575px) */
@media (max-width: 575px) {
  .eserler-content h2 {
    font-size: 2rem;
  }
}

/* ============================================
   KITAPLAR PAGE SECTION 
   ============================================ */

.books-section {
  padding: 100px 0;
  background: #fff;
}

.books-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.books-section .book-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px !important;
  position: relative;
  overflow: hidden;
  padding: 50px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(254, 128, 93, 0.02) 0%,
    rgba(254, 128, 93, 0.05) 100%
  );
  box-shadow: none;
}

/* Book 1: Zeyla Gezegeni - nth-child(2) - */
.books-container > .book-showcase:nth-child(2) {
  background: linear-gradient(
    135deg,
    rgba(254, 128, 93, 0.02) 0%,
    rgba(254, 128, 93, 0.05) 100%
  );
}

/* Book 2: Tanrının Hüküm Günleri - nth-child(3) */
.books-container > .book-showcase:nth-child(3) {
  background: linear-gradient(
    135deg,
    rgba(70, 130, 180, 0.02) 0%,
    rgba(70, 130, 180, 0.05) 100%
  );
}

/* Book 3: Siyah Renkli Aşk - nth-child(4)*/
.books-container > .book-showcase:nth-child(4) {
  background: linear-gradient(
    135deg,
    rgba(220, 20, 60, 0.02) 0%,
    rgba(220, 20, 60, 0.05) 100%
  );
  margin-bottom: 0 !important;
}

.books-section .book-showcase:last-of-type {
  margin-bottom: 0 !important;
}

.books-section .book-showcase.reverse {
  grid-template-columns: 1fr 2fr;
}

.books-section .book-showcase.reverse .book-info {
  order: 2;
}

.books-section .book-showcase.reverse .book-cover {
  order: 1;
}

/* Book Titles */
.books-section .book-info h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 3rem;
  color: #fe805d;
  margin-bottom: 25px;
  line-height: 1.2;
}

/* Book 2 title - Gray */
.books-container > .book-showcase:nth-child(3) .book-info h2 {
  color: #7a7a7a;
}

/* Book 3 title - Red */
.books-container > .book-showcase:nth-child(4) .book-info h2 {
  color: #dc143c;
}

.books-section .book-info p {
  font-family: "Avenir", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.8;
  text-align: justify;
}

/* Buttons - Base Style */
.books-section .book-btn,
.books-section .btn {
  font-family: "Proxima Nova", sans-serif;
  font-weight: 600;
  padding: 15px 40px;
  background: #fe805d;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  white-space: nowrap;
}

.books-section .book-btn:hover,
.books-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(254, 128, 93, 0.4);
}

/* PDF Button Base Style */
.books-section .btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.books-section .btn-pdf i {
  font-size: 16px;
}

/* ============================================
   BOOK 1: ZEYLA GEZEGENI 
   ============================================ */
.books-container > .book-showcase:nth-child(2) .book-btn,
.books-container > .book-showcase:nth-child(2) .btn,
.books-container > .book-showcase:nth-child(2) .btn-pdf {
  background: #fe805d !important;
}

.books-container > .book-showcase:nth-child(2) .book-btn:hover,
.books-container > .book-showcase:nth-child(2) .btn:hover,
.books-container > .book-showcase:nth-child(2) .btn-pdf:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(254, 128, 93, 0.4) !important;
}

/* ============================================
   BOOK 2: TANRININ HÜKÜM GÜNLERİ 
   ============================================ */
.books-container > .book-showcase:nth-child(3) .book-btn,
.books-container > .book-showcase:nth-child(3) .btn,
.books-container > .book-showcase:nth-child(3) .btn-pdf {
  background: #555 !important;
}

.books-container > .book-showcase:nth-child(3) .book-btn:hover,
.books-container > .book-showcase:nth-child(3) .btn:hover,
.books-container > .book-showcase:nth-child(3) .btn-pdf:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(85, 85, 85, 0.4) !important;
}

/* ============================================
   BOOK 3: SİYAH RENKLİ AŞK 
   ============================================ */
.books-container > .book-showcase:nth-child(4) .book-btn,
.books-container > .book-showcase:nth-child(4) .btn,
.books-container > .book-showcase:nth-child(4) .btn-pdf {
  background: #dc143c !important;
}

.books-container > .book-showcase:nth-child(4) .book-btn:hover,
.books-container > .book-showcase:nth-child(4) .btn:hover,
.books-container > .book-showcase:nth-child(4) .btn-pdf:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4) !important;
}

.books-section .book-cover img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.books-section .book-cover img:hover {
  transform: scale(1.05);
}

.books-section .book-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.books-page-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
  padding-top: 20px;
}

.books-page-toggle .lang-btn {
  padding: 12px 30px;
  font-size: 16px;
}

/* ============================================
   KITAPLAR PAGE RESPONSIVE DESIGN
   ============================================ */

/* Large Desktops (1400px+) */
@media (min-width: 1400px) {
  .books-section .book-showcase {
    margin-bottom: 140px !important;
  }

  .books-section .book-showcase:last-of-type {
    margin-bottom: 0 !important;
  }
}

/* Standard Laptops (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
  .books-section .book-info h2 {
    font-size: 2.8rem;
  }

  .books-section .book-showcase {
    margin-bottom: 100px !important;
  }

  .books-section .book-showcase:last-of-type {
    margin-bottom: 0 !important;
  }
}

/* Standard Laptops (1024px - 1199px) */
@media (max-width: 1199px) {
  .books-section .book-info h2 {
    font-size: 2.5rem;
  }

  .books-section .book-showcase {
    margin-bottom: 80px !important;
  }

  .books-section .book-showcase:last-of-type {
    margin-bottom: 0 !important;
  }
}

/* Small Laptops (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .books-section .book-showcase {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 80px !important;
  }

  .books-section .book-showcase:last-of-type {
    margin-bottom: 0 !important;
  }

  .books-section .book-showcase.reverse {
    grid-template-columns: 1fr !important;
  }

  .books-section .book-showcase.reverse .book-cover,
  .books-section .book-showcase.reverse .book-info {
    order: unset;
  }

  .books-section .book-cover {
    display: flex;
    justify-content: center;
  }

  .books-section .book-buttons {
    justify-content: center;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .books-container {
    padding: 0 20px;
  }

  .books-section .book-info h2 {
    font-size: 2rem;
  }

  .books-section .book-showcase {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 40px 25px;
    margin-bottom: 60px !important;
  }

  .books-section .book-showcase:last-of-type {
    margin-bottom: 0 !important;
  }

  .books-section .book-showcase.reverse {
    grid-template-columns: 1fr !important;
  }

  .books-section .book-showcase.reverse .book-cover,
  .books-section .book-showcase.reverse .book-info {
    order: unset;
  }

  .books-section .book-cover {
    display: flex;
    justify-content: center;
  }

  .books-section .book-buttons {
    justify-content: center;
  }

  .books-section .book-btn,
  .books-section .btn-pdf {
    padding: 12px 30px;
    font-size: 13px;
  }
}

/* Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .books-section .book-showcase {
    display: block !important;
    padding: 30px 20px !important;
    text-align: center;
    gap: 0 !important;
    margin-bottom: 50px !important;
  }

  .books-section .book-showcase:last-of-type {
    margin-bottom: 0 !important;
  }

  .books-section .book-info h2 {
    font-size: 1.8rem;
  }

  .books-section .btn-pdf {
    padding: 10px 20px;
    font-size: 12px;
  }

  .books-section .btn-pdf i {
    font-size: 14px;
  }

  .books-section .book-buttons {
    gap: 10px;
    justify-content: center;
  }

  .books-page-toggle {
    margin-bottom: 40px;
  }

  .books-section .book-btn {
    padding: 10px 25px;
    font-size: 12px;
  }
}

/* Medium Phones (480px - 575px) */
@media (max-width: 575px) {
  .books-section .book-info h2 {
    font-size: 1.6rem;
  }

  .books-section .book-showcase {
    padding: 25px 15px !important;
    margin-bottom: 40px !important;
  }

  .books-section .book-showcase:last-of-type {
    margin-bottom: 0 !important;
  }

  .books-section .book-btn {
    padding: 10px 25px;
    font-size: 12px;
    width: 100%;
    max-width: 280px;
  }

  .books-section .btn-pdf {
    padding: 10px 20px;
    font-size: 12px;
    width: 100%;
    max-width: 280px;
  }

  .books-section .btn-pdf i {
    font-size: 12px;
  }

  .books-section .book-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .books-page-toggle {
    margin-bottom: 30px;
  }

  .books-page-toggle .lang-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/* Small Phones (390px - 479px) */
@media (max-width: 479px) {
  .books-section .book-info h2 {
    font-size: 1.5rem;
  }

  .books-section .book-showcase {
    padding: 20px 10px !important;
    margin-bottom: 35px !important;
  }

  .books-section .book-showcase:last-of-type {
    margin-bottom: 0 !important;
  }

  .books-section .btn-pdf {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }

  .books-section .book-btn {
    width: 100%;
    max-width: 240px;
  }

  .books-section .book-buttons {
    gap: 8px;
  }
}

/* Extra Small Phones (below 390px) */
@media (max-width: 389px) {
  .books-section .book-info h2 {
    font-size: 1.3rem;
  }

  .books-section .book-info p {
    font-size: 1rem;
  }

  .books-section .book-showcase {
    padding: 15px 8px !important;
    margin-bottom: 30px !important;
  }

  .books-section .book-showcase:last-of-type {
    margin-bottom: 0 !important;
  }

  .books-section .book-btn,
  .books-section .btn-pdf {
    padding: 8px 16px;
    font-size: 11px;
    max-width: 200px;
  }

  .books-section .btn-pdf i {
    font-size: 11px;
  }
}

/* ============================================
   YAZMAK NEDİR SECTION (Homepage)
   ============================================ */

.yazmak-home-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.yazmak-home-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.yazmak-home-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 4rem;
  color: #fe805d;
  margin-bottom: 40px;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.yazmak-home-content p {
  font-family: "Avenir", sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 25px;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.yazmak-home-content p:nth-child(2) {
  animation-delay: 0.2s;
}

.yazmak-home-content p:nth-child(3) {
  animation-delay: 0.4s;
}

.yazmak-home-content p:nth-child(4) {
  animation-delay: 0.6s;
}

.yazmak-home-content .btn {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

/* ============================================
   YAZMAK NEDİR RESPONSIVE DESIGN
   ============================================ */

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .yazmak-home-section {
    padding: 80px 0;
  }

  .yazmak-home-content {
    padding: 0 30px;
  }

  .yazmak-home-content h2 {
    font-size: 2.5rem;
  }

  .yazmak-home-content p {
    font-size: 1.3rem;
  }
}

/* Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .yazmak-home-section {
    padding: 60px 0;
  }

  .yazmak-home-content {
    padding: 0 20px;
  }

  .yazmak-home-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .yazmak-home-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}

/* Medium Phones (480px - 575px) */
@media (max-width: 575px) {
  .yazmak-home-section {
    padding: 50px 0;
  }

  .yazmak-home-content {
    padding: 0 15px;
  }

  .yazmak-home-content h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .yazmak-home-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .yazmak-home-content .btn {
    padding: 10px 25px;
    font-size: 13px;
  }
}

/* Small Phones (390px - 479px) */
@media (max-width: 479px) {
  .yazmak-home-content h2 {
    font-size: 1.6rem;
  }

  .yazmak-home-content p {
    font-size: 0.95rem;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.about-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 4rem;
  color: #fe805d;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.about-content p {
  font-family: "Avenir", sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 25px;
  text-align: left;
}

.about-content p:last-of-type {
  margin-bottom: 40px;
}

.about-content .btn {
  margin-top: 10px;
}

/* About Page Specific */
.about-page .about-content p {
  font-size: 1rem;
}

/* ============================================
   ABOUT SECTION RESPONSIVE DESIGN
   ============================================ */

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .about-content {
    padding: 0 30px;
  }

  .about-content h2 {
    font-size: 2.5rem;
  }

  .about-content p {
    font-size: 1.3rem;
  }
}

/* Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .about-section {
    padding: 80px 0;
  }

  .about-content {
    padding: 0 20px;
  }

  .about-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}

/* Medium Phones (480px - 575px) */
@media (max-width: 575px) {
  .about-section {
    padding: 60px 0;
  }

  .about-content {
    padding: 0 15px;
  }

  .about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .about-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .about-content .btn {
    padding: 10px 25px;
    font-size: 13px;
  }
}

/* Small Phones (390px - 479px) */
@media (max-width: 479px) {
  .about-content h2 {
    font-size: 1.6rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}

/* Extra Small Phones (320px - 389px) */
@media (max-width: 389px) {
  .about-content h2 {
    font-size: 1.6rem;
  }
}

/* ============================================
   MISSION & VISION SECTION
   ============================================ */

.mission-vision-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.mission-vision-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.mission-block,
.vision-block {
  margin-bottom: 80px;
}

.mission-block:last-child,
.vision-block:last-child {
  margin-bottom: 0;
}

.mission-title,
.vision-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 4rem;
  color: #fe805d;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
}

.mission-title.animate,
.vision-title.animate {
  animation: fadeInUp 1.8s ease forwards;
}

.mission-content,
.vision-content {
  max-width: 900px;
  margin: 0 auto;
}

.mission-quote,
.vision-quote {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fe805d;
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
  opacity: 0;
  transform: translateY(20px);
}

.mission-quote.animate,
.vision-quote.animate {
  animation: fadeInUp 1.8s ease forwards;
}

.mission-text,
.vision-text {
  font-family: "Avenir", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 25px;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
}

.mission-text.animate,
.vision-text.animate {
  animation: fadeInUp 1.2s ease forwards;
}

.mission-text:nth-child(2).animate {
  animation-delay: 0.3s;
}
.mission-text:nth-child(3).animate {
  animation-delay: 0.6s;
}
.mission-text:nth-child(4).animate {
  animation-delay: 0.8s;
}
.mission-text:nth-child(5).animate {
  animation-delay: 0.12s;
}

.vision-text:nth-child(2).animate {
  animation-delay: 0.6s;
}
.vision-text:nth-child(3).animate {
  animation-delay: 0.8s;
}

.section-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fe805d, transparent);
  margin: 60px auto;
}

/* ============================================
   MISSION & VISION RESPONSIVE DESIGN
   ============================================ */

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .mission-vision-section {
    padding: 80px 0;
  }

  .mission-vision-container {
    padding: 0 30px;
  }

  .mission-title,
  .vision-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .mission-quote,
  .vision-quote {
    font-size: 1.5rem;
  }

  .mission-text,
  .vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .mission-block,
  .vision-block {
    margin-bottom: 60px;
  }
}

/* Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .mission-vision-section {
    padding: 60px 0;
  }

  .mission-vision-container {
    padding: 0 20px;
  }

  .mission-title,
  .vision-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .mission-quote,
  .vision-quote {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .mission-text,
  .vision-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .mission-block,
  .vision-block {
    margin-bottom: 50px;
  }
}

/* Medium Phones (480px - 575px) */
@media (max-width: 575px) {
  .mission-vision-section {
    padding: 50px 0;
  }

  .mission-vision-container {
    padding: 0 15px;
  }

  .mission-title,
  .vision-title {
    font-size: 1.8rem;
  }

  .mission-quote,
  .vision-quote {
    font-size: 1.1rem;
  }

  .mission-text,
  .vision-text {
    font-size: 0.95rem;
  }
}

/* ============================================
   MEDYA & HABERLER SECTION
   ============================================ */

.medya-home-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.medya-home-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.medya-home-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 4rem;
  color: #fe805d;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.medya-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.medya-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.medya-item:nth-child(1) {
  animation-delay: 0.2s;
}

.medya-item:nth-child(2) {
  animation-delay: 0.4s;
}

.medya-item:nth-child(3) {
  animation-delay: 0.6s;
}

.medya-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.medya-image-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.medya-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.medya-item:hover .medya-image {
  transform: scale(1.1);
}

.medya-content {
  padding: 30px;
  position: relative;
}

.medya-item-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #fe805d;
  margin-bottom: 15px;
  line-height: 1.3;
}

.medya-description {
  font-family: "Avenir", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  min-height: 100px;
}

.medya-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: #fe805d;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-family: "Avenir", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 13px;
}

.medya-btn:hover {
  background: #e55a40;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(254, 128, 93, 0.3);
}

.medya-btn i {
  font-size: 12px;
}

.medya-date {
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-family: "Avenir", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
}

.medya-see-all {
  text-align: center;
  margin-top: 40px;
}

.btn-see-all {
  display: inline-block;
  padding: 15px 40px;
  background: #fe805d;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-family: "Avenir", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 14px;
}

.btn-see-all:hover {
  background: #e55a40;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(254, 128, 93, 0.4);
}

/* ============================================
   MEDYA & HABERLER RESPONSIVE DESIGN
   ============================================ */

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .medya-home-section {
    padding: 80px 0;
  }

  .medya-home-container {
    padding: 0 30px;
  }

  .medya-home-title {
    font-size: 3rem;
    margin-bottom: 50px;
  }

  .medya-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .medya-item:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .medya-image-wrapper {
    height: 220px;
  }

  .medya-item-title {
    font-size: 1.4rem;
  }

  .medya-description {
    font-size: 0.95rem;
    min-height: auto;
  }
}

/* Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .medya-home-section {
    padding: 60px 0;
  }

  .medya-home-container {
    padding: 0 20px;
  }

  .medya-home-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .medya-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .medya-item:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
  }

  .medya-image-wrapper {
    height: 200px;
  }

  .medya-content {
    padding: 25px;
  }

  .medya-item-title {
    font-size: 1.3rem;
  }

  .medya-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .medya-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .medya-date {
    position: static;
    margin-top: 15px;
    text-align: right;
  }
}

/* Medium Phones (480px - 575px) */
@media (max-width: 575px) {
  .medya-home-section {
    padding: 50px 0;
  }

  .medya-home-container {
    padding: 0 15px;
  }

  .medya-home-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .medya-grid {
    gap: 25px;
  }

  .medya-image-wrapper {
    height: 180px;
  }

  .medya-content {
    padding: 20px;
  }

  .medya-item-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .medya-description {
    font-size: 0.85rem;
  }

  .btn-see-all {
    padding: 12px 30px;
    font-size: 13px;
  }
}

/* Small Phones (390px - 479px) */
@media (max-width: 479px) {
  .medya-home-title {
    font-size: 1.8rem;
  }

  .medya-image-wrapper {
    height: 160px;
  }

  .medya-item-title {
    font-size: 1.1rem;
  }

  .medya-description {
    font-size: 0.8rem;
  }
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.contact-form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-form-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 4rem;
  color: #fe805d;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.contact-form-subtitle {
  font-family: "Avenir", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
}

.contact-form {
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-family: "Avenir", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Avenir", sans-serif;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fe805d;
  box-shadow: 0 0 0 3px rgba(254, 128, 93, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.recaptcha-wrapper {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.submit-btn {
  width: 100%;
  padding: 18px 40px;
  background: #fe805d;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-family: "Avenir", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: #e55a40;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(254, 128, 93, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn i {
  font-size: 1rem;
}

.form-response {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-family: "Avenir", sans-serif;
  text-align: center;
  display: none;
}

.form-response.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-response.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ============================================
   CONTACT FORM RESPONSIVE DESIGN
   ============================================ */

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .contact-form-section {
    padding: 80px 0;
  }

  .contact-form-container {
    padding: 0 30px;
  }

  .contact-form-title {
    font-size: 3rem;
  }

  .contact-form {
    padding: 40px;
  }
}

/* Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .contact-form-section {
    padding: 60px 0;
  }

  .contact-form-container {
    padding: 0 20px;
  }

  .contact-form-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .contact-form-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .contact-form {
    padding: 30px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .recaptcha-wrapper {
    transform: scale(0.85);
    transform-origin: center;
  }
}

/* Medium Phones (480px - 575px) */
@media (max-width: 575px) {
  .contact-form-section {
    padding: 50px 0;
  }

  .contact-form-container {
    padding: 0 15px;
  }

  .contact-form-title {
    font-size: 2rem;
  }

  .contact-form-subtitle {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .recaptcha-wrapper {
    transform: scale(0.75);
  }
}

/* Small Phones (390px - 479px) */
@media (max-width: 479px) {
  .contact-form-title {
    font-size: 1.8rem;
  }

  .recaptcha-wrapper {
    transform: scale(0.7);
  }
}

/* ============================================
   PAGE HEADERS SECTION
   ============================================ */

.page-header {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 140px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 3.5rem;
  color: #fe805d;
  letter-spacing: 2px;
}

/* ============================================
   PAGE HEADERS RESPONSIVE DESIGN
   ============================================ */

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .page-header {
    padding: 120px 0 60px;
  }

  .page-header h1 {
    font-size: 2.8rem;
  }
}

/* Medium Phones (480px - 575px) */
@media (max-width: 575px) {
  .page-header h1 {
    font-size: 2rem;
  }
}

/* Small Phones (390px - 479px) */
@media (max-width: 479px) {
  .page-header h1 {
    font-size: 1.8rem;
  }
}

/* ============================================
   PAGE HEADERS SECTION
   ============================================ */

.page-header {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 140px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 3.5rem;
  color: #fe805d;
  letter-spacing: 2px;
}

/* ============================================
   PAGE HEADERS RESPONSIVE DESIGN
   ============================================ */

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .page-header {
    padding: 120px 0 60px;
  }

  .page-header h1 {
    font-size: 2.8rem;
  }
}

/* Medium Phones (480px - 575px) */
@media (max-width: 575px) {
  .page-header h1 {
    font-size: 2rem;
  }
}

/* Small Phones (390px - 479px) */
@media (max-width: 479px) {
  .page-header h1 {
    font-size: 1.8rem;
  }
}

/* ============================================
   LANGUAGE TOGGLE SECTION
   ============================================ */

.language-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.lang-btn {
  padding: 10px 25px;
  background: #f5f5f5;
  color: #666;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  cursor: pointer;
  font-family: "Avenir", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: #fe805d;
  color: white;
  border-color: #fe805d;
  transform: translateY(-2px);
}

.lang-btn.active {
  background: #fe805d;
  color: white;
  border-color: #fe805d;
  box-shadow: 0 4px 15px rgba(254, 128, 93, 0.3);
}

.lang-content {
  display: none;
}

.lang-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* ============================================
   FOOTER NAVIGATION SECTION
   ============================================ */

.footer-nav {
  background: #333;
  padding: 30px 0;
}

.footer-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: #ff6b47;
}

/* ============================================
   FOOTER NAVIGATION RESPONSIVE DESIGN
   ============================================ */

/* Medium Phones (480px - 575px) */
@media (max-width: 575px) {
  .footer-menu {
    gap: 15px;
    font-size: 13px;
  }
}

/* Small Phones (390px - 479px) */
@media (max-width: 479px) {
  .footer-menu {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

/* ============================================
   LANGUAGE TOGGLE RESPONSIVE DESIGN
   ============================================ */

/* Medium Phones (480px - 575px) */
@media (max-width: 575px) {
  .lang-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
}

/* ============================================
   LANGUAGE SWITCHER - MOBILE ONLY
   ============================================ */

/* Hide language switcher on desktop */
.language-switcher-mobile {
  display: none;
  visibility: hidden;
}

/* Show on mobile/tablet (991px and below) */
@media (max-width: 991px) {
  .language-switcher-mobile {
    display: flex !important;
    visibility: visible !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
  }

  .lang-switch-btn {
    background: none;
    border: none;
    color: #666;
    font-family: "Avenir", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-tap-highlight-color: transparent;
  }

  .lang-switch-btn.active {
    color: #ff6b47;
    font-weight: 700;
  }

  .lang-switch-btn:hover {
    color: #ff6b47;
  }

  .lang-separator {
    color: #ccc;
    font-size: 14px;
    font-weight: 300;
  }
}

@media (max-width: 767px) {
  .language-switcher-mobile {
    right: 15px;
  }

  .lang-switch-btn {
    font-size: 13px;
    padding: 4px 6px;
  }

  .lang-separator {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .language-switcher-mobile {
    right: 12px;
    gap: 6px;
  }

  .lang-switch-btn {
    font-size: 12px;
    padding: 3px 5px;
  }

  .lang-separator {
    font-size: 12px;
  }
}

@media (max-width: 389px) {
  .language-switcher-mobile {
    right: 10px;
  }

  .lang-switch-btn {
    font-size: 11px;
  }
}
