/* =========================================
   JENIKA MITTAL
   PREMIUM HEADER / MENU
   ========================================= */
/* =========================================
   GLOBAL RESET
========================================= */

html,
body {
  margin: 0 !important;
  padding: 0 !important;

  width: 100%;
  max-width: 100%;

  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}
:root {
  --header-bg: #080808;
  --header-bg-2: #111111;
  --gold: #d4af37;
  --gold-light: #f3d77a;
  --text-light: #f5f5f5;
  --text-muted: #b9b9b9;
  --border-gold: rgba(212, 175, 55, 0.25);
  --shadow-dark: rgba(0, 0, 0, 0.45);
}


/* =========================================
   HEADER
   ========================================= */

.site-header {
  width: 100%;
  position: relative;
  z-index: 1000;
  background:
    linear-gradient(
      180deg,
      rgba(18, 18, 18, 0.98),
      rgba(7, 7, 7, 0.98)
    );
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 8px 30px var(--shadow-dark);
}


/* Subtle glossy top line */

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(243, 215, 122, 0.7),
    transparent
  );
}


/* =========================================
   HEADER CONTAINER
   ========================================= */

.header-container {
  width: min(1360px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


/* =========================================
   LOGO
   ========================================= */


.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}

.logo-name {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #f3d77a;
}

.logo-sub {
  margin-left: 7px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.9;
}


/* =========================================
   MAIN NAVIGATION
   ========================================= */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  margin-left: auto;
  margin-right: auto;
}


.main-nav a {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 15px;

  color: var(--text-light);
  text-decoration: none;

  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;

  letter-spacing: 0.2px;

  transition:
    color 0.3s ease,
    background 0.3s ease;
}


/* Gold underline */

.main-nav a::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 3px;

  width: 0;
  height: 2px;

  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light)
  );

  transform: translateX(-50%);
  transition: width 0.3s ease;
}


.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
}


.main-nav a:hover::after,
.main-nav a.active::after {
  width: 60%;
}


/* =========================================
   WHATSAPP BUTTON
   ========================================= */

.header-whatsapp {
  min-width: 125px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 11px 18px;

  color: #ffffff;
  text-decoration: none;

  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;

  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 30px;

  background:
    linear-gradient(
      135deg,
      rgba(212, 175, 55, 0.14),
      rgba(255, 255, 255, 0.03)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 5px 20px rgba(0, 0, 0, 0.3);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


.header-whatsapp i {
  font-size: 17px;
  color: var(--gold-light);
}


.header-whatsapp:hover {
  color: #ffffff;
  border-color: var(--gold);
  background:
    linear-gradient(
      135deg,
      rgba(212, 175, 55, 0.25),
      rgba(255, 255, 255, 0.06)
    );

  transform: translateY(-2px);

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.4),
    0 0 18px rgba(212, 175, 55, 0.12);
}


/* =========================================
   MOBILE MENU BUTTON
   ========================================= */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 0;

  border: 1px solid var(--border-gold);
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.03);

  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}


.menu-toggle span {
  display: block;

  width: 21px;
  height: 2px;

  border-radius: 2px;

  background: var(--gold-light);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}


/* =========================================
   MOBILE MENU ACTIVE
   ========================================= */

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}


.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1100px) {

  .header-container {
    width: min(1360px, calc(100% - 30px));
    gap: 15px;
  }

  .main-nav a {
    padding: 9px 10px;
    font-size: 13px;
  }

  .header-whatsapp {
    min-width: auto;
    padding: 10px 14px;
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 900px) {

  .site-header {
    position: sticky;
    top: 0;
  }


  .header-container {
    min-height: 70px;
    width: calc(100% - 28px);
  }




  /* Hide desktop navigation */

  .main-nav {
    position: absolute;

    top: 100%;
    left: 14px;
    right: 14px;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    margin: 0;
    padding: 10px;

    background:
      linear-gradient(
        180deg,
        #151515,
        #080808
      );

    border: 1px solid var(--border-gold);
    border-top: none;

    border-radius: 0 0 16px 16px;

    box-shadow:
      0 15px 35px rgba(0, 0, 0, 0.55);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }


  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }


  .main-nav a {
    width: 100%;

    justify-content: flex-start;

    padding: 13px 15px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    font-size: 14px;
  }


  .main-nav a:last-child {
    border-bottom: none;
  }


  .main-nav a::after {
    display: none;
  }


  .main-nav a:hover,
  .main-nav a.active {
    padding-left: 20px;

    background: rgba(212, 175, 55, 0.06);

    border-radius: 8px;
  }


  /* WhatsApp stays hidden on mobile */

  .header-whatsapp {
    display: none;
  }


  /* Hamburger */

  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

  .header-container {
    min-height: 64px;
    width: calc(100% - 20px);
  }


  .logo-name {
    font-size: 23px;
  }

  .logo-sub {
    font-size: 10px;
    letter-spacing: 1.8px;
    margin-left: 5px;
  }


  .menu-toggle {
    width: 42px;
    height: 42px;
  }


  .main-nav {
    left: 10px;
    right: 10px;
  }

}

/* =========================================
   CITY BANNER - PREMIUM
========================================= */

.city-banner {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  background: #080808;
}


/* Banner Image */

.city-banner > img {
  position: absolute;
  inset: 0;

  width: 100% !important;
  height: 100% !important;

  display: block;

  object-fit: cover;
  object-position: center center;

  z-index: 1;
}


/* Dark Overlay */

.city-banner-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.48) 32%,
      rgba(0, 0, 0, 0.12) 65%,
      rgba(0, 0, 0, 0.02) 100%
    ) !important;

  z-index: 2;
}


/* Banner Content */

.city-banner-content {
  position: absolute !important;

  z-index: 3;

  left: 5% !important;
  top: 50% !important;

  transform: translateY(-50%) !important;

  width: min(550px, 90%);
  max-width: 550px;

  color: #ffffff !important;
}


/* Small Heading */

.banner-eyebrow {
  display: block;

  margin-bottom: 14px;

  color: #f3d77a !important;

  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;

  letter-spacing: 3px;
  text-transform: uppercase;
}


/* Main Banner Title */

.banner-title {
  display: block;

  margin-bottom: 16px;

  color: #ffffff !important;

  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 600;

  line-height: 1.05;
}


/* Description */

.banner-description {
  margin: 0 0 28px;

  max-width: 500px;

  color: rgba(255, 255, 255, 0.92) !important;

  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}


/* Button */

.banner-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 13px 25px;

  border-radius: 30px;

  background: linear-gradient(
    135deg,
    #d4af37,
    #f3d77a
  ) !important;

  color: #111111 !important;

  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;

  text-decoration: none !important;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.35);

  transition: all 0.3s ease;
}


.banner-btn:hover {
  color: #111111 !important;

  transform: translateY(-2px);

  box-shadow:
    0 10px 30px rgba(212, 175, 55, 0.25);
}


/* =========================================
   MOBILE BANNER
========================================= */

@media (max-width: 767px) {

  .city-banner {
    height: 560px;
  }


  /*
    Model ko mobile frame mein lane ke liye
    image ko right side ki taraf shift kiya hai.
  */

  .city-banner > img {
    object-position: 75% center !important;
  }


  /* Mobile dark overlay */

  .city-banner-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.08) 28%,
        rgba(0, 0, 0, 0.30) 48%,
        rgba(0, 0, 0, 0.78) 76%,
        rgba(0, 0, 0, 0.94) 100%
      ) !important;
  }


  /*
    Text model ke upar overlay hoga
  */

  .city-banner-content {
    left: 20px !important;
    right: 20px !important;

    top: auto !important;
    bottom: 38px !important;

    transform: none !important;

    width: auto !important;
    max-width: none;
  }


  .banner-eyebrow {
    margin-bottom: 8px;

    font-size: 10px;
    letter-spacing: 2px;
  }


  .banner-title {
    margin-bottom: 10px;

    font-size: 39px;
    line-height: 1.08;

    text-shadow:
      0 2px 12px rgba(0, 0, 0, 0.7);
  }


  .banner-description {
    margin-bottom: 18px;

    max-width: 370px;

    font-size: 13px;
    line-height: 1.6;

    text-shadow:
      0 2px 8px rgba(0, 0, 0, 0.8);
  }


  .banner-btn {
    padding: 11px 20px;

    font-size: 12px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .city-banner {
    height: 540px;
  }


  .city-banner > img {
    /*
      Agar model ko aur zyada screen
      ke andar lana ho to 80% use hoga.
    */
    object-position: 78% center !important;
  }


  .city-banner-content {
    left: 18px !important;
    right: 18px !important;
    bottom: 30px !important;
  }


  .banner-title {
    font-size: 35px;
  }


  .banner-description {
    font-size: 12.5px;
  }

}
/* =========================================
   INTRODUCTION SECTION
========================================= */

.intro-section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;

  padding: 90px 20px;

  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.07),
      transparent 35%
    ),
    #0b0b0b;

  border-bottom: 1px solid rgba(212, 175, 55, 0.12);

  overflow: hidden;
}


