
/* ================== FONT DECLARATIONS ================== */
@font-face {
  font-family: 'Grotesk';
  src: url('./Grotesk/HostGrotesk-Bold-BF65bb091c5ba6f.otf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Grotesk';
  src: url('./Grotesk/HostGrotesk-Medium-BF65bb091d2b74a.otf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Grotesk';
  src: url('./Grotesk/HostGrotesk-Regular-BF65bb091d50206.otf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Suisse';
  src: url('./Suisse/Suisse_Intl_Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Suisse';
  src: url('./Suisse/Suisse_Intl_Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Suisse';
  src: url('./Suisse/Suisse_Intl_Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* ================== RESET & GLOBAL ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #0E0E0E;
  overflow-x: hidden;
  font-family: 'Figtree', sans-serif;
  color: white;
}

/* Add to your CSS file */
html.lenis,
html.lenis body {
  height: auto;
}

html.lenis body {
  overflow: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ================== HERO / VIDEO ================== */
.video-section {
  width: 100%;
  height: 64vh;

  position: relative;
  overflow: visible;
  margin-bottom: clamp(60px, 12vh, 120px);
}

.fullscreen-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.fullscreen-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.fullscreen-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  padding: clamp(20px, 4vw, 48px);
}

.hero-heading-wrapper {
  position: absolute;
  top: clamp(40px, 8vh, 64px);
  left: clamp(20px, 4vw, 48px);

  /* This prevents overlap with menu */
  max-width: calc(100vw - clamp(20px, 4vw, 48px) - clamp(120px, 14vw, 180px));

  padding-right: clamp(40px, 10vw, 140px);
}

.hero-heading {
  font-weight: 500;
  font-size: clamp(32px, 8vw, 64px);
  line-height: 1.15;
  color: white;
  text-transform: capitalize;
  font-family: "Grotesk", sans-serif;
  word-wrap: break-word;
}

.hero-subheading {
  font-weight: 200;
  font-family: "suisse", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  margin-top: clamp(16px, 3vh, 24px);
  max-width: 600px;
  line-height: 1.5;
}

#straight {
  width: calc(100vw - 96px);
  height: clamp(1px, 0.09vw, 2px);
  background-color: rgba(255, 255, 255, 0.6);
  margin-top: clamp(24px, 4vh, 48px);
}

/* ===== BENEFITS ===== */
.benefits-wrapper {
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vh, 14px);
  margin-top: clamp(16px, 3vh, 24px);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 14px);
  padding: clamp(10px, 2vh, 14px) clamp(12px, 2.5vw, 16px);
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  font-family: "suisse", sans-serif;
  color: white;
}

.benefit-item i {
  font-size: clamp(18px, 3vw, 22px);
  background: white;
  color: #000;
  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(22px, 4vw, 26px);
  min-height: clamp(22px, 4vw, 26px);
  flex-shrink: 0;
}

.benefit-item p {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  width: calc(100vw - 96px);
  max-width: 100vw;
  background: transparent;
  border-radius: clamp(24px, 6vw, 100px);
  padding: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: clamp(16px, 3vh, 24px);
  flex-wrap: wrap;
}

.cta-button {
  background: #fff;
  color: #000;
  border: none;
  border-radius: clamp(30px, 5vw, 60px);
  padding: clamp(10px, 1.4vw, 12px) clamp(16px, 2.5vw, 28px);
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 16px);
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: 'Suisse Intl', sans-serif;
  flex-shrink: 0;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.arrow-circle {
  width: clamp(24px, 3vw, 32px);
  height: clamp(24px, 3vw, 32px);
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.cta-button:hover .arrow-circle {
  transform: rotate(45deg);
}

.arrow-circle i {
  color: #fff;
  font-size: clamp(12px, 1.6vw, 18px);
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 16px);
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(8px, 1.5vh, 12px) clamp(12px, 2.5vw, 20px) clamp(8px, 1.5vh, 12px) clamp(8px, 1.5vw, 12px);
  border-radius: 68px;
  backdrop-filter: blur(14px);
  flex-shrink: 1;
  min-width: 0;
}

.avatars-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.avatar {
  width: clamp(32px, 5vw, 48px);
  height: clamp(32px, 5vw, 48px);
  border-radius: 50%;
  overflow: hidden;
  margin-left: clamp(-10px, -1.5vw, -12px);
  transition: transform 0.3s ease, z-index 0.3s ease;
  position: relative;

  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 10;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-proof-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(12px, 1.8vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  font-family: "suisse", sans-serif;
  min-width: 0;
  word-wrap: break-word;
}

/* ===== MENU BUTTON ===== */
.menu-button {
  position: absolute;
  top: clamp(24px, 4vh, 40px);
  right: clamp(20px, 3vw, 48px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 4px 4px 4px clamp(12px, 2vw, 16px);
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 14px);
  cursor: pointer;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 40px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.menu-button:hover {
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.02);
}

.menu-button:active {
  transform: scale(0.98);
}

.menu-text {
  font-weight: 500;
  font-size: clamp(13px, 1.6vw, 15px);
  color: white;
  font-family: "suisse", sans-serif;
  white-space: nowrap;
}

.icon-circle {
  width: clamp(32px, 3vw, 34px);
  height: clamp(32px, 3vw, 34px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-circle i {
  font-size: clamp(16px, 1.8vw, 20px);
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-button:hover .icon-circle {
  background: rgba(255, 255, 255, 0.9);
}

.menu-button:hover .icon-circle i {
  color: #000;
}

.menu-button.active .icon-circle {
  background: rgba(255, 255, 255, 0.25);
}

.menu-button.active .icon-circle i {
  transform: rotate(180deg);
  color: #ffffff;
}

.menu-button.active .icon-circle i::before {
  content: "\eb99";
}

/* ===== NAV MENU ===== */
.nav-menu {
  position: absolute;
  top: clamp(75px, 11vh, 95px);
  right: clamp(20px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  max-width: calc(100% - clamp(40px, 6vw, 96px));
}

.nav-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 14px);
  width: 100%;
}

.nav-link {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 4px 4px 4px clamp(12px, 2vw, 16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.5vw, 12px);
  color: white;
  font-weight: 500;
  font-size: clamp(13px, 1.6vw, 15px);
  opacity: 0;
  transform: translateY(-10px);
  width: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "suisse", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  min-height: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(0) scale(1.02);
}



.nav-link:hover .icon-circle {
  background: rgba(255, 255, 255, 0.9);
}

.nav-link:hover .icon-circle i {
  color: #000;
}
.nav-menu.active .nav-link:nth-child(1) { transition-delay: 0.05s; }
.nav-menu.active .nav-link:nth-child(2) { transition-delay: 0.1s; }
.nav-menu.active .nav-link:nth-child(3) { transition-delay: 0.15s; }
.nav-menu.active .nav-link:nth-child(4) { transition-delay: 0.2s; }
.nav-menu.active .nav-link:nth-child(5) { transition-delay: 0.25s; }
.nav-menu.active .nav-link:nth-child(6) { transition-delay: 0.3s; }
.nav-menu.active .nav-link {
  opacity: 1;
  transform: translateY(0);
}

/* FIXED ACTIVE LINK (overrides hover) */
.nav-link.active {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(255, 255, 255, 1) !important;
  transform: scale(1.03) !important;
}

.nav-link.active span {
  color: #000 !important;
}

.nav-link.active .icon-circle {
  background: rgba(0, 0, 0, 0.85) !important;
}

.nav-link.active .icon-circle i {
  color: #fff !important;
}

/* ===== CTA WRAPPER (Bottom Right) ===== */
.cta-wrapper {
  position: absolute;
  bottom: clamp(24px, 5vh, 32px);
  right: clamp(20px, 4vw, 48px);
  text-align: right;
  max-width: min(420px, calc(100vw - 80px));
}

.company-description {
  font-weight: 400;
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: clamp(20px, 4vh, 32px);
  color: white;
  font-family: "suisse", sans-serif;
  line-height: 1.4;
}

.cta-buttons {
  display: flex;
  gap: clamp(8px, 2vw, 12px);
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cta-buttons .cta-button {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 8px);
  padding: 4px 4px 4px clamp(10px, 2vw, 12px);
  border-radius: 999px;
  font-weight: 600;
  font-size: clamp(13px, 2vw, 15px);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "suisse", sans-serif;
}

.cta-buttons .cta-button:hover {
  transform: translateY(-3px);
}

.cta-buttons .cta-button.primary {
  background: #fff;
  color: #0E0E0E;
}

.cta-buttons .cta-button.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(30px, 4vw, 36px);
  height: clamp(30px, 4vw, 36px);
  border-radius: 50%;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.cta-buttons .cta-button.primary .cta-icon {
  background: #0E0E0E;
}

.cta-buttons .cta-button.primary .cta-icon i {
  color: #fff;
}

.cta-buttons .cta-button.secondary .cta-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.cta-icon i {
  font-size: clamp(14px, 2vw, 16px);
  color: currentColor;
}

.cta-buttons .cta-button.primary:hover .cta-icon {
  background: #1a1a1a;
  transform: rotate(-270deg);
}

.cta-buttons .cta-button.secondary:hover .cta-icon {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(0deg);
}

.cta-buttons .cta-button:hover .cta-icon i {
  transform: rotate(45deg);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet Landscape */
@media (max-width: 1024px) {
  .hero-heading {
    font-size: clamp(36px, 7vw, 56px);
  }
  
  .benefits-wrapper {
    max-width: 550px;
  }
  
  .cta-wrapper {
    max-width: min(380px, calc(100vw - 60px));
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .video-section {
    min-height: 500px;
  }
  
  .hero-heading {
    font-size: clamp(32px, 8vw, 48px);
  }
  
  .hero-heading-wrapper {
    top: clamp(30px, 6vh, 50px);
    left: clamp(16px, 3vw, 30px);
    right: clamp(16px, 3vw, 30px);
  }
  
  .menu-button {
    top: clamp(30px, 6vh, 50px);
    right: clamp(16px, 3vw, 30px);
  }
  
  .nav-menu {
    top: clamp(80px, 12vh, 100px);
    right: clamp(16px, 3vw, 30px);
  }
  
  .cta-banner {
    flex-direction: column;
    align-items: stretch;
    padding: clamp(16px, 3vw, 24px);
    border-radius: clamp(20px, 5vw, 32px);
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
  }
  
  .social-proof {
    width: 100%;
    justify-content: center;
  }
  
  .cta-wrapper {
    bottom: clamp(20px, 4vh, 30px);
    right: clamp(16px, 3vw, 30px);
    left: clamp(16px, 3vw, 30px);
    text-align: center;
    max-width: 100%;
  }
  
  .cta-buttons {
    justify-content: center;
  }
}

/* Mobile Landscape */
@media (max-width: 640px) {
  .hero-heading {
    font-size: clamp(28px, 9vw, 40px);
  }
  
  .benefit-item {
    padding: 10px 12px;
  }
  
  .social-proof {
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
  }
  
  .social-proof-text {
    text-align: center;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .video-section {
    min-height: 600px;
    margin-bottom: 60px;
  }
  
  .hero-heading {
    font-size: clamp(24px, 10vw, 36px);
    line-height: 1.1;
  }
  
  .hero-heading-wrapper {
    top: 24px;
    left: 16px;
    right: 16px;
    max-width: 48vw;
  }
  
  .hero-subheading {
    font-size: 14px;
    margin-top: 12px;
  }
  
  #straight {
    margin-top: 20px;
  }
  
  .benefits-wrapper {
    margin-top: 16px;
    gap: 8px;
  }
  
  .benefit-item {
    gap: 10px;
    padding: 8px 10px;
  }
  
  .benefit-item i {
    min-width: 24px;
    min-height: 24px;
    font-size: 16px;
  }
  
  .benefit-item p {
    font-size: 13px;
  }
  
  .cta-banner {
    padding: 14px;
    gap: 12px;
  }
  
  .menu-button {
    top: 24px;
    right: 16px;
    padding: 4px;
  }
  
  .menu-text {
    display: none;
  }
  
  .nav-menu {
    top: 70px;
    right: 16px;
  }
  
  .nav-links {
    gap: 8px;
  }
  
  .avatar {
    width: 32px;
    height: 32px;
    margin-left: -8px;
  }
  
  .avatar:first-child {
    margin-left: 0;
  }
  
  .cta-wrapper {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
  
  .company-description {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .cta-buttons .cta-button {
    width: 100%;
    justify-content: center;
    padding: 8px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .hero-heading {
    font-size: 22px;
  }
  
  .benefit-item p {
    font-size: 12px;
  }
  
  .social-proof-text {
    font-size: 11px;
  }
  
  .company-description {
    font-size: 14px;
  }
}

/* Landscape Orientation Fix */
@media (max-height: 600px) and (orientation: landscape) {
  .video-section {
    min-height: 100vh;
  }
  
  .hero-heading-wrapper {
    top: 20px;
    max-width: 18vw;
  }
  
  .menu-button {
    top: 20px;
  }
  
  .cta-wrapper {
    bottom: 16px;
  }
  
  .benefits-wrapper {
    gap: 8px;
  }
}





    .contact-sections-wrapper {
            display: flex;
            flex-direction: row;
            gap: clamp(20px, 3vw, 40px);
            max-width: 1600px;
            margin: 0 auto;
            align-items: stretch;
        }

        /* ============================================
           LEFT SECTION - MAP & SOCIAL (48%)
           ============================================ */
        .cw-contact-section {
            flex: 0 1 48%;
            min-width: 0;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: clamp(16px, 3vw, 28px);
            padding: clamp(1.5rem, 3vw, 3rem);
            backdrop-filter: blur(10px);

            display: flex;
            flex-direction: column;
            gap: clamp(1rem, 2vw, 1.5rem);
        }

        /* CONTACT CARDS ROW */
        .cw-info-row {
            display: flex;
            flex-direction: row;
            gap: clamp(1rem, 2vw, 1.5rem);
        }

        .cw-info-card {
            flex: 1;
            padding: clamp(1rem, 2vw, 1.2rem);
            border-radius: clamp(12px, 2vw, 20px);
            background: rgba(255, 255, 255, 0.95);

            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.6rem;

            transition: 0.3s ease;
        }

        .cw-info-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
        }

        .cw-info-card i {
            font-size: clamp(2rem, 3.5vw, 2.5rem);
            color: #1a1a2e;
        }

        .cw-info-label {
            font-size: clamp(0.85rem, 1.3vw, 0.95rem);
            font-weight: 600;
            color: #1a1a2e;
        }

        .cw-info-value {
            font-size: clamp(0.8rem, 1.2vw, 0.9rem);
            color: #333;
            text-align: center;
        }

        /* MAP AREA */
.cw-map-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;          /* guarantees height */
    min-height: 260px;
    border-radius: clamp(12px, 2vw, 20px);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.cw-map-iframe {
    position: absolute;
    inset: 0;                      /* top:0 right:0 bottom:0 left:0 */
    width: 100%;
    height: 100%;
    border: 0;
}

        /* SOCIAL BUTTONS */
        .cw-social-links-row {
            display: flex;
            flex-wrap: wrap;
            gap: clamp(0.6rem, 1.2vw, 1rem);
            justify-content: center;
        }

        .cw-social-btn {
            display: flex;
            align-items: center;
            gap: 0.6rem;

            padding: clamp(0.6rem, 1.5vw, 0.85rem) clamp(1.2rem, 2.5vw, 2rem);
            border-radius: 50px;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(0.75rem, 1.1vw, 0.9rem);

            transition: 0.3s ease;
        }

        .cw-social-btn i {
            font-size: clamp(1.1rem, 1.5vw, 1.3rem);
        }

        .cw-social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        /* Social button colors */
        .cw-facebook-btn { background: #1877f2; }
        .cw-instagram-btn {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }
        .cw-twitter-btn { background: #000; }
        .cw-reddit-btn { background: #ff4500; }
        .cw-pinterest-btn { background: #e60023; }
        .cw-linkedin-btn { background: #0077b5; }

        /* ============================================
           RIGHT SECTION - FORM (48%)
           ============================================ */
        .contact-wrapper {
            flex: 0 1 48%;
            min-width: 0;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: clamp(16px, 3vw, 28px);
            padding: clamp(1.5rem, 3vw, 3rem);
            backdrop-filter: blur(12px);
        }

        .contact-container {
            display: flex;
            flex-direction: column;
            gap: clamp(1.5rem, 3vw, 2.5rem);
            height: 100%;
        }

        /* LEFT CONTENT */
        .contact-left {
            width: 100%;
        }

        .contact-heading {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: clamp(12px, 2vw, 18px);
            color: #fff;
        }

        .contact-description {
            font-size: clamp(0.85rem, 1.2vw, 1rem);
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-top: 2vh;
        }

        /* TOGGLE BUTTONS */
.toggle-wrapper {
    margin: clamp(15px, 2.5vw, 20px) 0;
}

.toggle-container {
    background: #1a1a1a;
    padding: 5px;
    border-radius: 40px;
    display: flex;
    width: 100%;
    max-width: 100%;
    gap: 12px;
}
.hidden {
    display: none !important;
}

/* Base Button */
.toggle-btn {
    flex: 1;
    padding: clamp(7px, 1.5vw, 10px) clamp(12px, 2.5vw, 20px);
    border: none;
    background: transparent;
    border-radius: 40px;
    font-size: clamp(0.75rem, 1.1vw, 0.9rem);
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;

    /* NEW: subtle border to show inactive area */
    border: 1px solid transparent;
}

/* Active Button - FIXED */
.toggle-btn.active {
    background: #ffffff;
    color: #000000;
    font-weight: 600;

    /* NEW: adds depth so you SEE the activation */
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
}

/* Inactive Hover */
.toggle-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
}


        /* FORM */
        .contact-right {
            width: 100%;
            flex: 1;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: clamp(12px, 2vw, 18px);
        }

        /* FORM ROW */
        .form-row {
            display: flex;
            gap: clamp(10px, 1.8vw, 16px);
        }

        .form-row input,
        .form-row select {
            flex: 1;
            min-width: 0;
        }

        /* FORM INPUTS & TEXTAREA */
        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: clamp(10px, 1.8vw, 14px) clamp(12px, 2vw, 16px);
            
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            border-radius: clamp(8px, 1.5vw, 12px);
            
            font-size: clamp(0.8rem, 1.1vw, 0.95rem);
            font-family: inherit;
            outline: none;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.35);
        }

        .form-textarea {
            min-height: clamp(80px, 12vw, 120px);
            resize: vertical;
            font-family: inherit;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        /* SELECT DROPDOWN ARROW */
        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='white' stroke-opacity='0.7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right clamp(10px, 1.8vw, 14px) center;
            padding-right: clamp(30px, 4.5vw, 40px);
            cursor: pointer;
        }

        .form-select option {
            background: #1a1a2e;
            color: #fff;
        }

        /* SUBMIT BUTTON */
        .submit-btn {
            padding: clamp(12px, 2vw, 16px) clamp(20px, 3.5vw, 32px);
            background: #fff;
            color: #000;
            border: none;
            border-radius: clamp(8px, 1.5vw, 12px);
            font-size: clamp(0.85rem, 1.2vw, 1rem);
            font-weight: 500;
            
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            
            align-self: flex-start;
        }

        .submit-btn svg {
            width: clamp(16px, 1.8vw, 18px);
            height: auto;
        }

        .submit-btn:hover {
            background: #eaeaea;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* ============================================
           RESPONSIVE BREAKPOINTS
           ============================================ */

        /* TABLET - STACK VERTICALLY */
        @media (max-width: 1024px) {
            .contact-sections-wrapper {
                flex-direction: column;
            }

            .cw-contact-section,
            .contact-wrapper {
                flex: 1 1 100%;
                width: 100%;
            }

            .toggle-container {
                max-width: 100%;
            }
        }

        /* SMALL TABLET */
        @media (max-width: 768px) {
            body {
                padding: clamp(15px, 3vw, 30px);
            }

            .cw-info-row {
                flex-direction: column;
            }

            .cw-map-wrapper {
                min-height: 250px;
            }

            .form-row {
                flex-direction: column;
            }

            .submit-btn {
                width: 100%;
            }

            .cw-social-btn span {
                display: none;
            }

            .cw-social-btn {
                padding: 0.7rem;
                width: calc(33.333% - 0.5rem);
                justify-content: center;
            }

            .cw-social-btn i {
                font-size: 1.4rem;
            }
        }

        /* MOBILE */
        @media (max-width: 480px) {
            body {
                padding: 12px;
            }

            .cw-contact-section,
            .contact-wrapper {
                padding: 1.2rem;
                border-radius: 16px;
            }

            .contact-heading {
                font-size: 1.3rem;
            }

            .cw-map-wrapper {
                min-height: 200px;
            }

            .form-input,
            .form-select,
            .form-textarea {
                padding: 10px 12px;
                font-size: 0.875rem;
            }

            .form-textarea {
                min-height: 80px;
            }

            .submit-btn {
                padding: 12px 20px;
                font-size: 0.85rem;
            }

            .cw-social-btn {
                width: calc(50% - 0.4rem);
            }
        }

        /* LARGE SCREENS OPTIMIZATION */
        @media (min-width: 1400px) {
            .contact-sections-wrapper {
                gap: 50px;
            }
        }

        /* Focus visible for keyboard navigation */
        .form-input:focus-visible,
        .form-select:focus-visible,
        .form-textarea:focus-visible,
        .submit-btn:focus-visible,
        .toggle-btn:focus-visible {
            outline: 2px solid rgba(255, 255, 255, 0.6);
            outline-offset: 2px;
        }

        /* Reduce motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }




/* ========================================
   EXPECT SECTION
   ======================================== */

.expect {
    width: 92%;
    height: 56vh;
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: clamp(8vh, 15vh, 32vh);
    margin-top: clamp(8vh, 12vh, 16vh);
    margin-left: 4%;
}

/* HEADING */
.expect-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
}

/* FLEX LAYOUT */
.expect-content {
    display: flex;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: stretch;
    flex-wrap: nowrap;
    height: 100%;
}

/* LEFT IMAGE */
.expect-image {
    flex: 1;
    height: 100%;
    overflow: hidden;
    border-radius: clamp(14px, 2vw, 22px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.expect-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT POINT LIST */
.expect-list {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    overflow-y: visible;
    padding-right: 4px;
}

/* INDIVIDUAL POINT CARD */
.expect-item {
    display: flex;
    gap: 1.2rem;
    padding: clamp(1rem, 2vw, 1.7rem);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: clamp(10px, 1.2vw, 16px);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    overflow: hidden;
    align-items: center;
}

.expect-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(8px);
}

/* ICON */
.expect-icon {
    flex-shrink: 0;
    width: clamp(38px, 4vw, 48px);
    height: clamp(38px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: clamp(6px, 1vw, 10px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.expect-icon i {
    color: #ffffff;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
}

/* TEXT */
.expect-text {
    font-size: clamp(0.9rem, 1.5vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVE: STACKED LAYOUT */
@media (max-width: 900px) {
    .expect {
        height: auto;
        margin-bottom: clamp(6vh, 10vh, 15vh);
        margin-top: clamp(6vh, 10vh, 12vh);
    }

    .expect-content {
        flex-direction: column;
        height: auto;
    }

    .expect-image {
        height: 260px;
    }

    .expect-list {
        height: auto;
    }

    .expect-item:hover {
        transform: translateX(3px);
    }
}

/* TABLET & SMALL SCREENS */
@media (max-width: 640px) {
    .expect {
        margin-bottom: clamp(5vh, 8vh, 10vh);
        margin-top: clamp(5vh, 8vh, 10vh);
        gap: 1.5rem;
    }

    .expect-image {
        height: 220px;
    }
}

/* VERY SMALL */
@media (max-width: 480px) {
    .expect {
        gap: 1.5rem;
        margin-bottom: 6vh;
        margin-top: 6vh;
    }

    .expect-item {
        gap: 0.9rem;
        padding: 0.9rem 1rem;
    }

    .expect-icon {
        width: 32px;
        height: 32px;
    }

    .expect-image {
        height: 200px;
    }
}

/* ========================================
   FOOTER SECTION
   ======================================== */
       
 .footer-wrapper {
    width: 92%;
    max-width: 1400px;
    margin-left: 4%;

    border: 1px solid #ffffff47;
    border-radius: 32px;
    padding: 60px 50px;
    background-color: rgba(20, 20, 20, 0.5);
    margin-top: 24vh;
    box-sizing: border-box;
}

/* Upper Section */
.footer-upper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    font-family: "grotesk";
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: "suisse";
}

.footer-column p,
.footer-column a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    font-family: "suisse";
    font-weight: 400;
}

.footer-column a:hover {
    color: #fff;
}

.contact-info p {
    margin-bottom: 12px;
}

.map-container {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Divider Line */
.footer-divider {
    width: 92%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto 40px auto;
}

/* Lower Section */
.footer-lower {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-section {
    flex: 1;
}

.newsletter-section h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: "suisse";
}

.newsletter-form {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    max-width: 450px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.95rem;
    padding: 10px 0;
    font-family: "suisse";
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 32px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: "suisse";
    flex-shrink: 0;
}

.newsletter-form button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.social-links-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.social-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: "suisse";
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "suisse";
}

.footer-links a:hover {
    color: #fff;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.4);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 10px;
    font-family: "suisse";
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Large Tablets & Small Desktops (1024px and below) */
@media (max-width: 1024px) {
    .footer-wrapper {
        padding: 50px 40px;
        border-radius: 24px;
        margin-top: clamp(6vh, 8vh, 10vh);
    }
    
    .footer-upper {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer-bottom-row {
        gap: 30px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .footer-wrapper {
        width: 90%;
        margin-left: 5%;
        padding: 40px 30px;
        border-radius: 20px;
        margin-top: -12vh;
    }
    
    .footer-upper {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .social-links-section {
        align-items: flex-start;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
    
    .footer-divider {
        width: 100%;
        margin: 0 0 30px 0;
    }
    
    .map-container {
        height: 160px;
    }
}

/* Mobile Landscape & Small Tablets (640px and below) */
@media (max-width: 640px) {
    .footer-wrapper {
        width: 88%;
        margin-left: 6%;
        padding: 35px 25px;
        border-radius: 16px;
        margin-top: 5vh;
    }
    
    .footer-upper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-column p,
    .footer-column a {
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 180px;
        border-radius: 10px;
    }
    
    .newsletter-section h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .newsletter-form {
        padding: 5px 5px 5px 20px;
    }
    
    .newsletter-form input {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    .newsletter-form button {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-links {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    .footer-lower {
        gap: 25px;
    }
    
    .footer-divider {
        margin-bottom: 25px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .footer-wrapper {
        width: 86%;
        margin-left: 7%;
        padding: 30px 20px;
        border-radius: 14px;
        margin-top: 4vh;
    }
    
    .footer-upper {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-brand h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .map-container {
        height: 160px;
        border-radius: 10px;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 15px;
        border-radius: 12px;
    }
    
    .newsletter-form input {
        padding: 12px 0;
        text-align: center;
    }
    
    .newsletter-form button {
        width: 100%;
        padding: 14px 24px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .footer-links span {
        display: none;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .footer-wrapper {
        width: 84%;
        margin-left: 8%;
        padding: 25px 15px;
        border-radius: 12px;
        margin-top: 4vh;
    }
    
    .footer-column h3 {
        font-size: 0.95rem;
    }
    
    .footer-column p,
    .footer-column a {
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .newsletter-section h3 {
        font-size: 0.95rem;
    }
    
    .map-container {
        height: 140px;
        border-radius: 8px;
    }
}



