
/* ================== 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;
}

/* ================== LENIS SMOOTH SCROLL ================== */
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: 100vh;
  position: relative;
  overflow: hidden;
  margin-bottom: 12vh;
}

.fullscreen-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fullscreen-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* dark overlay */
}

.fullscreen-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills viewport like the video */
    object-position: center;
    display: block;
}


/* ===== HERO CONTENT ===== */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.hero-heading-wrapper {
  position: absolute;
  top: 128px;
  left: 48px;
}

.hero-heading {
  font-weight: 500;
  font-size: 76px;
  line-height: 0.95;
  color: white;
  text-transform: capitalize;
  margin-bottom: 32px;
}

.hero-subheading {
  font-weight: 200;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
   margin-top: 164px;
}

#straight {
width: 92vw;
height: 0.09vw;
background-color: rgba(255, 255, 255, 0.6);
margin-top: 24px;
}


.cta-banner {
            width: 100%;
            width: 92vw;
            background: rgba(255, 255, 255, 0.08);
            border-radius: clamp(50px, 8vw, 100px);
            padding: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 32px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: clamp(20px, 3vw, 40px);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 24px;
        }

        /* Left Section - CTA Button */
        .cta-button {
            background: #fff;
            color: #000;
            border: none;
            border-radius: clamp(40px, 6vw, 60px);
            padding: clamp(10px, 1.6vw, 14px) clamp(24px, 3.5vw, 36px);
            font-size: clamp(14px, 1.6vw, 17px);
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: clamp(10px, 1.5vw, 16px);
            transition: all 0.3s ease;
            white-space: nowrap;
            font-family: 'Suisse Intl', sans-serif;
        text-decoration: none;
        }

    a {
          text-decoration: none;
        }
       

        .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;
        }

  

        .arrow-circle i {
            color: #fff;
            font-size: clamp(14px, 1.8vw, 18px);
        }

        /* Right Section - Social Proof */
        .social-proof {
            display: flex;
            align-items: center;
            gap: clamp(12px, 2vw, 16px);
        }

        .avatars-group {
            display: flex;
            align-items: center;
        }

        .avatar {
            width: clamp(36px, 5vw, 48px);
            height: clamp(36px, 5vw, 48px);
            border-radius: 50%;
            
            overflow: hidden;
            margin-left: clamp(-8px, -1.2vw, -12px);
            transition: transform 0.3s ease, z-index 0.3s ease;
            position: relative;
        }

        .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(13px, 1.5vw, 16px);
            font-weight: 400;
            line-height: 1.4;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .cta-banner {
                flex-direction: column;
                text-align: center;
                padding: clamp(16px, 4vw, 24px);
                border-radius: clamp(32px, 6vw, 40px);
            }

            .cta-button {
                width: 100%;
                justify-content: center;
            }

            .social-proof {
                flex-direction: column;
                gap: 12px;
            }

            .social-proof-text {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .avatar {
                width: 32px;
                height: 32px;
                margin-left: -10px;
            }

            .avatar:first-child {
                margin-left: 0;
            }
        }
.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;
}


/* ===== STATS ===== */
.stats-wrapper {
  position: absolute;
  bottom: 32px;
  left: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.stat-item {
  display: flex;
  gap: 24px;
}
.stat-number {
  font-weight: 700;
  font-size: 54px;
  min-width: 100px;
}
.stat-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 5px;
}
.stat-title {
  font-weight: 600;
  font-size: 18px;
}
.stat-description {
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 280px;
  font-family: "Suisse";
}

.stat-description span {
  font-weight: 400;
  font-size: 14px;
    font-family: "Suisse";
  color: rgba(255, 255, 255, 0.7);
 
}

/* ===== CTA ===== */
.cta-wrapper {
  position: absolute;
  bottom: 32px;
  right: 48px;
  text-align: right;
  max-width: 420px;
}
.company-description {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  text-decoration: none;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;


}

.cta-button:hover {
  transform: translateY(-3px);
}

.cta-button.primary {
  background: #fff;
  color: #0E0E0E;
}

.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: 36px;
  height: 36px;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.cta-button.primary .cta-icon {
  background: #0E0E0E;
}

.cta-button.primary .cta-icon i {
  color: #fff;
}

.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: 16px;
  color: currentColor;
}

