:root {
  --brand-1: #0a3d62; /* primary */
  --brand-2: #00a8e8; /* accent */
  --text-1: #1a1a1a;
  --text-2: #4a4a4a;
  --bg-1: #ffffff;
  --bg-2: #f7f9fc;
  --radius: 12px;
  --shadow-1: 0 8px 24px rgba(0, 0, 0, 0.08);
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden!important;

}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial,
    sans-serif;
  color: var(--text-1);
  background: var(--bg-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}


img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: var(--brand-1);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
:focus-visible {
  outline: 3px solid var(--brand-2);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
      overflow-x: clip!important;

}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/img/home.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-background {
    background-position: center center;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.4) 100%
    );
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
  }

  .hero-background {
    background-position: end;
  }

}

@media (max-width: 480px) {
  .hero-section {
    min-height: 100vh;
  }

  .hero-background {
    background-position: 65% center;
    background-size: cover;
  }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s var(--ease-standard);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */
.nav-logo {
    flex-shrink: 0;
    background: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s var(--ease-standard);
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.nav-logo img {
    height: 35px;
    width: auto;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 3px 5px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    width: fit-content;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 28px;
    display: inline-block;
    border-radius: 50px;
    transition: all 0.3s var(--ease-standard);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
}

/* CTA Button with Advanced Hover Effect */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 22px 6px 28px;
    background: #fff;
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.cta-text {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: 0.3px;
}

/* Orange circular arrow */
.cta-arrow {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #fbb531 0%, #fbb531 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-arrow svg {
    width: 18px;
    height: 18px;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Shimmer effect */
.nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 3;
    pointer-events: none;
}

/* Animated gradient background */
.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbb531 0%, #fbb531 50%, #fbb531 100%);
    border-radius: 50px;
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

/* Hover Effects */
.nav-cta:hover::before {
    transform: scale(1);
}

.nav-cta:hover::after {
    left: 100%;
    transition: left 0.6s ease-in-out;
}

.nav-cta:hover .cta-text {
    color: #fff;
    transform: translateX(-2px);
}

.nav-cta:hover .cta-arrow {
    background: #fff;
    transform: scale(1.2) rotate(45deg);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5), inset 0 1px 0 rgba(255, 107, 53, 0.2);
}

.nav-cta:hover .cta-arrow svg {
    color: #FF6B35;
    transform: rotate(-45deg) scale(1.1);
}

.nav-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4), 0 6px 15px rgba(255, 107, 53, 0.25);
}

/* Active/Click state */
.nav-cta:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

.nav-cta:active .cta-arrow {
    transform: scale(1.1) rotate(45deg);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.toggle-line {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 3px;
    transition: all 0.3s var(--ease-standard);
}

.nav-toggle:hover .toggle-line {
    background: #fff;
}

.nav-toggle.active .toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Tablet */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
        gap: 30px;
    }
    
    .nav-menu {
        padding: 3px 5px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 10px 22px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-logo img {
        height: 30px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 20px;
        right: -100%;
        width: 280px;
        max-height: calc(100vh - 40px);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
        gap: 8px;
        box-shadow: -5px 0 40px rgba(0, 0, 0, 0.6);
        transition: right 0.4s var(--ease-standard);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 20px;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
      color: black;
        font-size: 16px;
        padding: 14px 20px;
        display: block;
        width: 100%;
        border-radius: 12px;
    }
    
    .nav-cta {
        display: none !important;
    }
    

}

/* Small Mobile */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-logo {
        padding: 8px 16px;
    }
    
    .nav-logo img {
        height: 26px;
    }
    
    .nav-menu {
        width: calc(100vw - 32px);
        top: 16px;
        padding: 25px 20px;
    }
    
    .nav-menu.active {
        right: 16px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 12px 18px;
    }
    
    .nav-cta {
        display: none !important;
    }
    
}


/* Hero Content */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
}

.hero-text {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    padding-top: 80px;
    width: 100%;
}

