/* ================== 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;
  min-height: 100vh;
  padding: 0;
  color: white;
}

/* ================== LENIS SMOOTH SCROLL ================== */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ================== HERO / VIDEO ================== */
/* ===== BASE VIDEO SECTION ===== */
.video-section {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.video-section img

 {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
   object-fit: cover;
}

.fullscreen-video-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.fullscreen-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  padding: clamp(20px, 3vw, 48px);
  display: flex;
  flex-direction: column;
}

.hero-heading-wrapper {
  position: absolute;
  top: clamp(24px, 4vh, 32px);
  left: clamp(20px, 3vw, 48px);
  right: clamp(20px, 3vw, 48px);
  max-width: 90%;
  z-index: 11;
}

.hero-heading {
  font-weight: 500;
  font-size: clamp(36px, 8vw, 120px);
  line-height: 0.95;
  color: white;
  text-transform: capitalize;
  margin: 0 0 clamp(12px, 2vh, 20px) 0;
  word-wrap: break-word;
  hyphens: auto;
}

.hero-subheading {
  font-weight: 400;
  font-size: clamp(16px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin: 0;
}

/* ===== 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;
}






/* ===== STATS ===== */
.stats-wrapper {
  position: absolute;
  bottom: clamp(24px, 4vh, 32px);
  left: clamp(20px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 40px);
  max-width: clamp(280px, 50vw, 600px);
  z-index: 11;
}

.stat-item {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  align-items: flex-start;
}

.stat-number {
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1;
  color: white;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: clamp(70px, 10vw, 100px);
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vh, 8px);
  padding-top: clamp(2px, 0.5vh, 5px);
}

.stat-title {
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 18px);
  color: white;
  line-height: 1.3;
}

.stat-description {
  font-weight: 400;
  font-size: clamp(12px, 1.2vw, 14px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  max-width: clamp(220px, 30vw, 280px);
}

/* ===== CTA ===== */
.cta-wrapper {
  position: absolute;
  bottom: clamp(24px, 4vh, 32px);
  right: clamp(20px, 3vw, 48px);
  text-align: right;
  max-width: clamp(300px, 40vw, 420px);
  z-index: 11;
}

.company-description {
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  color: white;
  line-height: 1.4;
  margin: 0 0 clamp(20px, 3vh, 32px) 0;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vh, 12px);
  justify-content: flex-end;
  align-items: flex-end;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  padding: 4px 4px 4px clamp(14px, 1.8vw, 16px);
  border-radius: 999px;
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 15px);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  font-family: "suisse", sans-serif;
}

.cta-button:hover {
  transform: translateY(-3px);
}

.cta-button:active {
  transform: translateY(-1px);
}

.cta-button.primary {
  background: #fff;
  color: #0E0E0E;
  border: 1px solid #fff;
}