/* =========================================
   INTRO CONTAINER
========================================= */

.intro-container {
  position: relative;

  width: 100%;
  max-width: 1000px;

  margin: 0 auto;

  box-sizing: border-box;

  text-align: center;
}


/* =========================================
   SECTION LABEL
========================================= */

.section-label {
  display: inline-block;

  margin-bottom: 18px;

  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;

  letter-spacing: 3px;
  text-transform: uppercase;

  color: #d4af37;
}


/* =========================================
   H1
========================================= */

.intro-container h1 {
  width: 100%;
  max-width: 900px;

  margin: 0 auto 28px;

  box-sizing: border-box;

  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.18;
  font-weight: 600;

  color: #ffffff;

  overflow-wrap: break-word;
  word-wrap: break-word;
}


.intro-container h1::after {
  content: "";

  display: block;

  width: 65px;
  height: 2px;

  margin: 22px auto 0;

  background: linear-gradient(
    90deg,
    transparent,
    #d4af37,
    transparent
  );
}


/* =========================================
   H2
========================================= */

.intro-container h2 {
  width: 100%;
  max-width: 850px;

  margin: 48px auto 18px;

  box-sizing: border-box;

  font-family: "Playfair Display", serif;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.3;
  font-weight: 500;

  color: #f3d77a;

  overflow-wrap: break-word;
}


/* =========================================
   PARAGRAPHS
========================================= */

.intro-container p {
  width: 100%;
  max-width: 900px;

  margin: 0 auto 17px;

  box-sizing: border-box;

  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.72);

  overflow-wrap: break-word;
  word-wrap: break-word;
}


.intro-container p strong {
  color: #f3d77a;
  font-weight: 600;
}


/* =========================================
   DECORATIVE GLOW
========================================= */

.intro-container::before {
  content: "";

  position: absolute;

  top: -30px;
  left: 50%;

  width: 180px;
  height: 180px;

  transform: translateX(-50%);

  background: rgba(212, 175, 55, 0.04);

  filter: blur(60px);

  border-radius: 50%;

  pointer-events: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .intro-section {
    padding: 75px 20px;
  }

  .intro-container {
    max-width: 850px;
  }

  .intro-container p {
    font-size: 14px;
    line-height: 1.85;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .intro-section {
    width: 100%;
    max-width: 100%;

    padding: 58px 18px;

    overflow: hidden;
  }


  .intro-container {
    width: 100%;
    max-width: 100%;
  }


  .section-label {
    margin-bottom: 14px;

    font-size: 9px;
    letter-spacing: 2px;
  }


  .intro-container h1 {
    max-width: 100%;

    margin-bottom: 22px;

    font-size: 30px;
    line-height: 1.22;
  }


  .intro-container h1::after {
    width: 50px;

    margin-top: 17px;
  }


  .intro-container h2 {
    max-width: 100%;

    margin-top: 38px;
    margin-bottom: 15px;

    font-size: 25px;
    line-height: 1.3;
  }


  .intro-container p {
    max-width: 100%;

    margin-bottom: 15px;

    font-size: 13px;
    line-height: 1.8;

    text-align: left;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .intro-section {
    padding: 50px 16px;
  }


  .intro-container h1 {
    font-size: 27px;
  }


  .intro-container h2 {
    font-size: 23px;
  }


  .intro-container p {
    font-size: 12.8px;
    line-height: 1.75;
  }

}

/* =========================================================
   FEATURED PROFILES
   1360PX DESKTOP / 2 × 2 GRID
========================================================= */

.featured-profiles {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 90px 30px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(198, 157, 76, 0.07),
      transparent 40%
    ),
    #080808;

  overflow: hidden;
}


/* =========================================================
   CONTENT WRAPPER
   NO OUTER BORDER
========================================================= */

.featured-wrap {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;

  min-width: 0;

  padding: 0;

  background: transparent;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.featured-heading {
  max-width: 760px;
  margin: 0 auto 50px;

  text-align: center;
}

.featured-label {
  display: inline-block;

  margin-bottom: 12px;

  color: #d5aa55;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.featured-heading h2 {
  margin: 0 0 16px;

  color: #f1dfb6;

  font-family: "Playfair Display", serif;

  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
}

.featured-heading p {
  max-width: 680px;
  margin: 0 auto;

  color: #aaa39a;

  font-size: 14px;
  line-height: 1.8;
}


/* =========================================================
   2 × 2 PROFILE GRID
========================================================= */

.featured-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 30px;

  width: 100%;
}


/* =========================================================
   PROFILE CARD
========================================================= */

.featured-card {
  display: grid;

  grid-template-columns: 300px minmax(0, 1fr);

  width: 100%;
  min-width: 0;
  min-height: 400px;

  overflow: hidden;

  border: 1px solid rgba(199, 158, 78, 0.28);

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      #171313 0%,
      #0f0c0c 100%
    );

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.featured-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(214, 174, 92, 0.58);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(207, 166, 84, 0.07);
}


/* =========================================================
   PROFILE IMAGE
========================================================= */

.featured-image {
  position: relative;

  width: 300px;
  height: 400px;

  overflow: hidden;

  background: #111;
}

.featured-image img {
  display: block;

  width: 300px;
  height: 400px;

  max-width: none;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}

.featured-card:hover .featured-image img {
  transform: scale(1.035);
}





/* =========================================================
   PROFILE INFORMATION
========================================================= */

.featured-info {
  display: flex;
  flex-direction: column;

  min-width: 0;

  padding: 35px 28px 28px;
}


/* =========================================================
   NAME + FEATURED BADGE
========================================================= */

.featured-top {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 12px;

  margin-bottom: 15px;
}

.featured-top h3 {
  margin: 0;

  color: #f1dfb6;

  font-family: "Playfair Display", serif;

  font-size: 30px;
  line-height: 1.15;

  font-weight: 600;
}