/* Hero Title */
.hero-title {
font-family: 'Libre Caslon Text', serif;    font-size: 50px;
    font-weight: 500;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 5px 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Hero CTA Button */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px 12px 34px;
    background: #fff;
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-cta .cta-text {
    position: relative;
    z-index: 2;
    letter-spacing: 0.3px;
}


/* Tablet Responsive */
@media (max-width: 1024px) {
    .hero-text {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 64px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-text {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 48px;
        margin-bottom: 32px;
    }
    
    .hero-cta {
        padding: 14px 24px 14px 30px;
        font-size: 15px;
    }
    
    .hero-cta .cta-arrow {
        width: 38px;
        height: 38px;
    }
    
    .hero-cta .cta-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-text {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 28px;
    }
    
    .hero-cta {
        padding: 13px 22px 13px 28px;
        font-size: 14px;
    }
    
    .hero-cta .cta-arrow {
        width: 36px;
        height: 36px;
    }
    
    .hero-cta .cta-arrow svg {
        width: 16px;
        height: 16px;
    }
}
/* Hero Tagline */
.hero-tagline {
    font-family: var(--font-family-base);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px 0;
    max-width: 650px;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .hero-tagline {
        font-size: 17px;
        max-width: 600px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-tagline {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 28px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-tagline {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 24px;
    }
}


/* Service Carousel */
.service-carousel-wrapper {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 4;
}

/* Progress Bar */
.carousel-progress {
    width: 350px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin-bottom: 16px;
}

.progress-bar {
    height: 100%;
    background: #fff;
    border-radius: 3px;
    animation: progressGrow 3s linear infinite;
}

@keyframes progressGrow {
    0%, 100% { width: 0; }
    100% { width: 100%; }
}

/* Carousel */
/* Service Carousel Wrapper - Desktop */
.service-carousel-wrapper {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
}

/* Progress Bar */
.carousel-progress {
  width: 350px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: #FFA726;
  width: 0;
  animation: progress 3s linear infinite;
}

@keyframes progress {
  0% { width: 0; }
  100% { width: 100%; }
}

/* Service Carousel */
.service-carousel {
  width: 350px;
  height: 150px;
  position: relative;
}

.service-card {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.8) 60%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.service-card.active {
  opacity: 1;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .service-carousel-wrapper {
    bottom: 60px;  /* Moved up from 30px */
    right: 30px;
  }
  
  .carousel-progress,
  .service-carousel {
    width: 300px;
  }
  
  .service-carousel {
    height: 130px;
  }
}

/* Mobile Responsive - Right Bottom Corner */
@media (max-width: 768px) {
  .service-carousel-wrapper {
    position: absolute;
    bottom: 50px;  /* Moved up from 20px */
    right: 16px;
    left: auto;
    top: auto;
    margin: 0;
    max-width: none;
  }
  
  .carousel-progress,
  .service-carousel {
    width: 260px;
  }
  
  .service-carousel {
    height: 120px;
  }
  
  .service-card h3 {
    font-size: 16px;
    bottom: 14px;
    left: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .service-carousel-wrapper {
    bottom: 80px;  /* Moved up from 16px */
    right: 12px;
  }
  
  .carousel-progress,
  .service-carousel {
    width: 240px;
  }
  
  .service-carousel {
    height: 110px;
  }
  
  .service-card h3 {
    font-size: 15px;
    bottom: 12px;
    left: 12px;
  }
}

/* Extra Small Mobile - Hide on very small screens */
@media (max-width: 380px) {
  .service-carousel-wrapper {
    display: none;
  }
}


.tagline-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
}

.main-tagline {
    max-width: 1000px;
    margin: 0 start;
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
}

.highlight {
    background: #FFA726;
    padding: 0 10px;
    border-radius: 10px;
}

.circle {
    display: inline-block;
    width: 44px;
    height: 44px;
    background: #FFA726;
    border-radius: 50% !important;
    margin-left: 4px;
    vertical-align: middle;
}

.circle:first-of-type {
    margin-left: 1px;
}



.sub-tagline {
    font-family: var(--font-family-base);
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    margin: 0;
    max-width: 500px;
    margin-left: auto;
}

@media (max-width: 768px) {
    .tagline-section {
        padding: 60px 20px;
    }
    
    .main-tagline {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    .circle {
        width: 16px;
        height: 16px;
    }
    
    .sub-tagline {
        font-size: 15px;
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .main-tagline {
        font-size: 28px;
    }
    
    .circle {
        width: 14px;
        height: 14px;
    }
}


.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
      overflow-x: clip!important;

}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    margin: 0 0 24px 0;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    margin: 0 0 20px 0;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px 14px 28px;
    background: #FFA726;
    color: #000;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s var(--ease-standard);
    margin-top: 12px;
}

.about-cta .cta-arrow {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-cta .cta-arrow svg {
    width: 16px;
    height: 16px;
    color: #FFA726;
}

.about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 167, 38, 0.3);
}

@media (max-width: 768px) {
    .about-section {
        padding: 10px 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-description {
        font-size: 15px;
    }
    .about-cta {
        font-size: 12px;
        padding: 8px 18px 8px 18px !important;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 28px;
    }
}


.expert-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
      overflow-x: clip!important;

}

.expert-header {
    margin-bottom: 60px;
}

.expert-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expert-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    margin: 0;
    max-width: 800px;
}

.expert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.expert-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
}

.expert-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 10%, rgba(0,0,0,0.9) 100%);
}