.cta-button.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.cta-label {
  flex: 1;
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(32px, 3vw, 36px);
  height: clamp(32px, 3vw, 36px);
  border-radius: 50%;
  transform: rotate(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.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: clamp(14px, 1.5vw, 16px);
  color: currentColor;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects */
.cta-button.primary:hover {
  background: #f5f5f5;
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-button.primary:hover .cta-icon {
  background: #1a1a1a;
  transform: rotate(-60deg);
}

.cta-button.secondary:hover .cta-icon {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(-60deg);
}



/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Tablets and Below (1200px) */
@media (max-width: 1200px) {
  .hero-heading {
    font-size: clamp(32px, 7vw, 96px);
  }
  
  .stats-wrapper {
    max-width: clamp(280px, 45vw, 500px);
  }
  
  .cta-wrapper {
    max-width: clamp(280px, 45vw, 380px);
  }

    .menu-button {
    top: clamp(32px, 5vh, 44px);
    right: clamp(28px, 3.5vw, 40px);
  }
  
  .nav-menu {
    top: clamp(84px, 10vh, 94px);
    right: clamp(28px, 3.5vw, 40px);
  }
}

/* Medium Tablets (1024px) */
@media (max-width: 1024px) {
  .video-section {
    min-height: 550px;
  }
  
  .hero-heading {
    font-size: clamp(40px, 9vw, 108px);
  }
  
  .stat-number {
    font-size: clamp(32px, 5vw, 60px);
    min-width: clamp(60px, 9vw, 90px);
  }
  
  .stat-description {
    max-width: clamp(200px, 28vw, 250px);
  }
  
  .company-description {
    font-size: clamp(16px, 2.2vw, 22px);
  }

    .menu-button {
    top: 28px;
    right: 24px;
  }
  
  .nav-menu {
    top: 78px;
    right: 24px;
  }
  
}

@media (min-width: 768px) and (max-width: 899px) {
 .menu-button {
    top: 24px;
    right: 20px;
    padding: 4px 4px 4px 14px;
  }
  
  .menu-text {
    font-size: 14px;
  }
  
  .nav-menu {
    top: 82px;
    right: 20px;
    max-width: calc(100% - 40px);
  }
  
  .nav-links {
    gap: 10px;
  }
}

/* Tablets (768px) - Switch to Stacked Layout */
@media (max-width: 768px) {
  .video-section {
    min-height: 700px;
  }
  
  .hero-content {
    padding: clamp(16px, 3vw, 30px);
  }
  
  .hero-heading-wrapper {
    top: clamp(20px, 3vh, 40px);
    left: clamp(16px, 3vw, 30px);
    right: clamp(16px, 3vw, 30px);
    max-width: calc(100% - clamp(32px, 6vw, 60px));
  }
  
  .hero-heading {
    font-size: clamp(36px, 8vw, 60px);
  }
  
  .hero-subheading {
    font-size: clamp(14px, 2.5vw, 20px);
  }
  
.menu-button {
    top: 22px;
    right: 18px;
    padding: 4px 4px 4px 12px;
    min-height: 38px;
  }
  
  .menu-text {
    font-size: 13.5px;
  }
  
  .icon-circle {
    width: 30px;
    height: 30px;
  }
  
  .icon-circle i {
    font-size: 16px;
  }
  
  .nav-menu {
    top: 68px;
    right: 18px;
    max-width: calc(100% - 36px);
  }
  
  .nav-links {
    gap: 9px;
  }
  
  .nav-link {
    padding: 4px 4px 4px 12px;
    min-height: 38px;
    font-size: 13.5px;
  }
  /* Stack stats above CTA */
  .stats-wrapper {
    bottom: auto;
    top: auto;
    left: clamp(16px, 3vw, 30px);
    right: clamp(16px, 3vw, 30px);
    max-width: 100%;
    position: absolute;
    bottom: clamp(240px, 32vh, 280px);
  }
  
  .cta-wrapper {
    bottom: clamp(20px, 4vh, 40px);
    right: clamp(16px, 3vw, 30px);
    left: clamp(16px, 3vw, 30px);
    text-align: left;
    max-width: 100%;
  }
  
  .company-description {
    font-size: clamp(16px, 2.8vw, 22px);
    margin-bottom: clamp(16px, 2vh, 24px);
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: clamp(8px, 1.5vw, 12px);
  }
  
  .cta-button {
    flex: 1;
    justify-content: center;
    max-width: 50%;
  }
}

/* Mobile Landscape and Small Tablets (640px) */
@media (max-width: 640px) {
  .video-section {
    min-height: 650px;
  }
  
  .hero-heading {
    font-size: clamp(32px, 9vw, 52px);
    margin-bottom: clamp(10px, 2vh, 16px);
  }
  
  .hero-subheading {
    font-size: clamp(13px, 3vw, 18px);
  }
  
  /* Adjust stats for mobile */
  .stats-wrapper {
    gap: clamp(16px, 2.5vh, 24px);
    bottom: clamp(220px, 30vh, 260px);
  }
  
  .stat-item {
    gap: clamp(12px, 2.5vw, 16px);
  }
  
  .stat-number {
    font-size: clamp(28px, 6vw, 40px);
    min-width: clamp(60px, 12vw, 80px);
  }
  
  .stat-title {
    font-size: clamp(13px, 2vw, 15px);
  }
  
  .stat-description {
    font-size: clamp(11px, 1.8vw, 13px);
    max-width: 100%;
  }
  
  .company-description {
    font-size: clamp(15px, 3.2vw, 20px);
  }
  
  .cta-button {
    font-size: clamp(13px, 2vw, 14px);
    padding: 4px 4px 4px clamp(12px, 2vw, 14px);
  }

  
  .menu-button {
    top: 20px;
    right: 16px;
    padding: 4px 4px 4px 4px;
    min-height: 36px;
  }
  
  .menu-text {
    font-size: 13px;
  }
  
  .icon-circle {
    width: 28px;
    height: 28px;
  }
  
  .icon-circle i {
    font-size: 15px;
  }
  
  .nav-menu {
    top: 64px;
    right: 16px;
    max-width: calc(100% - 32px);
  }
  
  .nav-links {
    gap: 8px;
  }
  
  .nav-link {
    padding: 4px 4px 4px 11px;
    min-height: 36px;
    font-size: 13px;
  }
}

/* Standard Mobile (480px) */
@media (max-width: 480px) {
  .video-section {
    min-height: 600px;
  }
  
  .hero-heading-wrapper {
    top: 16px;
    left: 16px;
    right: 16px;
  }
  
  .hero-heading {
    font-size: clamp(28px, 8.5vw, 44px);
    line-height: 1;
  }
  
  .hero-subheading {
    font-size: clamp(12px, 3.5vw, 16px);
  }
.menu-button {
    top: 24px;
    right: 16px;

  }
  
  .menu-text {
    display: none;
  }
  
  .nav-menu {
    top: 70px;
    right: 16px;
  }
  
  .nav-links {
    gap: 8px;
  }
  

  .icon-circle {
    width: 28px;
    height: 28px;
  }

  .icon-circle i {
    font-size: 14px;
  }

  
  

  
  .stats-wrapper {
    left: 16px;
    right: 16px;
    gap: clamp(12px, 2vh, 20px);
    bottom: clamp(200px, 28vh, 240px);
  }
  

  



  .nav-links {
    gap: 8px;
  }
  .stat-item {
    flex-direction: column;
    gap: clamp(8px, 1.5vh, 12px);
  }
  
  .stat-number {
    font-size: clamp(24px, 7vw, 36px);
    min-width: auto;
  }
  
  .stat-title {
    font-size: 13px;
  }
  
  .stat-description {
    font-size: 11px;
  }
  
  .cta-wrapper {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
  
  .company-description {
    font-size: clamp(14px, 3.8vw, 18px);
    margin-bottom: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .cta-button {
    max-width: 100%;
    font-size: 13px;
    min-height: 44px;
  }
  
  .icon-circle {
    width: 32px;
    height: 32px;
  }
  
  .icon-circle i {
    font-size: 16px;
  }
  
  .cta-icon {
    width: 32px;
    height: 32px;
  }
  
  .cta-icon i {
    font-size: 14px;
  }
}

/* Extra Small Devices (375px) */
@media (max-width: 375px) {
  .video-section {
    min-height: 550px;
  }
  
  .hero-heading-wrapper {
    top: 12px;
    left: 12px;
    right: 12px;
  }
  
  .hero-heading {
    font-size: clamp(24px, 7.5vw, 38px);
  }
  
  .hero-subheading {
    font-size: 12px;
  }
  

  
 
  
  .stats-wrapper {
    left: 12px;
    right: 12px;
    gap: 12px;
    bottom: clamp(180px, 26vh, 220px);
  }
  
  .stat-number {
    font-size: clamp(22px, 6.5vw, 32px);
  }
  
  .stat-title {
    font-size: 12px;
  }
  
  .stat-description {
    font-size: 10px;
  }
  
  .cta-wrapper {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
  
  .company-description {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .cta-button {
    font-size: 12px;
    padding: 3px 3px 3px 10px;
  }
}

/* Landscape Mobile Optimization (Short Height) */
@media (max-height: 600px) and (orientation: landscape) {
  .video-section {
    min-height: 100vh;
  }
  
  .hero-heading-wrapper {
    top: clamp(12px, 2vh, 20px);
  }
  
  .hero-heading {
    font-size: clamp(24px, 6vh, 48px);
    margin-bottom: 6px;
  }
  
  .hero-subheading {
    font-size: clamp(11px, 2.5vh, 16px);
  }
  
  .menu-button {
    top: 20px;
  }
  

  .stats-wrapper {
    bottom: clamp(12px, 2vh, 20px);
    gap: clamp(10px, 2vh, 16px);
  }
  
  .stat-item {
    flex-direction: row;
    gap: 12px;
  }
  
  .stat-number {
    font-size: clamp(20px, 4vh, 36px);
    min-width: clamp(50px, 8vw, 70px);
  }
  
  .stat-title {
    font-size: clamp(11px, 2vh, 14px);
  }
  
  .stat-description {
    font-size: clamp(10px, 1.8vh, 12px);
    display: -webkit-box;
  
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .cta-wrapper {
    bottom: clamp(12px, 2vh, 20px);
    max-width: clamp(280px, 35vw, 360px);
  }
  
  .company-description {
    font-size: clamp(13px, 3vh, 20px);
    margin-bottom: clamp(10px, 2vh, 16px);
  }
  
  .cta-buttons {
    flex-direction: row;
    gap: 8px;
  }
  
  .cta-button {
    flex: 1;
    font-size: clamp(11px, 2vh, 13px);
    min-height: 40px;
    padding: 3px 3px 3px 10px;
  }
}




















#crestwood-section {
  display: flex;
  justify-content: center;  
  align-items: center;       
  min-height: 100vh;
  padding: 0 clamp(2vw, 4vw, 5vw);
  box-sizing: border-box;
  margin-top: clamp(4vh, 8vh, 8vh);
  margin-bottom: clamp(4vh, 8vh, 8vh);
}

.crestwood-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* ================== HEADER ================== */
.crestwood-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 60px);
}

.crestwood-title {
  font-family: 'Grotesk';
  font-weight: 700;
  font-size: clamp(1.75rem, 4.5vw, 3.5rem);
  margin-bottom: clamp(6px, 1vh, 8px);
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}

.crestwood-fade {
  color: #ffffff;
}

.crestwood-subtitle {
  font-family: 'Suisse';
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.8rem);
   color: #999;
  margin-bottom: 0;
  line-height: 1.4;
}

/* ================== PANELS CONTAINER ================== */
.crestwood-panels {
  display: flex;
  gap: clamp(12px, 1.5vw, 16px);
  height: clamp(400px, 50vh, 500px);
  position: relative;
  width: 100%;
}

.crestwood-panel {
  position: relative;
  border-radius: clamp(16px, 2vw, 24px);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: 20%;
  min-width: 0;
}

.crestwood-panel.crestwood-active {
  width: 40%;
}

/* ================== PANEL BACKGROUND ================== */
.panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.crestwood-panel:hover .panel-bg {
  transform: scale(1.05);
}

.panel-shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.3) 0%, 
    rgba(0, 0, 0, 0.7) 100%
  );
  transition: background 0.3s ease;
}

.crestwood-panel.crestwood-active .panel-shade {
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.4) 0%, 
    rgba(0, 0, 0, 0.8) 100%
  );
}