.featured-badge {
  flex-shrink: 0;

  padding: 7px 11px;

  border: 1px solid rgba(199, 158, 78, 0.35);

  border-radius: 5px;

  color: #d9b05c;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* =========================================================
   META
========================================================= */

.featured-meta {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-bottom: 20px;
}

.featured-meta span {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  color: #c1b9af;

  font-size: 12px;
}

.featured-meta i {
  color: #d7a94f;

  font-size: 13px;
}


/* =========================================================
   ABOUT
========================================================= */

.featured-about {
  margin: 0 0 20px;

  color: #b8b0a7;

  font-size: 13px;

  line-height: 1.75;
}

.featured-about strong {
  color: #d6ad59;

  font-weight: 500;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.featured-highlights {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 9px 15px;

  margin-bottom: auto;
}

.featured-highlights span {
  color: #c7c0b7;

  font-size: 11px;

  line-height: 1.5;
}


/* =========================================================
   PROFILE LINK
========================================================= */

.featured-link {
  display: inline-flex;

  align-items: center;

  align-self: flex-start;

  gap: 9px;

  margin-top: 22px;

  color: #e0b765;

  font-size: 12px;
  font-weight: 600;

  text-decoration: none;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.featured-link i {
  font-size: 11px;
}

.featured-link:hover {
  gap: 13px;

  color: #f2d18e;
}


/* =========================================================
   ALL PROFILES
========================================================= */

.featured-bottom {
  margin-top: 42px;

  text-align: center;
}

.featured-all-link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: #d8b05d;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.8px;

  text-decoration: none;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.featured-all-link i {
  font-size: 11px;
}

.featured-all-link:hover {
  gap: 13px;

  color: #f1d18e;
}


/* =========================================================
   1100PX
========================================================= */

@media (max-width: 1100px) {

  .featured-wrap {
    max-width: 1000px;
  }

  .featured-card {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .featured-image {
    width: 250px;
    height: 400px;
  }

  .featured-image img {
    width: 250px;
    height: 400px;
  }

  .featured-info {
    padding: 30px 22px 25px;
  }

}


/* =========================================================
   900PX
   SINGLE COLUMN BUT HORIZONTAL CARD
========================================================= */

@media (max-width: 900px) {

  .featured-grid {
    grid-template-columns: 1fr;

    max-width: 680px;

    margin: 0 auto;
  }

  .featured-card {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .featured-image {
    width: 300px;
    height: 400px;
  }

  .featured-image img {
    width: 300px;
    height: 400px;
  }

}


/* =========================================================
   650PX
   MOBILE VERTICAL CARD
========================================================= */

@media (max-width: 650px) {

  .featured-profiles {
    padding: 65px 15px;
  }

  .featured-heading {
    margin-bottom: 35px;
  }

  .featured-heading h2 {
    font-size: 30px;
  }

  .featured-heading p {
    font-size: 13px;
  }

  .featured-grid {
    grid-template-columns: 1fr;

    gap: 25px;

    max-width: 380px;
  }

  .featured-card {
    display: flex;
    flex-direction: column;

    width: 100%;
  }

  .featured-image {
    width: 100%;
    height: auto;

    aspect-ratio: 300 / 400;
  }

  .featured-image img {
    width: 100%;
    height: 100%;
  }

  .featured-info {
    padding: 25px 22px 28px;
  }

  .featured-top h3 {
    font-size: 27px;
  }

}


/* =========================================================
   400PX
========================================================= */

@media (max-width: 400px) {

  .featured-profiles {
    padding: 55px 12px;
  }

  .featured-heading h2 {
    font-size: 27px;
  }

  .featured-wrap {
    width: 100%;
  }

  .featured-info {
    padding: 22px 18px 25px;
  }

  .featured-top h3 {
    font-size: 25px;
  }

  .featured-badge {
    padding: 6px 9px;
  }

}

/* =========================================================
   ABOUT OUR AGENCY
========================================================= */

.about-agency {
  width: 100%;
  max-width: 100vw;
  padding: 95px 30px;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(196, 157, 76, 0.06),
      transparent 32%
    ),
    #0a0808;

  overflow: hidden;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.about-agency-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);

  gap: 35px;

  min-width: 0;
}


/* =========================================================
   LEFT VERTICAL BRAND
========================================================= */

.about-agency-side {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding-top: 5px;

  color: rgba(193, 151, 71, 0.25);

  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 600;

  letter-spacing: 3px;
  text-transform: uppercase;

  word-break: break-all;
}

.about-agency-side span {
  display: block;
}


/* =========================================================
   CONTENT
========================================================= */

.about-agency-content {
  min-width: 0;
  max-width: 1020px;
}


/* =========================================================
   LABEL
========================================================= */

.about-agency-label {
  display: block;

  margin-bottom: 25px;

  color: #d4a95a;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 3.5px;
  text-transform: uppercase;
}


/* =========================================================
   HEADING
========================================================= */

.about-agency-content h2 {
  max-width: 850px;

  margin: 0 0 30px;

  color: #f1e2c5;

  font-family: "Playfair Display", serif;

  font-size: 50px;
  line-height: 1.12;
  font-weight: 500;

  letter-spacing: -0.5px;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.about-agency-content p {
  margin: 0 0 23px;

  color: #bdb4aa;

  font-size: 15px;
  line-height: 1.9;
}

.about-agency-content p strong {
  color: #e0c07b;

  font-weight: 600;
}


/* =========================================================
   FEATURE POINTS
========================================================= */

.about-agency-points {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px 70px;

  margin-top: 35px;
  padding-top: 28px;

  border-top: 1px solid rgba(194, 153, 72, 0.18);
}

.about-agency-points span {
  color: #c9c0b6;

  font-size: 12px;
  line-height: 1.5;
}

.about-agency-points span::first-letter {
  color: #d6aa56;
}


/* =========================================================
   1100PX
========================================================= */

@media (max-width: 1100px) {

  .about-agency {
    padding: 80px 25px;
  }

  .about-agency-wrap {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 25px;
  }

  .about-agency-side {
    font-size: 24px;
  }

  .about-agency-content h2 {
    font-size: 43px;
  }

}


/* =========================================================
   800PX
========================================================= */

@media (max-width: 800px) {

  .about-agency {
    padding: 70px 20px;
  }

  .about-agency-wrap {
    display: block;
    max-width: 700px;
  }

  .about-agency-side {
    display: none;
  }

  .about-agency-content h2 {
    font-size: 38px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .about-agency {
    padding: 60px 15px;
  }

  .about-agency-content {
    width: 100%;
  }

  .about-agency-label {
    margin-bottom: 18px;

    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .about-agency-content h2 {
    margin-bottom: 23px;

    font-size: 31px;
    line-height: 1.2;
  }

  .about-agency-content p {
    margin-bottom: 19px;

    font-size: 13.5px;
    line-height: 1.8;
  }

  .about-agency-points {
    grid-template-columns: 1fr 1fr;

    gap: 15px 20px;

    margin-top: 28px;
    padding-top: 23px;
  }

  .about-agency-points span {
    font-size: 11px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .about-agency {
    padding: 50px 12px;
  }

  .about-agency-content h2 {
    font-size: 28px;
  }

  .about-agency-content p {
    font-size: 13px;
  }

  .about-agency-points {
    grid-template-columns: 1fr;
  }

}

/* =========================================================
   KOCHI PROFILE GALLERY
   1360PX — 4 × 2
========================================================= */

.kochi-gallery {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 90px 30px;

  background: #090909;

  overflow: hidden;
}


/* =========================================================
   WRAPPER
========================================================= */

.gallery-wrap {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;

  min-width: 0;
}


/* =========================================================
   HEADING
========================================================= */

.gallery-heading {
  max-width: 700px;
  margin: 0 auto 48px;

  text-align: center;
}

.gallery-label {
  display: inline-block;

  margin-bottom: 12px;

  color: #d5aa55;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.gallery-heading h2 {
  margin: 0 0 15px;

  color: #f1dfb6;

  font-family: "Playfair Display", serif;

  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
}

.gallery-heading p {
  max-width: 600px;
  margin: 0 auto;

  color: #aaa39a;

  font-size: 14px;
  line-height: 1.8;
}


/* =========================================================
   4 × 2 GRID
========================================================= */

.gallery-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 28px;

  width: 100%;
}


/* =========================================================
   GALLERY CARD
========================================================= */

.gallery-card {
  min-width: 0;

  overflow: hidden;

  border: 1px solid rgba(199, 158, 78, 0.27);

  border-radius: 15px;

  background: #100e0e;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(214, 174, 92, 0.55);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   IMAGE
========================================================= */

.gallery-image {
  position: relative;

  display: block;

  width: 100%;

  aspect-ratio: 300 / 400;

  overflow: hidden;

  background: #111;

  text-decoration: none;
}

.gallery-image img {
  display: block;

  width: 100%;
  height: 100%;

  max-width: none;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.5s ease;
}

.gallery-card:hover .gallery-image img {
  transform: scale(1.045);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.gallery-overlay {
  position: absolute;

  left: 50%;
  bottom: 18px;

  transform:
    translate(-50%, 10px);

  display: inline-flex;
  align-items: center;

  gap: 8px;

  padding: 9px 15px;

  border: 1px solid rgba(218, 179, 96, 0.55);

  border-radius: 25px;

  background: rgba(10, 9, 8, 0.84);

  color: #e3bd6b;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.8px;

  opacity: 0;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;

  backdrop-filter: blur(7px);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;

  transform:
    translate(-50%, 0);
}


/* =========================================================
   PROFILE INFO
========================================================= */

.gallery-info {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 10px;

  padding: 15px 16px 17px;
}

.gallery-info h3 {
  margin: 0;

  color: #eee0bd;

  font-family: "Playfair Display", serif;

  font-size: 21px;
  line-height: 1.2;

  font-weight: 600;
}

.gallery-info span {
  display: inline-flex;
  align-items: center;

  gap: 5px;

  color: #aaa29a;

  font-size: 10px;
}

.gallery-info span i {
  color: #d4a64e;

  font-size: 10px;
}


/* =========================================================
   BOTTOM BUTTON
========================================================= */

.gallery-bottom {
  margin-top: 42px;

  text-align: center;
}

.gallery-all-btn {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  padding: 11px 20px;

  border: 1px solid rgba(201, 160, 79, 0.45);

  border-radius: 25px;

  color: #dcb567;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.7px;

  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.gallery-all-btn:hover {
  background: #c9a45b;

  border-color: #c9a45b;

  color: #090909;
}


/* =========================================================
   1100PX
========================================================= */

@media (max-width: 1100px) {

  .gallery-grid {
    grid-template-columns:
      repeat(4, minmax(0, 1fr));

    gap: 20px;
  }

  .gallery-info {
    padding: 13px;
  }

  .gallery-info h3 {
    font-size: 19px;
  }

}


/* =========================================================
   850PX — 2 × 4
========================================================= */

@media (max-width: 850px) {

  .kochi-gallery {
    padding: 75px 20px;
  }

  .gallery-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 22px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .kochi-gallery {
    padding: 60px 15px;
  }

  .gallery-heading {
    margin-bottom: 35px;
  }

  .gallery-heading h2 {
    font-size: 30px;
  }

  .gallery-heading p {
    font-size: 13px;
  }

  .gallery-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 15px;
  }

  .gallery-card {
    border-radius: 12px;
  }

  .gallery-info {
    padding: 12px 11px 14px;

    display: block;
  }

  .gallery-info h3 {
    margin-bottom: 5px;

    font-size: 18px;
  }

  .gallery-info span {
    font-size: 9px;
  }

  /* Mobile par overlay visible nahi */
  .gallery-overlay {
    display: none;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .kochi-gallery {
    padding-left: 10px;
    padding-right: 10px;
  }

  .gallery-grid {
    gap: 12px;
  }

  .gallery-info h3 {
    font-size: 17px;
  }

}

/* =========================================================
   BOOKING / ENQUIRY STEPS
   1360PX — 4 CARDS IN ONE ROW
========================================================= */

.booking-steps {
  width: 100%;
  max-width: 100vw;

  padding: 80px 30px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(197, 157, 78, 0.06),
      transparent 38%
    ),
    #080808;

  overflow: hidden;
}


/* =========================================================
   WRAPPER
========================================================= */

.booking-wrap {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  min-width: 0;
}


/* =========================================================
   HEADING
========================================================= */

.booking-heading {
  max-width: 680px;

  margin: 0 auto 42px;

  text-align: center;
}

.booking-label {
  display: inline-block;

  margin-bottom: 12px;

  color: #d5aa55;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.booking-heading h2 {
  margin: 0 0 14px;

  color: #f1dfb6;

  font-family: "Playfair Display", serif;

  font-size: 38px;
  line-height: 1.2;

  font-weight: 600;
}

.booking-heading p {
  margin: 0;

  color: #aaa39a;

  font-size: 13px;
  line-height: 1.8;
}


/* =========================================================
   4 STEP GRID
========================================================= */

.booking-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 18px;

  width: 100%;
}


/* =========================================================
   STEP CARD
========================================================= */

.booking-card {
  position: relative;

  min-width: 0;

  padding: 27px 22px 25px;

  border: 1px solid rgba(199, 158, 78, 0.25);

  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      #151111,
      #0e0c0c
    );

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-4px);

  border-color:
    rgba(214, 174, 92, 0.52);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   STEP NUMBER
========================================================= */

.booking-number {
  position: absolute;

  top: 18px;
  right: 18px;

  color: rgba(213, 170, 85, 0.30);

  font-family: "Playfair Display", serif;

  font-size: 22px;
  line-height: 1;

  font-weight: 600;
}


/* =========================================================
   ICON
========================================================= */

.booking-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  margin-bottom: 18px;

  border: 1px solid rgba(211, 169, 82, 0.30);

  border-radius: 50%;

  background: rgba(197, 157, 78, 0.04);

  color: #d8ad58;

  font-size: 15px;
}


/* =========================================================
   TITLE
========================================================= */

.booking-card h3 {
  margin: 0 0 10px;

  color: #eee0bd;

  font-family: "Playfair Display", serif;

  font-size: 20px;
  line-height: 1.25;

  font-weight: 600;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.booking-card p {
  margin: 0;

  color: #aaa29a;

  font-size: 12px;

  line-height: 1.7;
}


/* =========================================================
   1050PX
========================================================= */

@media (max-width: 1050px) {

  .booking-grid {
    gap: 14px;
  }

  .booking-card {
    padding: 25px 18px 23px;
  }

  .booking-card h3 {
    font-size: 18px;
  }

}


/* =========================================================
   800PX — 2 × 2
========================================================= */

@media (max-width: 800px) {

  .booking-steps {
    padding: 70px 20px;
  }

  .booking-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 18px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .booking-steps {
    padding: 60px 15px;
  }

  .booking-heading {
    margin-bottom: 32px;
  }

  .booking-heading h2 {
    font-size: 30px;
  }

  .booking-heading p {
    font-size: 13px;
  }

  .booking-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 14px;
  }

  .booking-card {
    padding: 22px 17px;
  }

  .booking-number {
    top: 14px;
    right: 14px;

    font-size: 18px;
  }

  .booking-icon {
    width: 38px;
    height: 38px;

    margin-bottom: 15px;

    font-size: 13px;
  }

  .booking-card h3 {
    font-size: 18px;
  }

  .booking-card p {
    font-size: 11px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-card {
    padding: 22px 20px;
  }

  .booking-card p {
    font-size: 12px;
  }

}

/* =========================================================
   WHY CHOOSE US
   1360PX PREMIUM SECTION
========================================================= */

.why-choose-us {
  width: 100%;
  max-width: 100vw;
  margin: 0;

  padding: 90px 30px;

  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(196, 157, 76, 0.055),
      transparent 35%
    ),
    #0a0909;

  overflow: hidden;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.why-wrap {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(380px, 0.9fr);

  gap: 70px;

  align-items: center;

  min-width: 0;
}


/* =========================================================
   CONTENT
========================================================= */

.why-content {
  min-width: 0;
}


/* =========================================================
   LABEL
========================================================= */

.why-label {
  display: block;

  margin-bottom: 18px;

  color: #d4a653;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 3px;
  text-transform: uppercase;
}


/* =========================================================
   HEADING
========================================================= */

.why-content h2 {
  max-width: 650px;

  margin: 0 0 28px;

  color: #f1dfb6;

  font-family: "Playfair Display", serif;

  font-size: 46px;
  line-height: 1.15;

  font-weight: 500;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.why-content p {
  max-width: 700px;

  margin: 0 0 20px;

  color: #b9b1a8;

  font-size: 14px;

  line-height: 1.85;
}

.why-content p strong {
  color: #d9b361;

  font-weight: 500;
}


/* =========================================================
   DIFFERENCE POINTS
========================================================= */

.why-points {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 16px;

  min-width: 0;
}


/* =========================================================
   POINT CARD
========================================================= */

.why-point {
  display: flex;

  align-items: flex-start;

  gap: 15px;

  min-width: 0;

  padding: 21px 18px;

  border: 1px solid rgba(198, 157, 76, 0.25);

  border-radius: 13px;

  background:
    linear-gradient(
      145deg,
      #161212,
      #0f0d0d
    );

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.why-point:hover {
  transform: translateY(-4px);

  border-color:
    rgba(214, 174, 92, 0.52);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   ICON
========================================================= */

.why-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  width: 40px;
  height: 40px;

  border: 1px solid rgba(210, 168, 82, 0.32);

  border-radius: 50%;

  background: rgba(199, 158, 78, 0.045);

  color: #d8ad58;

  font-size: 14px;
}


/* =========================================================
   POINT CONTENT
========================================================= */

.why-point h3 {
  margin: 1px 0 7px;

  color: #eee0bd;

  font-family: "Playfair Display", serif;

  font-size: 18px;
  line-height: 1.25;

  font-weight: 600;
}

.why-point p {
  margin: 0;

  color: #aaa29a;

  font-size: 11px;

  line-height: 1.65;
}


/* =========================================================
   1100PX
========================================================= */

@media (max-width: 1100px) {

  .why-wrap {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(340px, 0.9fr);

    gap: 45px;
  }

  .why-content h2 {
    font-size: 40px;
  }

}


/* =========================================================
   900PX
========================================================= */

@media (max-width: 900px) {

  .why-choose-us {
    padding: 75px 25px;
  }

  .why-wrap {
    grid-template-columns: 1fr;

    gap: 40px;

    max-width: 700px;
  }

  .why-content {
    text-align: center;
  }

  .why-content h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .why-content p {
    margin-left: auto;
    margin-right: auto;
  }

}


/* =========================================================
   650PX
========================================================= */

@media (max-width: 650px) {

  .why-choose-us {
    padding: 60px 15px;
  }

  .why-wrap {
    gap: 32px;
  }

  .why-label {
    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .why-content h2 {
    margin-bottom: 22px;

    font-size: 31px;
  }

  .why-content p {
    font-size: 13px;

    line-height: 1.8;

    text-align: left;
  }

  .why-points {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 13px;
  }

  .why-point {
    display: block;

    padding: 19px 15px;
  }

  .why-icon {
    margin-bottom: 13px;
  }

  .why-point h3 {
    font-size: 17px;
  }

  .why-point p {
    font-size: 11px;
  }

}


/* =========================================================
   400PX
========================================================= */

@media (max-width: 400px) {

  .why-choose-us {
    padding: 50px 12px;
  }

  .why-content h2 {
    font-size: 28px;
  }

  .why-points {
    grid-template-columns: 1fr;
  }

  .why-point {
    display: flex;

    align-items: flex-start;
  }

  .why-icon {
    margin-bottom: 0;
  }

}

/* =========================================
   CATEGORY SECTION
   Desktop: 4 x 2
   Tablet:  2 x 4
   Mobile:  2 x 4
   Small:   1 x 8
========================================= */

.category-section {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 90px 30px 85px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(196, 157, 76, 0.055),
      transparent 32%
    ),
    #0b0909;
  overflow: hidden;
}

.category-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/* =========================================
   CATEGORY HEADING
========================================= */

.category-heading {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.category-label {
  display: block;
  margin-bottom: 17px;
  color: #d4a653;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.4;
  text-transform: uppercase;
}

.category-heading h2 {
  margin: 0 0 22px;
  color: #f1dfb6;
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 500;
}

.category-heading p {
  max-width: 820px;
  margin: 0 auto 8px;
  color: #aaa29a;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
}

.category-heading p:last-child {
  margin-bottom: 0;
}


/* =========================================
   CATEGORY GRID
   DESKTOP = 4 COLUMNS × 2 ROWS
========================================= */

.category-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}


/* =========================================
   CATEGORY CARD
========================================= */

.category-card {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 92px;
  padding: 18px 20px;

  border: 1px solid rgba(198, 157, 76, 0.24);
  border-radius: 13px;

  background:
    linear-gradient(
      145deg,
      rgba(25, 19, 18, 0.98),
      rgba(15, 12, 12, 0.98)
    );

  text-decoration: none;
  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


/* subtle top accent */

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 45px;
  height: 1px;

  background: #d4a653;
  opacity: 0.7;
}


/* hover */

.category-card:hover {
  transform: translateY(-3px);

  border-color: rgba(214, 174, 92, 0.52);

  background:
    linear-gradient(
      145deg,
      rgba(30, 23, 21, 0.99),
      rgba(17, 13, 13, 0.99)
    );

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.32);
}


/* =========================================
   CATEGORY NUMBER
========================================= */

.category-number {
  display: block;
  flex: 0 0 34px;

  color: #d4a653;

  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 1;
}


/* =========================================
   CATEGORY NAME
========================================= */

.category-card h3 {
  min-width: 0;
  margin: 0;

  color: #eee0bd;

  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;

  transition: color 0.3s ease;
}

.category-card:hover h3 {
  color: #f3dfae;
}


/* =========================================
   TABLET
   2 COLUMNS × 4 ROWS
========================================= */

@media (max-width: 1050px) {

  .category-section {
    padding: 75px 25px;
  }

  .category-wrap {
    max-width: 900px;
  }

  .category-heading {
    margin-bottom: 45px;
  }

  .category-heading h2 {
    font-size: 40px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .category-card {
    min-height: 90px;
    padding: 18px 22px;
  }

  .category-card h3 {
    font-size: 21px;
  }
}


/* =========================================
   MOBILE
   2 COLUMNS × 4 ROWS
========================================= */

@media (max-width: 650px) {

  .category-section {
    padding: 60px 15px;
  }

  .category-wrap {
    max-width: 100%;
  }

  .category-heading {
    margin-bottom: 38px;
  }

  .category-label {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .category-heading h2 {
    margin-bottom: 19px;
    font-size: 31px;
    line-height: 1.2;
  }

  .category-heading p {
    font-size: 13px;
    line-height: 1.8;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .category-card {
    min-height: 82px;
    padding: 17px 14px;
    border-radius: 11px;
  }

  .category-card::before {
    width: 35px;
  }

  .category-number {
    flex-basis: 28px;
    font-size: 9px;
    letter-spacing: 0.6px;
  }

  .category-card h3 {
    font-size: 16px;
    line-height: 1.25;
  }
}


/* =========================================
   SMALL MOBILE
   1 COLUMN × 8 ROWS
========================================= */

@media (max-width: 400px) {

  .category-section {
    padding: 50px 12px;
  }

  .category-heading {
    margin-bottom: 32px;
  }

  .category-heading h2 {
    font-size: 28px;
  }

  .category-heading p {
    font-size: 12.5px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .category-card {
    min-height: 76px;
    padding: 17px 18px;
  }

  .category-number {
    flex-basis: 32px;
    font-size: 10px;
  }

  .category-card h3 {
    font-size: 19px;
  }
}


/* =========================================
   EXTRA SMALL DEVICES
========================================= */

@media (max-width: 340px) {

  .category-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .category-heading h2 {
    font-size: 26px;
  }

  .category-card {
    min-height: 72px;
    padding: 16px;
  }

  .category-card h3 {
    font-size: 18px;
  }
}
/* =========================================
   PROFILE VERIFICATION
========================================= */

.verification-section {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 90px 30px;
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(196, 157, 76, 0.055),
      transparent 32%
    ),
    #0a0909;
  overflow: hidden;
}

.verification-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */

.verification-heading {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.verification-label {
  display: block;
  margin-bottom: 16px;
  color: #d4a653;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.4;
  text-transform: uppercase;
}

.verification-heading h2 {
  margin: 0 0 20px;
  color: #f1dfb6;
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 500;
}

.verification-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #aaa29a;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 400;
}

/* Grid */

.verification-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

/* Card */

.verification-card {
  position: relative;
  min-width: 0;
  padding: 28px 22px 25px;
  border: 1px solid rgba(198, 157, 76, 0.24);
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    #171313,
    #0f0d0d
  );
  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.verification-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  height: 1px;
  background: #d4a653;
  opacity: 0.8;
}

.verification-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 174, 92, 0.52);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* Number */

.verification-number {
  display: block;
  margin-bottom: 22px;
  color: #8f836f;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1;
}

/* Icon */

.verification-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;
  margin-bottom: 20px;

  border: 1px solid rgba(210, 168, 82, 0.32);
  border-radius: 50%;

  background: rgba(199, 158, 78, 0.045);

  color: #d8ad58;
  font-size: 16px;
}

/* Card Heading */

.verification-card h3 {
  margin: 0 0 10px;

  color: #eee0bd;

  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

/* Card Text */

.verification-card p {
  margin: 0;

  color: #aaa29a;

  font-size: 12px;
  line-height: 1.75;
}

/* Note */

.verification-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  max-width: 900px;
  margin: 28px auto 0;
  padding: 16px 20px;

  border: 1px solid rgba(198, 157, 76, 0.16);
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.018);
}

.verification-note i {
  flex-shrink: 0;
  margin-top: 3px;

  color: #cda75b;
  font-size: 13px;
}

.verification-note p {
  margin: 0;

  color: #8f8880;

  font-size: 11px;
  line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

  .verification-section {
    padding: 75px 25px;
  }

  .verification-heading {
    margin-bottom: 45px;
  }

  .verification-heading h2 {
    font-size: 40px;
  }

  .verification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .verification-section {
    padding: 60px 15px;
  }

  .verification-heading {
    margin-bottom: 38px;
  }

  .verification-label {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .verification-heading h2 {
    margin-bottom: 18px;
    font-size: 31px;
    line-height: 1.2;
  }

  .verification-heading p {
    font-size: 13px;
    line-height: 1.8;
  }

  .verification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .verification-card {
    padding: 21px 16px;
    border-radius: 12px;
  }

  .verification-number {
    margin-bottom: 17px;
    font-size: 9px;
  }

  .verification-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    font-size: 14px;
  }

  .verification-card h3 {
    font-size: 17px;
  }

  .verification-card p {
    font-size: 11px;
    line-height: 1.65;
  }

  .verification-note {
    margin-top: 20px;
    padding: 14px;
  }

  .verification-note p {
    font-size: 10px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  .verification-section {
    padding: 50px 12px;
  }

  .verification-heading {
    margin-bottom: 32px;
  }

  .verification-heading h2 {
    font-size: 28px;
  }

  .verification-heading p {
    font-size: 12.5px;
  }

  .verification-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .verification-card {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 14px;
    padding: 18px;
  }

  .verification-number {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }

  .verification-icon {
    grid-column: 1;
    grid-row: 2 / span 2;
    margin: 0;
  }

  .verification-card h3 {
    grid-column: 2;
    margin: 2px 0 7px;
    font-size: 18px;
  }

  .verification-card p {
    grid-column: 2;
    font-size: 11px;
  }
}
/* =========================================
   KOCHI HOTEL & STAY GUIDE
========================================= */

.kochi-hotels {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 90px 30px 85px;
  background:
    radial-gradient(
      circle at 85% 25%,
      rgba(196, 157, 76, 0.055),
      transparent 32%
    ),
    #0b0909;
  overflow: hidden;
}

.hotels-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */

.hotels-heading {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.hotels-label {
  display: block;
  margin-bottom: 16px;
  color: #d4a653;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.4;
  text-transform: uppercase;
}

.hotels-heading h2 {
  margin: 0 0 20px;
  color: #f1dfb6;
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 500;
}

.hotels-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #aaa29a;
  font-size: 14px;
  line-height: 1.85;
}

/* Grid */

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

/* Card */

.hotel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 245px;
  padding: 24px 20px 19px;

  border: 1px solid rgba(198, 157, 76, 0.24);
  border-radius: 13px;

  background: linear-gradient(
    145deg,
    #171313,
    #0f0d0d
  );

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.hotel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: #d4a653;
  opacity: 0.8;
}

.hotel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 174, 92, 0.52);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* Number */

.hotel-number {
  display: block;
  margin-bottom: 18px;

  color: #8f836f;

  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

/* Hotel Info */

.hotel-info {
  flex: 1;
  min-width: 0;
}

.hotel-info h3 {
  margin: 0 0 9px;

  color: #eee0bd;

  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
}

.hotel-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 14px;

  color: #d4a653;

  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hotel-location i {
  font-size: 10px;
}

.hotel-info p {
  margin: 0;

  color: #aaa29a;

  font-size: 11px;
  line-height: 1.7;
}

/* Link */

.hotel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  align-self: flex-start;

  margin-top: 20px;

  color: #d4a653;

  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.7px;

  text-decoration: none;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.hotel-link i {
  font-size: 9px;
}

.hotel-link:hover {
  color: #f0d28f;
  gap: 11px;
}

/* Note */

.hotels-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;

  max-width: 900px;
  margin: 27px auto 0;
  padding: 15px 19px;

  border: 1px solid rgba(198, 157, 76, 0.15);
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.018);
}

.hotels-note i {
  flex-shrink: 0;
  margin-top: 3px;

  color: #cda75b;
  font-size: 12px;
}

.hotels-note p {
  margin: 0;

  color: #8f8880;

  font-size: 10px;
  line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

  .kochi-hotels {
    padding: 75px 25px;
  }

  .hotels-heading {
    margin-bottom: 45px;
  }

  .hotels-heading h2 {
    font-size: 40px;
  }

  .hotels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .kochi-hotels {
    padding: 60px 15px;
  }

  .hotels-heading {
    margin-bottom: 38px;
  }

  .hotels-label {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .hotels-heading h2 {
    margin-bottom: 18px;
    font-size: 31px;
    line-height: 1.2;
  }

  .hotels-heading p {
    font-size: 13px;
    line-height: 1.8;
  }

  .hotels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hotel-card {
    min-height: 235px;
    padding: 21px 16px 18px;
    border-radius: 12px;
  }

  .hotel-number {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .hotel-info h3 {
    font-size: 17px;
  }

  .hotel-location {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .hotel-info p {
    font-size: 10.5px;
    line-height: 1.65;
  }

  .hotel-link {
    margin-top: 17px;
    font-size: 9px;
  }

  .hotels-note {
    margin-top: 20px;
    padding: 13px;
  }

  .hotels-note p {
    font-size: 9.5px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  .kochi-hotels {
    padding: 50px 12px;
  }

  .hotels-heading {
    margin-bottom: 32px;
  }

  .hotels-heading h2 {
    font-size: 28px;
  }

  .hotels-heading p {
    font-size: 12.5px;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .hotel-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .hotel-info h3 {
    font-size: 19px;
  }

  .hotel-info p {
    font-size: 11px;
  }

  .hotel-link {
    font-size: 9.5px;
  }

}


/* =========================================
   VERY SMALL SCREENS
========================================= */

@media (max-width: 340px) {

  .kochi-hotels {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hotels-heading h2 {
    font-size: 26px;
  }

  .hotel-card {
    padding: 18px 16px;
  }

}
/* =========================================
   KOCHI SEO CONTENT SECTION
========================================= */

.kochi-content-section {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 90px 30px;
  background:
    radial-gradient(
      circle at 15% 40%,
      rgba(196, 157, 76, 0.045),
      transparent 32%
    ),
    #0d0b0b;
  overflow: hidden;
}

.kochi-content-wrap {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.kochi-content-heading {
  max-width: 820px;
  margin: 0 auto 45px;
  text-align: center;
}

.kochi-content-label {
  display: block;
  margin-bottom: 16px;

  color: #d4a653;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.4;
  text-transform: uppercase;
}

.kochi-content-heading h2 {
  margin: 0;

  color: #f1dfb6;
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 500;
}


/* =========================================
   CONTENT BODY
========================================= */

.kochi-content-body {
  max-width: 950px;
  margin: 0 auto;
}

.kochi-content-body p {
  margin: 0 0 21px;

  color: #aaa29a;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 400;
}

.kochi-content-body p:last-child {
  margin-bottom: 0;
}

.kochi-content-body strong {
  color: #d8b15f;
  font-weight: 500;
}


/* =========================================
   CONTENT SUBHEADINGS
========================================= */

.kochi-content-body h3 {
  margin: 38px 0 15px;

  color: #ead9b2;
  font-family: "Playfair Display", serif;
  font-size: 27px;
  line-height: 1.3;
  font-weight: 500;
}


/* =========================================
   ACTION BUTTON
========================================= */

.kochi-content-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.kochi-content-action a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 13px 24px;

  border: 1px solid rgba(211, 169, 86, 0.42);
  border-radius: 30px;

  background: rgba(199, 158, 78, 0.045);

  color: #dcb96f;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.kochi-content-action a:hover {
  background: rgba(199, 158, 78, 0.10);
  border-color: rgba(211, 169, 86, 0.68);
  transform: translateY(-2px);
}

.kochi-content-action i {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.kochi-content-action a:hover i {
  transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .kochi-content-section {
    padding: 75px 25px;
  }

  .kochi-content-heading {
    margin-bottom: 38px;
  }

  .kochi-content-heading h2 {
    font-size: 39px;
  }

  .kochi-content-body p {
    font-size: 13.5px;
    line-height: 1.85;
  }

  .kochi-content-body h3 {
    font-size: 25px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .kochi-content-section {
    padding: 60px 15px;
  }

  .kochi-content-heading {
    margin-bottom: 32px;
  }

  .kochi-content-label {
    margin-bottom: 13px;
    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .kochi-content-heading h2 {
    font-size: 31px;
    line-height: 1.2;
  }

  .kochi-content-body p {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.82;
    text-align: left;
  }

  .kochi-content-body h3 {
    margin: 30px 0 13px;
    font-size: 23px;
  }

  .kochi-content-action {
    margin-top: 32px;
  }

  .kochi-content-action a {
    padding: 12px 20px;
    font-size: 10px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  .kochi-content-section {
    padding: 50px 12px;
  }

  .kochi-content-heading h2 {
    font-size: 28px;
  }

  .kochi-content-body p {
    font-size: 12.5px;
    line-height: 1.8;
  }

  .kochi-content-body h3 {
    font-size: 21px;
  }
}

/* =========================================
   KOCHI LOCATIONS SECTION
   Desktop: 4 x 2
========================================= */

.kochi-locations {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 90px 30px 85px;
  background: #0b0909;
  overflow: hidden;
}

.locations-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.locations-heading {
  max-width: 850px;
  margin: 0 auto 48px;
  text-align: center;
}

.locations-label {
  display: block;
  margin-bottom: 16px;

  color: #d4a653;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.4;
  text-transform: uppercase;
}

.locations-heading h2 {
  margin: 0 0 18px;

  color: #f1dfb6;
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 500;
}

.locations-heading p {
  max-width: 760px;
  margin: 0 auto;

  color: #aaa29a;
  font-size: 14px;
  line-height: 1.8;
}


/* =========================================
   LOCATION GRID
   4 COLUMNS × 2 ROWS
========================================= */

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}


/* =========================================
   LOCATION CARD
========================================= */

.location-card {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-width: 0;
  min-height: 78px;

  padding: 18px 24px;

  border: 1px solid rgba(198, 157, 76, 0.22);
  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      #151010,
      #100d0d
    );

  color: #eee0bd;
  text-decoration: none;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


/* Top gold accent */

.location-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 42px;
  height: 1px;

  background: #d4a653;
  opacity: 0.7;
}


/* Location name */

.location-card span {
  min-width: 0;

  color: #eee0bd;

  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;

  transition: color 0.3s ease;
}


/* Arrow */

.location-card i {
  flex-shrink: 0;

  margin-left: 15px;

  color: #d4a653;
  font-size: 14px;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}


/* Hover */

.location-card:hover {
  transform: translateY(-3px);

  border-color: rgba(214, 174, 92, 0.52);

  background:
    linear-gradient(
      145deg,
      #1a1413,
      #120f0f
    );

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.30);
}

.location-card:hover span {
  color: #f3dfae;
}

.location-card:hover i {
  color: #e2bd69;
  transform: translateX(5px);
}


/* =========================================
   TABLET
   2 COLUMNS × 4 ROWS
========================================= */

@media (max-width: 1000px) {

  .kochi-locations {
    padding: 75px 25px;
  }

  .locations-wrap {
    max-width: 900px;
  }

  .locations-heading {
    margin-bottom: 40px;
  }

  .locations-heading h2 {
    font-size: 40px;
  }

  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }

  .location-card {
    min-height: 82px;
  }
}


/* =========================================
   MOBILE
   2 COLUMNS × 4 ROWS
========================================= */

@media (max-width: 650px) {

  .kochi-locations {
    padding: 60px 15px;
  }

  .locations-heading {
    margin-bottom: 34px;
  }

  .locations-label {
    margin-bottom: 13px;

    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .locations-heading h2 {
    margin-bottom: 17px;
    font-size: 31px;
    line-height: 1.2;
  }

  .locations-heading p {
    font-size: 13px;
    line-height: 1.8;
  }

  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .location-card {
    min-height: 72px;
    padding: 16px 15px;
    border-radius: 10px;
  }

  .location-card span {
    font-size: 16px;
  }

  .location-card i {
    margin-left: 8px;
    font-size: 11px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  .kochi-locations {
    padding: 50px 12px;
  }

  .locations-heading h2 {
    font-size: 28px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .location-card {
    min-height: 68px;
    padding: 15px 17px;
  }

  .location-card span {
    font-size: 18px;
  }

  .location-card i {
    font-size: 12px;
  }
}

/* =========================================
   KOCHI FAQ SECTION
   Desktop: 2 x 3
   No JavaScript required
========================================= */

.kochi-faq {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 90px 30px 85px;
  background:
    radial-gradient(
      circle at 85% 45%,
      rgba(196, 157, 76, 0.045),
      transparent 32%
    ),
    #0d0b0b;
  overflow: hidden;
}

.faq-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/* =========================================
   FAQ HEADING
========================================= */

.faq-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.faq-label {
  display: block;
  margin-bottom: 16px;

  color: #d4a653;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.4;
  text-transform: uppercase;
}

.faq-heading h2 {
  margin: 0 0 18px;

  color: #f1dfb6;
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 500;
}

.faq-heading p {
  margin: 0;

  color: #aaa29a;
  font-size: 14px;
  line-height: 1.8;
}


/* =========================================
   FAQ GRID
   2 COLUMNS × 3 ROWS
========================================= */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 15px;
}


/* =========================================
   FAQ CARD
========================================= */

.faq-card {
  min-width: 0;

  border: 1px solid rgba(198, 157, 76, 0.22);
  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      #151010,
      #100d0d
    );

  overflow: hidden;

  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.faq-card:hover {
  border-color: rgba(214, 174, 92, 0.45);
}


/* =========================================
   FAQ QUESTION
========================================= */

.faq-card summary {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 78px;

  padding: 18px 22px;

  color: #eee0bd;

  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;

  cursor: pointer;
  list-style: none;
  outline: none;
}


/* Remove default marker */

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::marker {
  display: none;
}


/* Question text */

.faq-card summary span {
  padding-right: 15px;
}


/* Plus icon */

.faq-card summary i {
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 27px;
  height: 27px;

  border: 1px solid rgba(210, 168, 82, 0.35);
  border-radius: 50%;

  color: #d4a653;
  font-size: 9px;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}


/* Open state */

.faq-card[open] {
  border-color: rgba(214, 174, 92, 0.45);
  background:
    linear-gradient(
      145deg,
      #181313,
      #110e0e
    );
}

.faq-card[open] summary i {
  transform: rotate(45deg);
  background: rgba(199, 158, 78, 0.08);
}


/* =========================================
   FAQ ANSWER
========================================= */

.faq-answer {
  padding: 0 22px 21px;
  border-top: 1px solid rgba(198, 157, 76, 0.10);
}

.faq-answer p {
  margin: 17px 0 0;

  color: #aaa29a;

  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.8;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .kochi-faq {
    padding: 75px 25px;
  }

  .faq-heading {
    margin-bottom: 40px;
  }

  .faq-heading h2 {
    font-size: 40px;
  }

  .faq-card summary {
    min-height: 76px;
    padding: 17px 20px;
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}


/* =========================================
   MOBILE
   2 COLUMNS × 3 ROWS
========================================= */

@media (max-width: 650px) {

  .kochi-faq {
    padding: 60px 15px;
  }

  .faq-heading {
    margin-bottom: 34px;
  }

  .faq-label {
    margin-bottom: 13px;
    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .faq-heading h2 {
    margin-bottom: 17px;
    font-size: 31px;
    line-height: 1.2;
  }

  .faq-heading p {
    font-size: 13px;
    line-height: 1.8;
  }

  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .faq-card {
    border-radius: 10px;
  }

  .faq-card summary {
    min-height: 82px;
    padding: 15px 14px;
    font-size: 15px;
    line-height: 1.35;
  }

  .faq-card summary span {
    padding-right: 8px;
  }

  .faq-card summary i {
    width: 24px;
    height: 24px;
    font-size: 8px;
  }

  .faq-answer {
    padding: 0 14px 16px;
  }

  .faq-answer p {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.7;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  .kochi-faq {
    padding: 50px 12px;
  }

  .faq-heading {
    margin-bottom: 30px;
  }

  .faq-heading h2 {
    font-size: 28px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-card summary {
    min-height: 70px;
    padding: 16px 17px;
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 17px 17px;
  }

  .faq-answer p {
    font-size: 12px;
  }
}
/* =========================================
   KOCHI CONTACT CTA
========================================= */

.kochi-cta {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 75px 30px;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(196, 157, 76, 0.09),
      transparent 55%
    ),
    #0a0808;

  overflow: hidden;
}

.cta-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;

  border: 1px solid rgba(198, 157, 76, 0.25);
  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(27, 21, 19, 0.98),
      rgba(14, 11, 11, 0.98)
    );

  text-align: center;
  overflow: hidden;
}


/* =========================================
   CTA CONTENT
========================================= */

.cta-content {
  position: relative;
  padding: 60px 45px;
}

.cta-content::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: 100px;
  height: 1px;

  background: #d4a653;

  transform: translateX(-50%);
}


.cta-label {
  display: block;
  margin-bottom: 16px;

  color: #d4a653;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.4;
  text-transform: uppercase;
}


.cta-content h2 {
  max-width: 700px;
  margin: 0 auto 17px;

  color: #f1dfb6;

  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
}


.cta-content p {
  max-width: 680px;
  margin: 0 auto;

  color: #aaa29a;

  font-size: 13px;
  line-height: 1.8;
}


/* =========================================
   CTA BUTTONS
========================================= */

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin-top: 30px;
}


.cta-primary,
.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-height: 44px;
  padding: 12px 23px;

  border-radius: 30px;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}


/* Primary */

.cta-primary {
  border: 1px solid #cda456;

  background: #cda456;

  color: #100d0c;
}

.cta-primary:hover {
  background: #dfb968;
  border-color: #dfb968;
  transform: translateY(-2px);
}

.cta-primary i {
  font-size: 9px;
}


/* WhatsApp */

.cta-whatsapp {
  border: 1px solid rgba(198, 157, 76, 0.38);

  background: rgba(199, 158, 78, 0.045);

  color: #dec17a;
}

.cta-whatsapp:hover {
  background: rgba(199, 158, 78, 0.10);
  border-color: rgba(214, 174, 92, 0.65);
  transform: translateY(-2px);
}

.cta-whatsapp i {
  font-size: 14px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .kochi-cta {
    padding: 65px 25px;
  }

  .cta-wrap {
    max-width: 850px;
    border-radius: 16px;
  }

  .cta-content {
    padding: 52px 35px;
  }

  .cta-content h2 {
    font-size: 38px;
    line-height: 1.2;
  }

  .cta-content p {
    font-size: 13px;
    line-height: 1.8;
  }

  .cta-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 28px;
  }

  .cta-primary,
  .cta-whatsapp {
    width: 180px;
    max-width: none;
  }
}


/* =========================================
   MOBILE
   BUTTONS SIDE BY SIDE
========================================= */

@media (max-width: 650px) {

  .kochi-cta {
    padding: 55px 15px;
  }

  .cta-wrap {
    width: 100%;
    border-radius: 15px;
  }

  .cta-content {
    padding: 45px 18px;
  }

  .cta-label {
    margin-bottom: 13px;
    font-size: 9px;
    letter-spacing: 2.5px;
  }

  .cta-content h2 {
    margin-bottom: 17px;
    font-size: 30px;
    line-height: 1.22;
  }

  .cta-content p {
    font-size: 12.5px;
    line-height: 1.8;
  }


  /* Buttons */

  .cta-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    width: 100%;
    gap: 8px;

    margin-top: 25px;
  }

  .cta-primary,
  .cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: calc(50% - 4px);
    max-width: none;
    min-width: 0;
    min-height: 44px;

    padding: 11px 8px;

    white-space: nowrap;
    font-size: 9px;
    letter-spacing: 0.7px;
  }

  .cta-primary i {
    font-size: 8px;
  }

  .cta-whatsapp i {
    font-size: 13px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  .kochi-cta {
    padding: 45px 12px;
  }

  .cta-wrap {
    border-radius: 13px;
  }

  .cta-content {
    padding: 40px 14px;
  }

  .cta-label {
    margin-bottom: 12px;
    font-size: 8px;
    letter-spacing: 2.2px;
  }

  .cta-content h2 {
    margin-bottom: 16px;
    font-size: 27px;
    line-height: 1.22;
  }

  .cta-content p {
    font-size: 12px;
    line-height: 1.75;
  }

  .cta-actions {
    gap: 7px;
    margin-top: 23px;
  }

  .cta-primary,
  .cta-whatsapp {
    width: calc(50% - 3.5px);
    min-height: 42px;
    padding: 10px 5px;

    font-size: 8px;
    letter-spacing: 0.5px;
  }

  .cta-whatsapp i {
    font-size: 12px;
  }
}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 340px) {

  .kochi-cta {
    padding: 40px 10px;
  }

  .cta-content {
    padding: 35px 11px;
  }

  .cta-content h2 {
    font-size: 25px;
  }

  .cta-content p {
    font-size: 11.5px;
  }

  .cta-actions {
    gap: 6px;
  }

  .cta-primary,
  .cta-whatsapp {
    min-height: 40px;
    padding: 9px 3px;

    font-size: 7.5px;
    letter-spacing: 0.3px;
  }
}

/* =========================================
   SITE FOOTER
========================================= */

.site-footer {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  background: #080707;
  color: #aaa29a;
  overflow: hidden;
}


/* =========================================
   FOOTER MAIN
========================================= */

.footer-main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1.15fr 1.15fr 1.25fr;

  gap: 55px;

  padding: 65px 0 70px;
}


/* =========================================
   BRAND
========================================= */

.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;

  color: #f1dfb6;

  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;

  text-decoration: none;
}

.footer-brand > p {
  max-width: 500px;
  margin: 0;

  color: #aaa29a;

  font-size: 13px;
  line-height: 1.8;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 27px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 45px;
  height: 45px;

  border: 1px solid rgba(198, 157, 76, 0.18);
  border-radius: 50%;

  background: #0d0b0b;

  color: #aaa29a;

  font-size: 14px;

  text-decoration: none;

  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.footer-social a:hover {
  color: #d5ad5d;

  border-color: rgba(211, 169, 86, 0.48);

  background: #151010;

  transform: translateY(-2px);
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {
  min-width: 0;
}

.footer-column h3 {
  margin: 0;

  color: #eee0bd;

  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.footer-heading-line {
  display: block;

  width: 38px;
  height: 3px;

  margin-top: 15px;
  margin-bottom: 27px;

  background: #d4a653;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-column ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-column li {
  margin: 0 0 17px;
  padding: 0;
}

.footer-column li:last-child {
  margin-bottom: 0;
}

.footer-column li a {
  display: inline-block;

  color: #aaa29a;

  font-size: 13px;
  line-height: 1.4;

  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-column li a:hover {
  color: #d8b15f;
  transform: translateX(2px);
}


/* =========================================
   CONTACT
========================================= */

.footer-contact li a,
.footer-address {
  display: flex !important;
  align-items: center;
  gap: 13px;

  color: #aaa29a;

  font-size: 13px;
  line-height: 1.5;
}

.footer-contact li a i,
.footer-address i {
  flex: 0 0 18px;

  color: #d4a653;

  font-size: 14px;
  text-align: center;
}

.footer-contact li a:hover {
  transform: translateX(2px);
}


/* =========================================
   LEGAL LINKS
========================================= */

.footer-legal {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 11px;

  padding: 28px 0;

  border-top: 1px solid rgba(198, 157, 76, 0.10);
}

.footer-legal a {
  color: #aaa29a;

  font-size: 12px;
  line-height: 1.4;

  text-decoration: none;

  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: #d8b15f;
}

.footer-legal span {
  color: rgba(198, 157, 76, 0.35);
  font-size: 11px;
}


/* =========================================
   COPYRIGHT
========================================= */

.footer-bottom {
  width: 100%;

  border-top: 1px solid rgba(198, 157, 76, 0.08);

  text-align: center;
}

.footer-bottom p {
  margin: 0;
  padding: 22px 15px;

  color: #817b76;

  font-size: 11px;
  line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

  .footer-main {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 40px;

    padding: 55px 30px 60px;
  }

  .footer-brand {
    grid-column: span 3;
  }

  .footer-brand > p {
    max-width: 650px;
  }

  .footer-legal {
    padding-left: 25px;
    padding-right: 25px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .footer-main {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 42px 28px;

    padding: 50px 20px 45px;
  }


  /* Brand full width */

  .footer-brand {
    grid-column: span 2;
  }

  .footer-logo {
    margin-bottom: 17px;
    font-size: 29px;
  }

  .footer-brand > p {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.75;
  }

  .footer-social {
    margin-top: 22px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }


  /* Columns */

  .footer-column h3 {
    font-size: 15px;
  }

  .footer-heading-line {
    width: 32px;
    height: 2px;

    margin-top: 12px;
    margin-bottom: 21px;
  }

  .footer-column li {
    margin-bottom: 14px;
  }

  .footer-column li a,
  .footer-address {
    font-size: 12px;
  }

  .footer-contact li a,
  .footer-address {
    gap: 9px;
  }


  /* Legal */

  .footer-legal {
    padding: 23px 15px;

    gap: 8px;
  }

  .footer-legal a {
    font-size: 10px;
  }

  .footer-legal span {
    font-size: 9px;
  }

  .footer-bottom p {
    padding: 19px 12px;
    font-size: 10px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  .footer-main {
    grid-template-columns: 1fr 1fr;

    gap: 35px 20px;

    padding: 45px 15px 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-logo {
    font-size: 27px;
  }

  .footer-brand > p {
    font-size: 11.5px;
  }

  .footer-social {
    gap: 7px;
  }

  .footer-social a {
    width: 37px;
    height: 37px;
    font-size: 12px;
  }

  .footer-column h3 {
    font-size: 14px;
  }

  .footer-column li a,
  .footer-address {
    font-size: 11px;
  }

  .footer-legal {
    gap: 6px;
  }

  .footer-legal a {
    font-size: 9px;
  }

  .footer-bottom p {
    font-size: 9.5px;
  }
}

/* =========================================
   FLOATING CTA - BASE
========================================= */

.floating-cta {
  position: fixed;
  right: 28px;
  bottom: 32px;

  z-index: 9999;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;

  background: transparent;
  border: 0;
  box-shadow: none;
}


/* =========================================
   COMMON BUTTON
========================================= */

.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 68px;
  height: 68px;

  padding: 0;

  border-radius: 50%;

  text-decoration: none;

  overflow: hidden;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);

  transition:
    width 0.35s ease,
    border-radius 0.35s ease,
    padding 0.35s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


/* Hide text on desktop */

.floating-cta a span {
  display: none;
}


/* =========================================
   CALL BUTTON
========================================= */

.floating-call {
  background: #c9003f;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-call i {
  font-size: 25px;
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.floating-whatsapp {
  background: #e0b62f;
  color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-whatsapp i {
  font-size: 27px;
}


/* =========================================
   DESKTOP HOVER ONLY
   651px AND ABOVE
========================================= */

@media (min-width: 651px) {

  .floating-call:hover {
    width: 160px;

    justify-content: flex-start;

    padding-left: 23px;

    border-radius: 36px;

    box-shadow:
      0 10px 30px rgba(201, 0, 63, 0.30);
  }

  .floating-call:hover i {
    margin-right: 12px;
  }

  .floating-call:hover span {
    display: inline;

    white-space: nowrap;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
  }


  .floating-whatsapp:hover {
    width: 160px;

    justify-content: flex-start;

    padding-left: 23px;

    border-radius: 36px;

    box-shadow:
      0 10px 30px rgba(224, 182, 47, 0.28);
  }

  .floating-whatsapp:hover i {
    margin-right: 12px;
  }

  .floating-whatsapp:hover span {
    display: inline;

    white-space: nowrap;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
  }

}


/* =========================================
   TABLET
========================================= */

@media (min-width: 651px) and (max-width: 900px) {

  .floating-cta {
    right: 20px;
    bottom: 28px;
    gap: 12px;
  }

  .floating-cta a {
    width: 60px;
    height: 60px;
  }

  .floating-call i {
    font-size: 22px;
  }

  .floating-whatsapp i {
    font-size: 24px;
  }

  .floating-call:hover,
  .floating-whatsapp:hover {
    width: 145px;
  }

}


/* =========================================
   MOBILE
   NO HOVER EXPANSION
========================================= */

@media (max-width: 650px) {

  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: 10px;

    width: auto;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 5px;

    padding: 5px;

    border: 1px solid rgba(198, 157, 76, 0.38);
    border-radius: 40px;

    background: rgba(13, 11, 11, 0.97);

    box-shadow:
      0 8px 30px rgba(0, 0, 0, 0.50);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }


  /* =====================================
     MOBILE BUTTONS
  ===================================== */

  .floating-cta a {
    flex: 1 1 0;

    width: 50% !important;
    height: 43px;

    min-width: 0;
    max-width: none;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 !important;

    border-radius: 30px !important;

    box-shadow: none !important;

    transform: none !important;

    transition: none !important;

    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.6px;
  }


  /* Show text */

  .floating-cta a span {
    display: inline !important;

    white-space: nowrap;
  }


  /* Icons */

  .floating-call i {
    margin: 0 !important;
    font-size: 12px;
  }

  .floating-whatsapp i {
    margin: 0 !important;
    font-size: 15px;
  }


  /* =====================================
     FORCE NO HOVER / TOUCH EXPANSION
  ===================================== */

  .floating-cta a:hover,
  .floating-cta a:focus,
  .floating-cta a:active {
    width: 50% !important;
    max-width: none !important;

    padding: 0 !important;

    transform: none !important;

    border-radius: 30px !important;

    box-shadow: none !important;
  }


  .floating-call:hover,
  .floating-call:focus,
  .floating-call:active {
    background: #c9003f !important;
    color: #ffffff !important;
  }


  .floating-whatsapp:hover,
  .floating-whatsapp:focus,
  .floating-whatsapp:active {
    background: #e0b62f !important;
    color: #111111 !important;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  .floating-cta {
    left: 9px;
    right: 9px;
    bottom: 8px;

    gap: 4px;
    padding: 4px;
  }


  .floating-cta a {
    width: 50% !important;
    height: 41px;

    gap: 7px;

    font-size: 9px;
    letter-spacing: 0.4px;
  }


  .floating-call i {
    font-size: 11px;
  }

  .floating-whatsapp i {
    font-size: 14px;
  }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 340px) {

  .floating-cta {
    left: 7px;
    right: 7px;
    bottom: 7px;
  }

  .floating-cta a {
    height: 40px;
    font-size: 8.5px;
  }

}