.expert-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: #fff;
    z-index: 1;
}

.expert-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.expert-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.expert-content p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 16px 0;
    opacity: 0.9;
}

.expert-link {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
}

.expert-cta {
    text-align: center;
    margin-top: 40px;
}

.expert-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px 14px 28px;
    background: #FFA726;
    color: #000;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s var(--ease-standard);
}

.expert-btn .cta-arrow {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-btn .cta-arrow svg {
    width: 18px;
    height: 18px;
    color: #FFA726;
}

.expert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 167, 38, 0.3);
}

/* Tablet */
@media (max-width: 1024px) {
    .expert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expert-title {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .expert-services {
        padding: 10px 20px;
    }
    
    .expert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .expert-card {
        height: 380px;
    }
    
    .expert-content {
        padding: 20px;
    }
    
    .expert-icon {
        font-size: 32px;
    }
    
    .expert-content h3 {
        font-size: 18px;
    }
    
    .expert-content p {
        font-size: 13px;
    }
    
    .expert-title {
        font-size: 32px;
    }
    .expert-btn{
        font-size: 12px;
        padding: 8px 18px 8px 18px !important;
    }
}

@media (max-width: 480px) {
    .expert-grid {
        gap: 12px;
    }
    
    .expert-card {
        height: 340px;
    }
    
    .expert-content {
        padding: 16px;
    }
    
    .expert-title {
        font-size: 28px;
    }
}

/* 4) Bordered pill style for Explore link */
.expert-link{
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  position: relative;
  z-index: 4;                 /* above hit and overlay */
}

.expert-link--border{
  padding: 8px 14px;
  border: 1.5px solid rgba(255,255,255,.85);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: saturate(120%) blur(2px);
  transition: background .25s ease, border-color .25s ease, transform .2s ease;
}
.expert-link--border:hover{
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-1px);
}
.expert-link:focus-visible{
  outline: 2px solid #fff; outline-offset: 3px; border-color: #fff;
}

/* 6) Mobile pill sizing tweak */
@media (max-width: 768px){
  .expert-link--border{ padding: 7px 12px; font-size: 13px; }
}


/* ============ Comprehensive Solutions ============ */
:root{
  --cs-accent:#FFA726;        /* brand accent for icons and chips */
  --cs-text:#0E0E0E;
  --cs-muted:#505050;
  --cs-border:rgba(0,0,0,.08);
  --cs-card-bg:rgba(0,0,0,.035);
}

.cs-section{padding:80px 0;background:transparent;  overflow-x: clip!important;
}
.cs-container{max-width:1200px;margin:0 auto;padding:0 40px;}
.cs-eyebrow{font-size:13px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--cs-muted);margin:0 0 10px;}
.cs-title{font-family:'Outfit',system-ui,sans-serif;font-weight:600;font-size:42px;line-height:1.2;color:var(--cs-text);margin:0 0 10px;}
.cs-lead{font-size:16px;line-height:1.7;color:var(--cs-muted);margin:0 0 32px;}

.cs-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.cs-card{background:var(--cs-card-bg);border:1px solid var(--cs-border);border-radius:20px;padding:24px;box-shadow:0 2px 10px rgba(0,0,0,.04);transition:transform .3s ease, box-shadow .3s ease;outline:none;}
.cs-card:focus-visible{box-shadow:0 0 0 3px color-mix(in oklab, var(--cs-accent) 60%, white);transform:translateY(-4px);}
.cs-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(0,0,0,.08);}