/* ================== PANEL CONTENT ================== */
.panel-info {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 4vw, 40px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.crestwood-panel.crestwood-active .panel-info {
  opacity: 1;
}

.panel-head {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 500;
  margin-bottom: clamp(12px, 2vh, 20px);
  line-height: 1.2;
  color: #fff;
}

.panel-text {
  font-size: clamp(0.675rem, 1.1vw, 1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
}

/* ================== BACKGROUND IMAGES ================== */
.crestwood-panel:nth-child(1) .panel-bg {
  background-image: url('assets/cw1.jpg');
}

.crestwood-panel:nth-child(2) .panel-bg {
  background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1200&h=800&fit=crop&q=80');
}

.crestwood-panel:nth-child(3) .panel-bg {
  background-image: url('assets/cw3.jpg');
}

.crestwood-panel:nth-child(4) .panel-bg {
  background-image: url('assets/cw4.jpg');
}

/* ================== RESPONSIVE BREAKPOINTS ================== */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .crestwood-wrapper {
    max-width: 1100px;
  }

  .crestwood-panels {
    height: clamp(380px, 48vh, 480px);
    gap: 14px;
  }

  .panel-head {
    font-size: clamp(1.375rem, 2.8vw, 2.25rem);
  }

  .panel-text {
    font-size: clamp(0.875rem, 1.5vw, 1.05rem);
  }
}

/* Tablets */
@media (max-width: 1024px) {
  #crestwood-section {
    min-height: auto;
    padding: 0 4vw;
  }

  .crestwood-panels {
    flex-direction: column;
    height: auto;
    gap: clamp(16px, 2.5vh, 20px);
  }

  .crestwood-panel {
    width: 100% !important;
    height: clamp(280px, 35vh, 320px);
  }

  .panel-info {
    opacity: 1;
    justify-content: flex-end;
  }

  .panel-shade {
    background: linear-gradient(
      to bottom, 
      rgba(0, 0, 0, 0.4) 0%, 
      rgba(0, 0, 0, 0.75) 100%
    );
  }

  .panel-text {
    max-width: 100%;
  }

  .crestwood-title {
    font-size: clamp(1.875rem, 5vw, 3rem);
  }

  .crestwood-subtitle {
    font-size: clamp(1.0625rem, 2.8vw, 1.625rem);
  }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
  #crestwood-section {
    margin-top: 6vh;
    margin-bottom: 6vh;
    padding: 0 5vw;
  }

  .crestwood-header {
    margin-bottom: clamp(35px, 5vh, 45px);
  }

  .crestwood-title {
    font-size: clamp(1.75rem, 5.5vw, 2.5rem);
    margin-bottom: 8px;
  }

  .crestwood-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
  }

  .crestwood-panels {
    gap: 16px;
  }

  .crestwood-panel {
    height: clamp(300px, 38vh, 340px);
    border-radius: 20px;
  }

  .panel-info {
    padding: clamp(28px, 4.5vw, 35px);
  }

  .panel-head {
    font-size: clamp(1.375rem, 3.5vw, 2rem);
    margin-bottom: 14px;
  }

  .panel-text {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.65;
  }
}