/* Hover effects */
.cta-button.primary:hover .cta-icon {
  background: #1a1a1a;
  transform: rotate(-270deg);
}

.cta-button.secondary:hover .cta-icon {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(0deg);
}

/* Arrow rotation */
.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;
  }

    #straight {
   width: 94vw;
height: 0.09vw;
background-color: rgba(255, 255, 255, 0.6);
margin-top: 24px;
  }
}

/* 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, 9vw, 32px);
    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 {
   width: 88vw;
height: 0.09vw;
background-color: rgba(255, 255, 255, 0.6);
margin-top: 24px;
  }
  
  .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 {
    width: calc(100vw - 42px);
    padding: 12px 14px;
    gap: 10px;
    border-radius: 20px;
    flex-direction: column;
  }
  
  .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: 28px;
  }
  
  .benefit-item p {
    font-size: 12px;
  }
  
  .social-proof-text {
    font-size: 11px;
  }
  
  .company-description {
    font-size: 14px;
  }

    #straight {
   width: 88vw;
height: 0.09vw;
background-color: rgba(255, 255, 255, 0.6);
margin-top: 24px;
  }
}


/* 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;
  }

    .cta-banner {
    width: calc(100vw - 32px);
    padding: 12px 14px;
    gap: 10px;
    border-radius: 20px;
    flex-direction: column;
  }
  
}







    .contact-sections-wrapper {
            display: flex;
            flex-direction: row;
            gap: clamp(20px, 3vw, 40px);
            max-width: 1600px;
            margin: 0 auto;
            align-items: stretch;
        }
        
        .mission-section {
            width: 98%;
            height: 80vh;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: clamp(16px, 3vw, 28px);
            display: flex;
            flex-direction: column;
            color: #fff;
            overflow: hidden;
            padding-top: 4%;
                margin-left: 1%;
        }

        .heading-container {
            width: 100%;
            height: 36%;
            padding: 6%;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            flex-direction: column;
        }

        .heading-container h1 {
            font-size: clamp(16px, 3vw, 40px);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            max-width: 80%;
        }

        .paragraph-container {
            width: 88%;
            height: 18%;
            padding: 0% 6% 6% 6%;
        
        }

        .paragraph-container p {
            font-size: clamp(14px, 1.8vw, 20px);
            font-weight: 400;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.7);
            max-width: 100%;
            margin-top: 2vw;

        }

        .stats-container {
            width: 100%;
            height: 46%;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 6%;
            gap: clamp(20px, 3vw, 40px);
        }

        .stat-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: clamp(12px, 1.5vw, 20px);
        }

        .stat-number {
            font-size: clamp(24px, 5vw, 64px);
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .stat-description {
            font-size: clamp(12px, 1.4vw, 16px);
            font-weight: 400;
            line-height: 1.4;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .mission-section {
                height: auto;
                min-height: 80vh;
            }

            .heading-container {
                height: auto;
                padding: 8% 8% 4% 8%;
            }

            .paragraph-container {
                height: auto;
                padding: 0 8% 6% 8%;
            }

            .stats-container {
                height: auto;
                padding: 0 8% 8% 8%;
                gap: clamp(24px, 4vw, 32px);
            }
        }

         .values-section {
            width: 98%;
            height: auto;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: clamp(16px, 3vw, 28px);
            padding: 2%;
            display: flex;
            flex-direction: column;
            color: #fff;
            overflow: visible;
                margin-left: 1%;
            margin-top: 12vh;
        }

        /* Header Section */
        .header-section {
            width: 100%;
            height: 28%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: clamp(12px, 1.5vw, 20px);
        }

        .header-section h1 {
            font-size: clamp(28px, 4.5vw, 56px);
            font-weight: 700;
            line-height: 0.9;
            letter-spacing: -0.02em;
        }

        .header-section h2 {
            font-size: clamp(24px, 3.5vw, 44px);
            font-weight: 400;
           
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: -0.01em;
        }

        .header-section p {
            font-size: clamp(14px, 1.6vw, 18px);
            font-weight: 400;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.7);
            margin-top: clamp(12px, 1.2vw, 16px);
        }

        /* Content Section */
        .content-section {
            width: 100%;
            height: 72%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: clamp(16px, 2vw, 24px);
            margin-top: 6vh;
        }

        /* Value Cards */
        .value-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 6%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            gap: clamp(12px, 1.5vw, 20px);
        }

        .icon-box {
            width: clamp(48px, 5vw, 64px);
            height: clamp(48px, 5vw, 64px);
            background: #fff;
            border-radius: clamp(12px, 1.5vw, 16px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-box i {
            font-size: clamp(24px, 2.5vw, 32px);
            color: #000;
        }

        .value-card h3 {
            font-size: clamp(16px, 1.8vw, 22px);
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        .value-card p {
            font-size: clamp(12px, 1.3vw, 15px);
            font-weight: 400;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Image positioning */
        .value-card:nth-child(1) {
            grid-column: 1;
            grid-row: 1;
        }

        .value-card:nth-child(2) {
            grid-column: 1;
            grid-row: 2;
        }

        .image-container {
            grid-column: 2;
            grid-row: 1 / 3;
            border-radius: 28px;
            overflow: hidden;
            position: relative;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .value-card:nth-child(4) {
            grid-column: 3;
            grid-row: 1;
        }

        .value-card:nth-child(5) {
            grid-column: 3;
            grid-row: 2;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .values-section {
                height: auto;
                min-height: 100vh;
            }

            .header-section {
                height: auto;
                padding-bottom: 4%;
            }

            .content-section {
                height: auto;
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }

            .value-card:nth-child(1) {
                grid-column: 1;
                grid-row: 1;
            }

            .value-card:nth-child(2) {
                grid-column: 1;
                grid-row: 3;
            }

            .image-container {
                grid-column: 2;
                grid-row: 1 / 3;
            }

            .value-card:nth-child(4) {
                grid-column: 2;
                grid-row: 3;
            }

            .value-card:nth-child(5) {
                grid-column: 1 / 3;
                grid-row: 4;
            }
        }

        @media (max-width: 768px) {
            .content-section {
                grid-template-columns: 1fr;
                gap: clamp(12px, 3vw, 20px);
            }

            .value-card:nth-child(1),
            .value-card:nth-child(2),
            .image-container,
            .value-card:nth-child(4),
            .value-card:nth-child(5) {
                grid-column: 1;
                grid-row: auto;
            }

            .image-container {
                height: 60vh;
            }
        }

        @media (max-width: 480px) {
            .values-section {
                padding: 8%;
            }

            .value-card {
                padding: 8%;
            }
        }

        @media (max-width: 768px) {
            .stats-container {
                flex-wrap: wrap;
            }

            .stat-item {
                flex: 1 1 45%;
                min-width: 45%;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 2vh 2vw;
            }

            .mission-section {
                width: 96%;
            }

            .heading-container,
            .paragraph-container,
            .stats-container {
                padding-left: 8%;
                padding-right: 8%;
            }

            .stat-item {
                flex: 1 1 100%;
                min-width: 100%;
            }
        }
.story-container {
    width: 98%;
    height: 88vh;
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: clamp(16px, 3vw, 28px);
    padding: 2%;
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-top: 12vh;
    margin-left: 1%;
}

/* =====================
   LEFT TEXT PANEL
   ===================== */
.story-text-panel {
    width: 56%;
    position: relative;
    padding: clamp(20px, 4%, 60px);
    display: flex;
    align-items: center;
}

.story-slide-text {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.story-slide-text.active {
    opacity: 1;
    position: relative;
}

.story-slide-title {
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 700;
    margin-bottom: clamp(20px, 3vh, 40px);
    line-height: 1.1;
}

.story-slide-description {
    font-size: clamp(14px, 1.6vw, 20px);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 90%;
}

/* =====================
   RIGHT IMAGE PANEL
   ===================== */
.story-image-panel {
    width: 44%;
    position: relative;
    border-radius: clamp(12px, 2vw, 24px);
    overflow: hidden;
}

.story-slide-image {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.story-slide-image.active {
    opacity: 1;
}

.story-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================
   PROGRESS INDICATORS & CONTROLS
   ===================== */
.story-progress-indicator {
    position: absolute;
    bottom: 18%;
    left: 5.8%;
    display: flex;
    gap: 12px;
    z-index: 20;
}

.story-dot {
    width: clamp(8px, 1vw, 12px);
    height: clamp(8px, 1vw, 12px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-dot.active {
    background: #fff;
    width: clamp(24px, 3vw, 40px);
    border-radius: clamp(5px, 1vw, 12px);
}

/* =====================
   NAVIGATION BUTTONS
   ===================== */
.story-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.story-controls button {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0;
    color: transparent;
    padding: 0;
}

.story-controls button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.story-controls button:active {
    transform: scale(0.95);
}

.story-controls button::before {
    font-family: 'remixicon' !important;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#story-prev::before {
    content: '\ea64'; /* ri-arrow-left-line */
}

#story-next::before {
    content: '\ea6e'; /* ri-arrow-right-line */
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 1024px) {
    .story-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .story-text-panel,
    .story-image-panel {
        width: 100%;
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .story-progress-indicator {
        left: 50%;
        transform: translateX(-50%);
        bottom: 4%;
    }
    
    .story-controls button {
        width: 44px;
        height: 44px;
    }
}
        .crew-wrapper {
            width: 98%;
            height: 120vh;
            display: flex;
            flex-direction: column;
            color: #fff;
            margin-top: 12vh;
            margin-left: 1%;
        }

        /* Header Section */
        .crew-header {
            width: 100%;
            height: 16%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: 0 clamp(20px, 3%, 40px);
        }

        .crew-title-box h1 {
            font-size: clamp(28px, 4.5vw, 64px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .crew-title-box h1 .fade-text {
            color: rgba(255, 255, 255, 0.3);
        }

        .crew-title-box h1 .main-text {
            color: #fff;
        }

        .crew-summary {
            max-width: clamp(250px, 30%, 400px);
        }

        .crew-summary p {
            font-size: clamp(13px, 1.4vw, 17px);
            font-weight: 400;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Team Grid */
        .member-grid {
            width: 100%;
            height: 84%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: clamp(24px, 2.8vw, 32px);
            padding: clamp(16px, 2%, 32px) clamp(20px, 3%, 40px);
            margin-top: 6vh;
        }

        /* Member Card */
        .member-card {
            position: relative;
            border-radius: clamp(16px, 2vw, 24px);
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .member-img {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }

        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.4s ease;
        }

        .member-info-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: clamp(20px, 3vw, 32px);
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            z-index: 2;
            transition: opacity 0.4s ease;
        }

        .member-name {
            font-size: clamp(18px, 2vw, 26px);
            font-weight: 700;
            margin-bottom: 4px;
            color: #fff;
        }

        .member-role {
            font-size: clamp(12px, 1.2vw, 15px);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Hover Content */
        .member-hover-box {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            padding: clamp(24px, 3.5vw, 40px);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            opacity: 0;
            z-index: 3;
            transition: opacity 0.4s ease;
        }

        .member-card:hover .member-hover-box {
            opacity: 1;
        }

        .member-card:hover .member-info-overlay {
            opacity: 0;
        }

        .hover-text {
            font-size: clamp(13px, 1.4vw, 16px);
            line-height: 1.6;
            color: #000;
        }

        .hover-meta {
            margin-top: auto;
        }

        .hover-meta-name {
            font-size: clamp(18px, 2vw, 26px);
            font-weight: 700;
            margin-bottom: 4px;
            color: #000;
        }

        .hover-meta-role {
            font-size: clamp(12px, 1.2vw, 15px);
            color: rgba(0, 0, 0, 0.6);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .crew-wrapper {
                height: auto;
                min-height: 100vh;
            }

            .crew-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                height: auto;
                padding: clamp(20px, 4%, 40px);
            }

            .crew-summary {
                max-width: 100%;
            }

            .member-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 1fr);
                height: auto;
                min-height: 70vh;
            }
        }

        @media (max-width: 768px) {
            .member-grid {
                grid-template-columns: 1fr;
                gap: clamp(12px, 3vw, 16px);
            }

            .member-card {
                min-height: 400px;
            }
        }

        @media (max-width: 480px) {
            .crew-header {
                padding: clamp(16px, 5%, 24px);
            }

            .member-grid {
                padding: clamp(12px, 4%, 20px);
            }

            .member-card {
                min-height: 350px;
            }
        }
            
 .contact-wrapper {
    width: min(90%, 1400px);
    margin:  16vh auto 12vh auto;
    
    background: hsla(0, 0%, 100%, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: clamp(16px, 3vw, 28px);
    
    padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px);
    backdrop-filter: blur(12px);
}

/* FLEX CONTAINER */
.contact-container {
    display: flex;
    gap: clamp(30px, 5vw, 60px);
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ============================================
   LEFT SIDE - CONTENT
   ============================================ */
.contact-left {
    flex: 1 1 min(100%, 400px);
    max-width: 520px;
}

.contact-heading {
    font-size: clamp(1.75rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: clamp(15px, 2vw, 20px);
}

.contact-description {
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 18vh;
}

.toggle-note {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: clamp(10px, 1.5vw, 16px);
    padding-left: 4px;
}

/* ============================================
   TOGGLE BUTTONS
   ============================================ */
.toggle-wrapper {
    margin: clamp(20px, 3vw, 25px) 0;
}

.toggle-container {
    background: #1a1a1a;
    padding: 5px;
    border-radius: 40px;
    display: inline-flex;
    width: 100%;
    max-width: 320px;
    gap: 12px;
}

.toggle-btn {
    flex: 1;
    padding: clamp(8px, 1.5vw, 10px) clamp(16px, 3vw, 24px);
    border: none;
    background: transparent;
    border-radius: 56px;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.toggle-btn.active {
    background: #fff;
    color: #000;
}

.toggle-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   RIGHT SIDE - FORM
   ============================================ */
.contact-right {
    flex: 1 1 min(100%, 420px);
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 2.5vw, 20px);
}

/* FORM ROW */
.form-row {
    display: flex;
    gap: clamp(12px, 2vw, 20px);
    flex-wrap: wrap;
}

.form-row input,
.form-row select {
    flex: 1 1 min(100%, 200px);
}

/* ============================================
   FORM INPUTS & TEXTAREA
   ============================================ */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: clamp(12px, 2vw, 16px) clamp(14px, 2.5vw, 18px);
    
    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.9rem, 1.2vw, 1rem);
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

#company-field {
    opacity: 1;
    max-height: 100px;
    transition: opacity 0.25s ease, max-height 0.25s ease;
}

#company-field.hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}


.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(100px, 15vw, 130px);
    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;
    width: 100%;
    padding: clamp(12px, 1.2vw, 16px) clamp(14px, 1.8vw, 20px);
    padding-right: clamp(40px, 5vw, 48px);

    font-family: 'Grotesk', sans-serif;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;

    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(14px, 2vw, 18px) center;

    cursor: pointer;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

/* Better hover + focus */
.form-select:hover,
.form-select:focus {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

/* STYLE FOR DROPDOWN OPTIONS */
.form-select option {
    background-color: #1a1a1a; /* dark dropdown background */
    color: white;
    padding: 12px;       /* ensures readable spacing */
    font-size: 15px;     /* consistent readability */
}


/* SUBMIT BUTTON */
.submit-btn {
    padding: clamp(14px, 2.5vw, 18px) clamp(24px, 4vw, 40px);
    background: #fff;
    color: #000;
    border: none;
    border-radius: clamp(8px, 1.5vw, 12px);
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    font-weight: 500;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    align-self: flex-start;
}

.submit-btn svg {
    width: clamp(18px, 2vw, 20px);
    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 & BELOW */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: clamp(35px, 5vw, 45px);
    }
    
    .contact-left {
        max-width: 100%;
    }
    
    .toggle-container {
        max-width: 100%;
    }
}

/* MOBILE LANDSCAPE & PORTRAIT */
@media (max-width: 600px) {
    .contact-wrapper {
        padding: clamp(25px, 5vw, 40px) clamp(16px, 4vw, 25px);
        margin-bottom: 8vh;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row input,
    .form-row select {
        flex: 1 1 100%;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .toggle-btn {
        font-size: 0.85rem;
    }
}

/* VERY SMALL MOBILE */
@media (max-width: 400px) {
    .contact-wrapper {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .contact-heading {
        font-size: 1.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 10px 12px;
        font-size: 0.875rem;
    }
    
    .form-textarea {
        min-height: 90px;
    }
    
    .submit-btn {
        padding: 12px 20px;
    }
}

/* LARGE SCREENS - OPTIMIZATION */
@media (min-width: 1400px) {
    .contact-container {
        gap: 80px;
    }
    
    .contact-left {
        flex: 1 1 480px;
    }
    
    .contact-right {
        flex: 1 1 500px;
    }
}

/* ============================================
   ACCESSIBILITY & DARK MODE SUPPORT
   ============================================ */

/* 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;
    }
}
        
.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: 14vh;
    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;
    }
}