.cs-head{display:flex;gap:12px;align-items:center;margin:0 0 10px;}
.cs-icon{width:28px;height:28px;color:var(--cs-accent);flex:0 0 28px;}
.cs-card-title{font-size:20px;font-weight:600;color:var(--cs-text);margin:0;}
.cs-muted{font-size:14px;color:var(--cs-muted);margin:6px 0 14px;}

.cs-chips{display:flex;flex-wrap:wrap;gap:10px;list-style:none;padding:0;margin:0;}
/* Chips container stays the same */
.cs-chips{
  display:flex; flex-wrap:wrap; gap:10px; list-style:none; padding:0; margin:0;
}

/* Non-interactive chip pill */
.cs-chip{
  display:inline-block;
  padding:8px 12px;
  border:1px solid color-mix(in oklab, var(--cs-accent) 40%, transparent);
  border-radius:999px;
  background:color-mix(in oklab, var(--cs-accent) 14%, white);
  color:var(--cs-text);
  font-size:13px; font-weight:600; line-height:1;
  user-select:none; pointer-events:none; /* ensure not clickable */
}

/* Optional subtle hover-only visual (no pointer allowed) */
@media (hover:hover){
  .cs-chip:hover{
    background:color-mix(in oklab, var(--cs-accent) 18%, white);
  }
}

/* Tablet */
@media (max-width: 1024px){
  .cs-container{padding:0 30px;}
  .cs-title{font-size:36px;}
  .cs-grid{grid-template-columns:repeat(2,1fr);}
}

/* Mobile */
@media (max-width: 768px){
  .cs-section{padding:20px 0;}
  .cs-container{padding:0 20px;}
  .cs-title{font-size:32px;margin-bottom:6px;}
  .cs-lead{margin-bottom:22px;}
  .cs-grid{grid-template-columns:1fr;gap:16px;}
  .cs-card{padding:20px;}
  .cs-card-title{font-size:18px;}
  .cs-chips a{font-size:12px;padding:7px 10px;}
}

/* Small mobile */
@media (max-width: 480px){
  .cs-title{font-size:28px;}
}

/* Motion preference */
@media (prefers-reduced-motion: reduce){
  .cs-card,.cs-btn{transition:none}
}
/* Icon polish */
.cs-icon{
  width:28px;height:28px;color:var(--cs-accent);
  flex:0 0 28px;
  stroke-linecap:round;stroke-linejoin:round;
  vector-effect:non-scaling-stroke;shape-rendering:geometricPrecision;
}

/* Center the CTA row */
.cs-cta{
  display:flex;justify-content:center;align-items:center;
  gap:18px;flex-wrap:wrap;margin-top:28px;text-align:center;
}

:root{
  --wcu-cream:#FBF7F0;
  --wcu-text:#0E0E0E;
  --wcu-muted:#4F4F4F;
  --wcu-border:rgba(0,0,0,.08);
  --wcu-card:#FFFFFF;
  --wcu-accent:#FFA726; /* brand accent for icons */
}

.wcu-section{background:var(--wcu-cream);padding:90px 0;  overflow-x: clip!important;
}
.wcu-container{max-width:1200px;margin:0 auto;padding:0 40px;}

.wcu-header{max-width:520px;margin-left:auto;margin-right:0;margin-bottom:32px;}
.wcu-eyebrow{margin:0 0 8px;font-size:13px;letter-spacing:.08em;text-transform:uppercase;color:var(--wcu-muted);font-weight:600;}
.wcu-title{margin:0;color:var(--wcu-text);font-family:'Outfit',system-ui,sans-serif;font-weight:600;font-size:28px;line-height:1.25;}

.wcu-grid{display:grid;grid-template-columns:1fr 1fr;gap:44px;align-items:start;}

/* Fixed-height media card */
.wcu-media{
  position: relative;
  margin: 0;
  height: 477px;                 /* desktop height */
  border-radius: 24px;
  overflow: hidden;              /* ensure rounding applies to child image */
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

.wcu-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;             /* fill the fixed box without distortion */
  object-position: center;       /* tweak if subject is off-center */
  display: block;
  border-radius: inherit;        /* keeps corners consistent */
}



/* Responsive heights */
@media (max-width: 1024px){
  .wcu-media{ height: 360px; }
}

@media (max-width: 768px){
  .wcu-media{ height: 300px; }
}