/* Mobile portrait */
@media (max-width: 640px) {
  #crestwood-section {
    margin-top: 4vh;
    margin-bottom: 4vh;
    padding: 0 5vw;
  }

  .crestwood-header {
    margin-bottom: 30px;
  }

  .crestwood-title {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
  }

  .crestwood-subtitle {
    font-size: clamp(0.9375rem, 3.5vw, 1.375rem);
  }

  .crestwood-panels {
    gap: 14px;
  }

  .crestwood-panel {
    height: clamp(320px, 42vh, 360px);
  }

  .panel-info {
    padding: 30px;
  }

  .panel-head {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    margin-bottom: 12px;
  }

  .panel-text {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  #crestwood-section {
    padding: 0 4vw;
    margin-top: 3vh;
    margin-bottom: 3vh;
  }

  .crestwood-header {
    margin-bottom: 25px;
  }

  .crestwood-title {
    font-size: clamp(1.375rem, 6.5vw, 2rem);
  }

  .crestwood-subtitle {
    font-size: clamp(0.875rem, 4vw, 1.25rem);
  }

  .crestwood-panels {
    gap: 12px;
  }

  .crestwood-panel {
    height: clamp(280px, 45vh, 340px);
    border-radius: 16px;
  }

  .panel-info {
    padding: 24px;
  }

  .panel-head {
    font-size: clamp(1.125rem, 4.5vw, 1.625rem);
    margin-bottom: 10px;
  }

  .panel-text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  #crestwood-section {
    padding: 0 3vw;
  }

  .crestwood-title {
    font-size: clamp(1.25rem, 7vw, 1.75rem);
  }

  .crestwood-subtitle {
    font-size: clamp(0.8125rem, 4.5vw, 1.125rem);
  }

  .crestwood-panel {
    height: clamp(260px, 48vh, 320px);
  }

  .panel-info {
    padding: 20px;
  }

  .panel-head {
    font-size: clamp(1rem, 5vw, 1.5rem);
  }

  .panel-text {
    font-size: 0.8125rem;
  }
}