@media (max-width: 480px){
  .wcu-media{ height: 260px; }
}

.wcu-features{display:flex;flex-direction:column;gap:5px;}

.wcu-card{background:var(--wcu-card);border:1px solid var(--wcu-border);border-radius:16px;padding:18px 18px 16px;box-shadow:0 10px 28px rgba(0,0,0,.07);transition:transform .25s ease, box-shadow .25s ease;}
.wcu-card:hover{transform:translateY(-4px);box-shadow:0 18px 44px rgba(0,0,0,.10);}
.wcu-card-head{display:flex;align-items:center;gap:12px;margin-bottom:8px;}
.wcu-icon{width:26px;height:26px;color:var(--wcu-accent);stroke-linecap:round;stroke-linejoin:round;vector-effect:non-scaling-stroke;}
.wcu-card h3{font-size:18px;margin:0;color:var(--wcu-text);font-weight:700;}
.wcu-card p{margin:0;color:var(--wcu-muted);font-size:14.5px;line-height:1.6;}

@media (max-width: 1024px){
  .wcu-container{padding:0 30px;}
  .wcu-title{font-size:32px;}
  .wcu-grid{gap:32px;}
}

@media (max-width: 768px){
  .wcu-section{padding:20px 0;}
  .wcu-container{padding:0 20px;}
  .wcu-header{margin:0 0 20px 0;max-width:none;}
  .wcu-title{font-size:28px;line-height:1.3;}
  .wcu-grid{grid-template-columns:1fr;gap:22px;}
  .wcu-features{gap:5px;}
  .wcu-card{padding:16px;}
  .wcu-card h3{font-size:17px;}
  .wcu-card p{font-size:14px;}
}

@media (prefers-reduced-motion: reduce){
  .wcu-card{transition:none}
}

:root{
  --t-cream:#FBF7F0;
  --t-text:#0E0E0E;
  --t-muted:#5A5A5A;
  --t-card:#F3F5F7;            /* light grey card surface */
  --t-border:rgba(0,0,0,.08);
  --t-accent:#FFA726;          /* brand accent */
}

.t-section{background:var(--t-cream);padding:80px 0;  overflow-x: clip!important;
}
.t-container{max-width:1200px;margin:0 auto;padding:0 40px;display:grid;grid-template-columns:1fr 1.1fr;gap:40px;align-items:start;}

.t-title{margin:0 0 10px;font-family:'Outfit',system-ui,sans-serif;font-weight:700;font-size:28px;line-height:1.25;color:var(--t-text);}
.t-lead{margin:0;max-width:460px;color:var(--t-muted);font-size:15.5px;line-height:1.7;}

.t-slider{position:relative;min-height:170px;}
.t-card{
  position:absolute;inset:0;
  background:var(--t-card);
  border:1px solid var(--t-border);
  border-radius:16px;
  padding:20px 20px 18px;
  box-shadow:0 10px 24px rgba(0,0,0,.07);
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity .45s ease, transform .45s ease, visibility .45s;
  display:flex; flex-direction:column; gap:14px;
}
.t-card.active{opacity:1; visibility:visible; transform:translateY(0);}

.t-quote{margin:0;color:var(--t-text);font-size:16px;line-height:1.6;}
.t-person{display:flex;align-items:center;gap:12px;}
.t-avatar{width:36px;height:36px;border-radius:50%;object-fit:cover;display:block;}
.t-meta{display:flex;flex-direction:column;line-height:1.2;}
.t-name{font-family:'Outfit',system-ui,sans-serif;font-weight:700;color:var(--t-text);font-size:14.5px;}
.t-role{color:var(--t-muted);font-size:13.5px;}

.t-link{margin-top:auto;display:inline-flex;align-items:center;gap:8px;font-weight:600;color:var(--t-text);text-decoration:none;}
.t-link:hover .t-arrow{transform:translateX(2px);color:var(--t-accent);}
.t-arrow{transition:transform .2s ease,color .2s ease;}

@media (max-width:1024px){
  .t-container{gap:28px;}
}

@media (max-width:768px){
  .t-section{padding:60px 0;}
  .t-container{grid-template-columns:1fr;gap:18px;padding:0 20px;}
  .t-title{font-size:24px;}
  .t-slider{min-height:190px;}
}