/* Landscape orientation for mobile */
@media (max-height: 600px) and (orientation: landscape) {
  #crestwood-section {
    min-height: auto;
    margin-top: 2vh;
    margin-bottom: 2vh;
  }

  .crestwood-header {
    margin-bottom: 20px;
  }

  .crestwood-title {
    font-size: clamp(1.375rem, 4vh, 2rem);
  }

  .crestwood-subtitle {
    font-size: clamp(0.875rem, 2.5vh, 1.25rem);
  }

  .crestwood-panels {
    gap: 12px;
  }

  .crestwood-panel {
    height: clamp(200px, 35vh, 280px);
  }

  .panel-info {
    padding: 20px 25px;
  }

  .panel-head {
    font-size: clamp(1.125rem, 3.5vh, 1.625rem);
    margin-bottom: 8px;
  }

  .panel-text {
    font-size: clamp(0.8125rem, 2vh, 0.9375rem);
    line-height: 1.5;
  }
}

/* Very tall screens (portrait tablets) */
@media (min-height: 900px) and (max-width: 1024px) {
  .crestwood-panel {
    height: clamp(320px, 32vh, 380px);
  }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
  .crestwood-wrapper {
    max-width: 1400px;
  }

  .crestwood-panels {
    height: 550px;
  }

  .crestwood-title {
    font-size: 3.75rem;
  }

  .crestwood-subtitle {
    font-size: 2rem;
  }

  .panel-head {
    font-size: 2.75rem;
  }

  .panel-text {
    font-size: 1.2rem;
  }
}

/* Short screens */
@media (max-height: 700px) and (min-width: 1025px) {
  #crestwood-section {
    min-height: auto;
  }

  .crestwood-panels {
    height: clamp(350px, 55vh, 450px);
  }
}





















.hw-work {
padding: clamp(36px, 5.4vw, 48px) 5vw;

  background: transparent;
  color: #f5f5f5;
}

.hw-work__header {
  max-width: 1200px;
  margin: 0 auto 100px;
  text-align: center;
}

.hw-work__title {
  font-size: clamp(1.75rem, 4.5vw, 3.5rem);
  font-family: "Grotesk";
  font-weight: 700;
  margin-bottom: 16px;
}

.hw-work__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  color: #999;
  font-family: 'Suisse';
  font-weight: 300;

}

/* Timeline */
.hw-timeline {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-left: 72px;
}

.hw-timeline__line {
  position: absolute;
  left: 26px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #2a2a2a;
}

.hw-timeline__line-progress {
  position: absolute;
  inset: 0;
  height: 0%;
  background: linear-gradient(180deg, #555, #888);
}

/* Item */
.hw-timeline__item {
  position: relative;
  margin-bottom: 160px;
  opacity: 0.2;
}

.hw-timeline__dot {
  position: absolute;
  left: -49px;
  top: 10px;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #1a1a1a, 0 0 0 5px #444;
}

.hw-timeline__number {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 700;
  font-family: "Grotesk";
  color: #424242;
  margin-bottom: 20px;
}

.hw-timeline__content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hw-timeline__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
  font-family: "Grotesk";
}

.hw-timeline__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b5b5b5;
  font-family: "Suisse";
}

/* Image */
.hw-timeline__image {
  position: absolute;
  right: -110px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 260px;
  opacity: 1;
  overflow: hidden;
  pointer-events: none;
  border-radius: 24px;
}

.hw-timeline__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.hw-timeline__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.15)
  );
}

/* Mobile */
@media (max-width: 768px) {
  .hw-timeline {
    padding-left: 44px;
  }

  .hw-timeline__image {
    display: none;
  }

  .hw-timeline__item {
    margin-bottom: 110px;
  }

  .hw-timeline__dot { left: -21px;}
}
































/* ================== WRAPPER ================== */
.cs-wrapper {
  width: min(92%, 1400px);
  margin: 0 auto clamp(6vh, 10vh, 10vh);
  border: 1px solid #ffffff47;
  border-radius: clamp(20px, 2.5vw, 28px);
  padding: clamp(26px, 4vw, 44px);
  background-color: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  margin-bottom: 24vh;
}

/* ================== SECTION TOP ================== */
.cs-section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(25px, 4vw, 40px);
  margin-bottom: clamp(30px, 4vh, 46px);
}

.cs-section-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-family: "Grotesk";
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.cs-section-description {
  font-family: "Suisse";
  font-weight: 300;
  font-size: clamp(0.75rem, 1.4vw, 1.1rem);
  color: #999;
  line-height: 1.65;
  max-width: 350px;
}

/* ================== GRID ================== */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 1.8vw, 20px);
}

/* ================== CARD ================== */
.cs-card {
  position: relative;
  border-radius: clamp(16px, 1.8vw, 20px);
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  min-height: 340px;
}