@media (prefers-reduced-motion:reduce){
  .t-card,.t-arrow{transition:none}
}

:root{
  --cream:#ffffff;
  --ink:#1B2722;
  --muted:#6A7A72;
}

.clients-section{ background:var(--cream); padding:clamp(28px,5vw,56px) 0; }
.clients-container{ max-width:1200px; margin:0 auto; padding:0 clamp(14px,3vw,24px); }

/* Title block */
.section-head{ margin:0 0 clamp(14px,3vw,24px); }
.section-eyebrow{
  display:inline-block; color:var(--green); text-transform:uppercase;
  letter-spacing:.14em; font-size:.78rem; font-weight:600; margin-bottom:8px;
}
.section-title{ position:relative; font-weight:800; color:var(--ink); margin:0 0 10px; line-height:1.2; }
.section-title::after{ content:""; display:block; width:64px; height:3px; background:var(--green); margin-top:10px; }
.section-sub{ margin:0; color:var(--muted); font-size:.98rem; }

/* Grid with no cell borders or background */
.client-logos{
  list-style:none; margin:0; padding:0; display:grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(10px, 2vw, 20px);
  align-items:center; justify-items:center;
}
.client-logos .logo{
  width:100%;
  aspect-ratio:4/3;              /* consistent box height, no visual frame */
  display:grid; place-items:center;
  background: transparent;       /* removed grey overlay */
  border: 0;                      /* removed border box */
}

/* Logos in full color, preserved proportions */
.client-logos img{
  max-width: 90%;
  max-height: 68%;
  width: auto;
  height: auto;
  object-fit: contain;            /* no distortion */
  filter: none;                   /* removed grayscale/opacity */
  transition: transform .2s ease;
}

/* Subtle interaction only */
.client-logos .logo:hover img,
.client-logos .logo:focus-within img{
  transform: translateY(-1px);
}

/* 12 logos: neat rows at each breakpoint */
@media (min-width:1200px){
  .client-logos{ grid-template-columns: repeat(6, 1fr); } /* 2 rows x 6 */
}
@media (max-width:900px){
  .client-logos{ grid-template-columns: repeat(4, 1fr); } /* 3 rows x 4 */
}
@media (max-width:600px){
  .client-logos{ grid-template-columns: repeat(3, 1fr); } /* 4 rows x 3 */
}
/* Equal-width logos, responsive via clamp */
:root{
  --logo-w: clamp(96px, 14vw, 140px);   /* all images use the same width */
  --logo-max-h: clamp(40px, 7vw, 72px); /* cap height so tall logos don’t stretch rows */
}

/* Grid stays as-is (6/4/3 columns via your breakpoints) */

/* Remove any fixed aspect box that could fight equal widths */
.client-logos .logo{
  display: grid;
  place-items: center;
  height: auto;                  /* let the image height define the row */
  background: transparent;       /* no overlay */
  border: 0;                     /* no border */
  padding: clamp(6px, 1.4vw, 10px) 0;
}

/* Core rule: every logo gets the same width, scales in height automatically */
.client-logos img{
  width: var(--logo-w);          /* equal width for all */
  height: auto;                  /* keep aspect ratio */
  max-height: var(--logo-max-h); /* prevent very tall logos */
  object-fit: contain;           /* never distort the image */
  display: block;
}

/* Optional: tiny lift on hover, no color/filters changed */
.client-logos .logo:hover img,
.client-logos .logo:focus-within img{
  transform: translateY(-1px);
  transition: transform .2s ease;
}


:root{
  --faq-bg:#FBF7F0;         /* cream page bg */
  --faq-text:#0E0E0E;
  --faq-muted:#5A5A5A;
  --faq-border:rgba(0,0,0,.12);
  --faq-accent:#FFA726;     /* arrow hover */
}

.faq-section{background:var(--faq-bg);padding:80px 0;  overflow-x: clip!important;
}
.faq-container{max-width:1200px;margin:0 auto;padding:0 40px;}

.faq-header{text-align:center;max-width:760px;margin:0 auto 28px;}
.faq-title{margin:0 0 8px;font-family:'Outfit',system-ui,sans-serif;font-weight:700;font-size:28px;color:var(--faq-text);}
.faq-lead{margin:0;color:var(--faq-muted);font-size:14.5px;line-height:1.7;}

.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;}
.faq-col{display:flex;flex-direction:column;gap:0;}

.faq-item{border-bottom:1px solid var(--faq-border);}
.faq-toggle{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:18px 0;background:none;border:0;cursor:pointer;color:var(--faq-text);text-align:left;
}
.faq-toggle:focus-visible{outline:2px solid color-mix(in oklab, var(--faq-accent) 60%, white);outline-offset:4px;border-radius:12px;}

.faq-q{font-size:18px;font-weight:600;line-height:1.35;}
.faq-arrow{
  width:34px;height:34px;border-radius:50%;
  background:#fff;border:1px solid var(--faq-border);
  display:grid;place-items:center;flex:0 0 34px;position:relative;transition:transform .25s ease, background .25s ease;
}
.faq-arrow::before{
  content:"";width:8px;height:8px;border-right:2px solid var(--faq-text);border-bottom:2px solid var(--faq-text);
  transform:rotate(45deg);display:block;
}
.faq-toggle[aria-expanded="true"] .faq-arrow{background:color-mix(in oklab, var(--faq-accent) 22%, white);}
.faq-toggle[aria-expanded="true"] .faq-arrow::before{transform:rotate(-135deg);} /* arrow up */

.faq-panel{
  max-height:0; overflow:hidden; transition:max-height .35s ease, opacity .25s ease; opacity:.0;
}
.faq-panel p{margin:0 0 18px;color:var(--faq-muted);font-size:15.5px;line-height:1.7;}
.faq-toggle[aria-expanded="true"] + .faq-panel{opacity:1;}

/* Tablet */
@media (max-width:1024px){
  .faq-grid{gap:22px;}
}

/* Mobile */
@media (max-width:768px){
  .faq-section{padding:10px 0;}
  .faq-container{padding:0 20px;}
  .faq-grid{grid-template-columns:1fr;gap:10px;}
  .faq-q{font-size:17px;}
}

:root{
  --c-cream:#FBF7F0;
  --c-text:#0E0E0E;
  --c-muted:#5A5A5A;
  --c-border:rgba(0,0,0,.12);
  --c-card:#FFFFFF;
  --c-accent:#FFA726;  /* brand button */
}

.c-section{background:var(--c-cream);padding:80px 0;  overflow-x: clip!important;
}
.c-container{max-width:1200px;margin:0 auto;padding:0 40px;display:grid;grid-template-columns:1fr 1.1fr;gap:40px;align-items:start;}

.c-title{margin:0 0 10px;font-family:'Outfit',system-ui,sans-serif;font-weight:700;font-size:28px;color:var(--c-text);}
.c-lead{margin:0 0 18px;color:var(--c-muted);font-size:15px;line-height:1.7;max-width:520px;}

.c-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:18px;}
.c-item{display:flex;gap:12px;align-items:flex-start;}
.c-icn{width:36px;height:36px;border:1px solid var(--c-border);border-radius:12px;display:grid;place-items:center;background:#fff;color:var(--c-text);}
.c-icn svg{width:22px;height:22px}
.c-label{font-family:'Outfit',system-ui,sans-serif;font-weight:700;color:var(--c-text);display:block;margin:0 0 4px;}
.c-text{margin:0;color:var(--c-muted);font-size:14.5px;line-height:1.6;}
.c-text a{color:var(--c-text);text-decoration:none;}
.c-text a:hover{text-decoration:underline;}

.c-form{display:flex;flex-direction:column;gap:14px;}
.c-field{display:flex;flex-direction:column;gap:6px;}
.c-f-label{font-size:14px;color:var(--c-text);font-weight:600;}

.c-form input,.c-form textarea{
  width:100%;
  background:#fff;border:1px solid var(--c-border);
  border-radius:999px; /* rounded pill look like reference */
  padding:14px 16px;color:var(--c-text);font-size:15px;outline:none;
  box-shadow:0 4px 10px rgba(0,0,0,.04) inset;
}
.c-form textarea{border-radius:20px;min-height:110px;resize:vertical;}

.c-form input:focus,.c-form textarea:focus{
  border-color:color-mix(in oklab, var(--c-accent) 60%, white);
  box-shadow:0 0 0 3px color-mix(in oklab, var(--c-accent) 30%, transparent);
}

.c-actions{display:flex;justify-content:center;margin-top:6px;}
.c-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 22px;border-radius:999px;border:0;cursor:pointer;
  background:var(--c-accent);color:#111;font-weight:700;font-size:14.5px;
  transition:transform .25s ease, box-shadow .25s ease;
  box-shadow:0 8px 20px rgba(255,167,38,.28);
}
.c-btn:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(255,167,38,.35);}
.c-btn:active{transform:translateY(0);}