.cs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Desktop placement */
.cs-card:nth-child(1) { grid-column: span 5; }
.cs-card:nth-child(2) { grid-column: span 7; }
.cs-card:nth-child(3) { grid-column: span 7; }
.cs-card:nth-child(4) { grid-column: span 5; }
.cs-card:nth-child(5) { grid-column: span 6; }
.cs-card:nth-child(6) { grid-column: span 6; }

/* ================== BACKGROUND ================== */
.cs-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease, opacity 0.5s ease;
}

.cs-card:hover .cs-card-bg {
  transform: scale(1.08);
  opacity: 0;
}

.cs-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.5s ease;
}

.cs-card:hover .cs-card-overlay {
  background: #fff;
}

/* ================== CONTENT ================== */
.cs-card-content {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 2.5vw, 24px);
  padding-bottom: clamp(70px, 9vw, 90px); /* reserved for fixed title */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ================== YEAR ================== */
.cs-card-year {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 0.8rem;
  color: #fff;
  transition: all 0.4s ease;
}

.cs-card:hover .cs-card-year {
  background: rgba(0, 0, 0, 0.15);
  color: #000;
}

/* ================== DETAILS ================== */
.cs-card-details {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.45s ease;
}

.cs-card:hover .cs-card-details {
  opacity: 1;
  transform: translateY(0);
}

.cs-detail-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000;
   margin-top: 2vh;
}

.cs-detail-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #000;
  margin-top: 2vh;
}

/* ================== FIXED TITLE ================== */
.cs-card-title {
  position: absolute;
  left: clamp(16px, 2vw, 24px);
  right: clamp(16px, 2vw, 24px);
  bottom: clamp(16px, 2vw, 22px);

  font-family: "Grotesk";
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  z-index: 3;
}

/* ================== BACKGROUND IMAGES ================== */
.cs-bg1 { background-image: url("assets/casestudy01.jpg"); }
.cs-bg2 { background-image: url("assets/casestudy02.jpg"); }
.cs-bg3 { background-image: url("assets/casestudy03.jpg"); }
.cs-bg4 { background-image: url("assets/casestudy04.jpg"); }
.cs-bg5 { background-image: url("assets/casestudy05.jpg"); }
.cs-bg6 { background-image: url("assets/casestudy06.jpg"); }

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
  .cs-section-top {
    flex-direction: column;
  }

  .cs-card {
    grid-column: span 6 !important;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .cs-wrapper {
    width: 95%;
    padding: 24px 20px;
  }

  .cs-card {
    grid-column: span 12 !important;
  }

  .cs-card-title {
    font-size: 0.95rem;
    bottom: 14px;
  }

  .cs-card-content {
    padding-bottom: 72px;
  }
}

@media (min-width: 1920px) {
  .cs-wrapper {
    max-width: 1600px;
  }

  .cs-card {
    min-height: 380px;
  }
}






















/* =========================================
   WRAPPER GRID
========================================= */
.faq-container {
  width: min(92vw, 1400px);
  border: 1px solid #ffffff47;
  border-radius: 28px;
  padding: clamp(40px, 6vw, 60px);
  background-color: hsla(0, 0%, 100%, 0.04);
  backdrop-filter: blur(10px);

  /* PERFECT CENTERING */
 
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(14vh, 18vh, 24vh);
}


/* =========================================
   WRAPPER GRID
========================================= */
.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* LEFT COLUMN (Sticky Heading) */
.faq-left {
  position: sticky;
  top: clamp(60px, 12vh, 100px);
}

.faq-heading {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 20ch;
}


/* =========================================
   RIGHT COLUMN
========================================= */
.faq-right {
  display: flex;
  flex-direction: column;
}


/* =========================================
   FAQ ITEMS
========================================= */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(20px, 3vw, 28px) 0;
  transition: border-color 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

/* FAQ Question Row */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
  cursor: pointer;
  user-select: none;
}

/* Question Text */
.faq-question-text {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 400;
  color: #fff;
  flex: 1;
  line-height: 1.4;
}


/* =========================================
   ICON (+) WITH CLEAN ANIMATION
========================================= */
.faq-icon {
  width: clamp(28px, 5vw, 32px);
  height: clamp(28px, 5vw, 32px);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

/* Perfect alignment of + sign */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

/* Make + become – on open */
.faq-item.active .faq-icon::after {
  transform: scaleY(0);
}

.faq-item.active .faq-icon {
  background-color: rgba(255, 255, 255, 0.15);
}


/* =========================================
   FAQ ANSWER (Accordion)
========================================= */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-text {
  font-size: clamp(0.95rem, 1.8vw, 1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-top: 18px;
}


/* =========================================
   RESPONSIVE BREAKPOINTS
========================================= */

/* Tablets + Small Laptops */
@media (max-width: 1024px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vw, 50px);
  }

  .faq-left {
    position: relative;
    top: 0;
  }

  .faq-heading {
    font-size: clamp(2rem, 5vw, 2.6rem);
  }

  .faq-container {
    width: min(94vw, 1400px);
    padding: clamp(40px, 5vw, 60px);
    margin-left: auto;
    margin-right: auto;
  }
}


/* Mobile Phones */
@media (max-width: 640px) {
  .faq-container {
    width: min(92vw, 1400px);
    border-radius: 20px;
    padding: clamp(28px, 6vw, 40px);
    
    /* EXPLICIT centering for mobile */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(8vh, 12vh, 16vh);
  }

  .faq-wrapper {
    gap: 28px;
  }

  .faq-item {
    padding: clamp(16px, 4vw, 20px) 0;
  }

  .faq-question-text {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .faq-icon {
    width: clamp(24px, 6vw, 28px);
    height: clamp(24px, 6vw, 28px);
  }

  .faq-icon::before {
    width: 12px;
  }

  .faq-icon::after {
    height: 12px;
  }
}

/* Extra Small Phones */
@media (max-width: 480px) {
  .faq-container {
    width: min(90vw, 1400px);
    padding: clamp(24px, 6vw, 32px);
    border-radius: 16px;
  }

  .faq-question-text {
    font-size: clamp(0.9375rem, 4.5vw, 1.125rem);
  }

  .faq-answer-text {
    font-size: clamp(0.875rem, 4vw, 1rem);
  }
}

   /* WRAPPER */
/* ============================================
   CONTACT SECTION - FULLY RESPONSIVE
   ============================================ */

/* MAIN WRAPPER */
.contact-wrapper {
    width: min(90%, 1400px);
    margin: 0 auto 12vh auto;
    margin-top: 24vh;
    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: 18vh;
    }
    
    .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;
    }
}




















       
 .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;
    }
}

.custom-cursor {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10001;
  mix-blend-mode: difference;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  transition: transform 0.2s cubic-bezier(0.19, 1, 0.22, 1),
              opacity 0.2s ease;
  will-change: transform, opacity;
}

/* Smooth outer halo */
.cursor-outline {
  width: 42px;
  height: 42px;
  border: 1.8px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1),
              width 0.25s ease, height 0.25s ease,
              border 0.25s ease, background 0.25s ease;
  will-change: transform, width, height, background, border;
  mix-blend-mode: difference;
  backdrop-filter: blur(6px);
}

/* Cursor glow trail — optional */
.cursor-trail {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  filter: blur(4px);
  mix-blend-mode: difference;
  transition: opacity 0.3s ease;
}

/* -------------------- INTERACTION STATES -------------------- */

/* Hover */
body.cursor-hover .custom-cursor {
  transform: scale(0.5);
  opacity: 0.9;
}

body.cursor-hover .cursor-outline {
  width: 65px;
  height: 65px;
  border-width: 2.5px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Click / Active */
body.cursor-click .custom-cursor {
  transform: scale(0.7);
  opacity: 0.8;
}

body.cursor-click .cursor-outline {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Text Select */
body.cursor-text .cursor-outline {
  width: 4px;
  height: 55px;
  border-radius: 2px;
  border: none;
  background: white;
  mix-blend-mode: normal;
}

body.cursor-text .custom-cursor {
  opacity: 0;
}

/* Label State */
.cursor-label {
  position: fixed;
  padding: 6px 14px;
  background: white;
  color: #000;
  border-radius: 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  pointer-events: none;
  z-index: 10003;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  text-transform: uppercase;
}

body.cursor-labeled .cursor-label {
  opacity: 1;
  transform: translate(-50%, -160%) scale(1);
}

/* Magnetic area visualization (optional debug layer) */
.cursor-magnetic-area {
  position: absolute;
  pointer-events: none;
  z-index: 10002;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.cursor-magnetic .cursor-magnetic-area {
  opacity: 1;
}