/* Tablet */
@media (max-width:1024px){
  .c-container{gap:28px;}
}

/* Mobile */
@media (max-width:768px){
  .c-section{padding:60px 0;}
  .c-container{grid-template-columns:1fr;gap:22px;padding:0 20px;}
  .c-title{font-size:24px;}
}

:root{
  --f-orange:#F4A531;   /* brand footer color */
  --f-text:#0E0E0E;
  --f-white:#FFFFFF;
  --f-sep:rgba(255,255,255,.6);
}

.site-footer{
  background:var(--f-orange);
  color:var(--f-text);
    overflow-x: clip!important;

}
.footer-wrap{
  max-width:1200px;margin:0 auto;padding:20px 40px;
}
.footer-top{
  display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;
}
.footer-brand img{
  height:46px;width:auto;display:block;border-radius:12px; /* pill logo like reference */
  background:var(--f-white);
}

.footer-nav{
  display:flex;gap:18px;flex-wrap:wrap;
}
.footer-nav a{
  color:var(--f-text);text-decoration:none;font-weight:600;
}
.footer-nav a:hover{ text-decoration:underline; }

.footer-sep{
  border:0;height:1px;background:var(--f-sep);
  margin:16px 0 10px;
}

.footer-bottom{
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;padding-bottom:10px;
}
.footer-copy{margin:0;font-size:14px;}
.footer-legal{display:flex;align-items:center;gap:10px;}
.footer-legal a{color:var(--f-text);text-decoration:none;font-size:14px;}
.footer-legal a:hover{text-decoration:underline;}

/* Mobile */
@media (max-width:768px){
  .footer-wrap{padding:16px 20px;}
  .footer-top{gap:14px;}
  .footer-nav{gap:14px;}
  .footer-copy{font-size:13.5px;}
}


/* Aggressive mobile overflow fix */
@media (max-width: 768px) {
  html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    position: relative;
  }
}



/* ===== ELITE LIVING FULL INTRO ANIMATION ===== */

.elite-intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 9999; /* stays above everything */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.8s ease;
}

.elite-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(200px, 60%);
  line-height: 0;
}

.elite-logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* Initial states */
.elite-icon,
.elite-text {
  transform: translateY(100px);
  opacity: 0;
}

/* Animation active state */
.elite-intro-overlay.animate .elite-icon {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1s ease;
}

.elite-intro-overlay.animate .elite-text {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s, opacity 0.8s ease 0.4s;
}

/* Fade-out effect when complete */
.elite-intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Responsive sizing */
@media (max-width: 768px) {
  .elite-logo-wrap {
  width: min(100px, 60%);
  }
}

@media (max-width: 480px) {
  .elite-logo-wrap {
  width: min(200px, 60%);
  }
}


/***** Floating UI (hidden until intro completes) *****/
.float-ui{
  position: fixed;
  right: clamp(14px, 2vw, 22px);
  bottom: clamp(14px, 2vw, 22px);
  display: grid;
  gap: 10px;
  z-index: 9999;
  pointer-events: none;           /* avoid blocking page until shown */
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
body.ui-ready .float-ui{
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* Buttons */
.float-btn{
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  border: 0; background: #111;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.float-btn:hover,
.float-btn:focus{ transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.22); }

/* Brand theming */
.float-whatsapp{ background: #25D366; }   /* WhatsApp brand green */
.float-top{ background: #0E0E0E; }        /* dark neutral */

/* Show “Back to top” only after scrolling some distance */
.float-top{ opacity: 0; pointer-events: none; }
body.show-top .float-top{ opacity: 1; pointer-events: auto; }

/* Respect user motion preferences for smooth scroll */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

.footer-btn {
  display: inline-block;
  margin-left: 1rem;
  padding: 10px 20px;
  background-color: #000000;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer-btn:hover {
  background-color: #000000;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-btn {
    margin: 15px 0 0 0;
  }
}
