/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

 .reveal {
     opacity: 0;
     transform: translateY(18px);
     transition: opacity 700ms ease, transform 700ms ease;
     will-change: opacity, transform;
 }

 .reveal.active {
     opacity: 1;
     transform: translateY(0);
 }

/* Hero Section */
.hero-section {
    position: relative;
    height: 90dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
    z-index: -2;
}

.hero-background-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-landscape-2CI_8vIi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Location Text */
.hero-location p {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Main Heading */
.hero-heading h1 {
    font-family: Playfair Display, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-heading .ampersand {
    font-size: 1.3em;
    color: #90EE90;
    display: inline-block;
    animation: pulse 3s ease-in-out infinite;
}

/* Description */
.hero-description p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Buttons */
.hero-buttons {
    margin-top: 2rem;
}

.btn-consultation {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

.btn-consultation:hover {
    background: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
    color: white;
}

.btn-request {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-request:hover {
    background: white;
    color: #228B22;
    transform: translateY(-2px);
    border-color: white;
}

/* Animations */
@keyframes slowZoom {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.2);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.animate-slide-up-delay {
    animation: slideUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.9s forwards;
    opacity: 0;
}

/* Responsive Design */

/* Mobile (Portrait) */
@media (max-width: 576px) {
    .hero-section {
        min-height: 100vh;
        padding: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-location p {
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }
    
    .hero-heading h1 {
        font-size: 2.3rem;
        margin-bottom: 1rem;
    }
    
    .hero-description p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .btn-consultation,
    .btn-request {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons .row {
        gap: 0.5rem;
    }
}

/* Mobile (Landscape) */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-heading h1 {
        font-size: 2rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 991px) {
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-heading h1 {
        font-size: 2.5rem;
    }
    
    .hero-description p {
        font-size: 1.1rem;
    }
    
    .btn-consultation,
    .btn-request {
        font-size: 1rem;
        padding: 0.9rem 1.8rem;
    }
}

/* Mobile Call Button */
.mobile-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E7648 0%, #267a45 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(46, 118, 72, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.mobile-call-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.mobile-call-btn i {
    font-size: 24px;
    animation: pulse-ring 2s infinite;
}

.mobile-call-btn:hover {
    background: linear-gradient(135deg, #267a45 0%, #1f5f37 100%);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(46, 118, 72, 0.5);
}

.mobile-call-btn:active {
    transform: scale(0.95);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Pulse ring effect */
.mobile-call-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(46, 118, 72, 0.3);
    animation: pulse-wave 2s infinite;
    z-index: -1;
}

@keyframes pulse-wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .hero-section {
        height: 90vh;
    }
    
    .hero-content {
        padding: 3rem;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .hero-heading h1 {
        font-size: 3.5rem;
    }
    
    .hero-description p {
        font-size: 1.25rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Button focus states */
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-consultation:focus {
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.3);
}

 /* Reasons Section */
 .reasons-section {
     background: #f6f2ec;
     padding: 7rem 0;
 }

 .reasons-content {
     align-items: center;
 }

 .reasons-content-wrapper {
     padding: 1rem 0;
 }

 .reasons-label {
     font-size: 0.85rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     color: #1f7a1f;
     margin-bottom: 0.75rem;
     display: block;
 }

 .reasons-title {
     font-family: 'Georgia', serif;
     font-weight: 700;
     font-size: clamp(2rem, 4vw, 2.75rem);
     color: #1c1c1c;
     margin-bottom: 1.25rem;
     line-height: 1.2;
 }

 .reasons-title .highlight {
     color: #e91f63;
 }

 .reasons-subtitle {
     color: #555555;
     font-size: 1.1rem;
     line-height: 1.7;
     margin-bottom: 2.5rem;
     font-weight: 400;
 }

 .reasons-list {
     list-style: none;
     padding: 0;
     margin: 0 0 2.5rem;
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .reasons-list li {
     display: flex;
     align-items: flex-start;
     gap: 1.25rem;
     padding: 0;
 }

 .list-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 52px;
     height: 52px;
     flex-shrink: 0;
     background: linear-gradient(135deg, #e7efe6 0%, #f0f7ef 100%);
     border: 2px solid rgba(31, 122, 31, 0.2);
     border-radius: 999px;
     transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
     box-shadow: 0 4px 12px rgba(31, 122, 31, 0.08);
 }

 .list-icon i {
     color: #1f7a1f;
     font-size: 1.25rem;
 }

 .reasons-list li:hover .list-icon {
     transform: translateY(-4px);
     background: linear-gradient(135deg, #d4e8cf 0%, #e7efe6 100%);
     box-shadow: 0 12px 28px rgba(31, 122, 31, 0.16);
     border-color: rgba(31, 122, 31, 0.35);
 }

 .reasons-list li span:last-child {
     color: #4a4a4a;
     font-size: 0.95rem;
     line-height: 1.6;
     padding-top: 0.35rem;
 }

 .reasons-list li strong {
     color: #1c1c1c;
     font-weight: 600;
     display: block;
     margin-bottom: 0.35rem;
 }

 .reasons-cta-group {
     display: flex;
     gap: 1.5rem;
     align-items: center;
     margin-top: 2.5rem;
 }

 .reasons-cta-group .btn {
     padding: 0.75rem 2rem;
     font-weight: 500;
     border-radius: 6px;
     transition: all 300ms ease;
 }

 .reasons-cta-group .btn-primary {
     background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
 }

 .reasons-cta-group .btn-primary:hover {
     background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
 }

 .reasons-cta-group .btn-outline-secondary {
     border: 2px solid #ddd;
     color: #555;
 }

 .reasons-cta-group .btn-outline-secondary:hover {
     border-color: #1f7a1f;
     color: #1f7a1f;
 }

 /* Image Grid */
 .reasons-image-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 1.5rem;
 }

 .grid-item {
     position: relative;
     overflow: hidden;
     border-radius: 12px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: transform 400ms ease, box-shadow 400ms ease;
 }

 .grid-item-1 {
     grid-row: span 1;
 }

 .grid-item-2 {
     grid-row: span 1;
 }

 .grid-item-3 {
     grid-row: span 1;
 }

 .grid-item-4 {
     grid-row: span 1;
 }

 .grid-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 300ms ease;
 }

 .grid-item:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
 }

 .grid-item:hover img {
     transform: scale(1.05);
 }

 /* Reasons responsive layout */
 @media (max-width: 991px) {
     .reasons-title {
         font-size: 2rem;
     }

     .reasons-cta-group {
         flex-direction: column;
         align-items: flex-start;
     }
 }

 @media (max-width: 768px) {
     .reasons-section {
         padding: 4rem 0;
     }

     .reasons-image-grid {
         gap: 1.25rem;
         margin-top: 2rem;
     }

     .reasons-title {
         font-size: 1.75rem;
     }

     .reasons-subtitle {
         font-size: 1rem;
         margin-bottom: 2rem;
     }

     .reasons-list {
         gap: 1.25rem;
     }

     .list-icon {
         width: 48px;
         height: 48px;
     }

     .list-icon i {
         font-size: 1.1rem;
     }

     .reasons-list li span:last-child {
         font-size: 0.9rem;
     }

     .reasons-cta-group {
         width: 100%;
     }

     .reasons-cta-group .btn {
         width: 100%;
         text-align: center;
     }
 }

 /* Services Section */
 .services-section {
     background: #fff;
     padding: 7rem 0;
 }

 .services-header {
     max-width: 720px;
     margin: 0 auto 3.5rem;
 }

 .services-header h2 {
     font-family: 'Georgia', serif;
     font-weight: 700;
     font-size: clamp(1.75rem, 3vw, 2.5rem);
     color: #1c1c1c;
     margin-bottom: 0.5rem;
     line-height: 1.2;
 }

 .services-header p {
     color: #666;
     font-size: 1rem;
     line-height: 1.6;
     margin: 0;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 2rem;
     max-width: 1100px;
     margin: 0 auto;
 }

 .services-carousel-wrapper {
     position: relative;
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 60px;
 }

 .services-carousel {
     display: flex;
     gap: 2rem;
     overflow: hidden;
     scroll-behavior: smooth;
 }

 .service-card {
     background: #fff;
     border: 1px solid rgba(31, 122, 31, 0.08);
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
     transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
     display: flex;
     flex-direction: column;
     height: 100%;
     position: relative;
     flex: 0 0 calc(50% - 1rem);
     min-width: calc(50% - 1rem);
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #1f7a1f 0%, #90EE90 100%);
     z-index: 2;
 }

 .service-image {
     width: 100%;
     height: 240px;
     overflow: hidden;
     background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
     position: relative;
 }

 .service-image::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
     z-index: 1;
 }

 .service-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
 }

 .service-card h3 {
     font-family: 'Georgia', serif;
     font-weight: 700;
     font-size: 1.15rem;
     color: #1c1c1c;
     margin: 1.8rem 1.5rem 0.8rem;
     line-height: 1.3;
 }

 .service-card p {
     color: #555;
     font-size: 0.95rem;
     line-height: 1.65;
     margin: 0 1.5rem 1.5rem;
     flex-grow: 1;
 }

 .service-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 50px rgba(31, 122, 31, 0.15);
     border-color: rgba(31, 122, 31, 0.2);
 }

 .service-card:hover .service-image img {
     transform: scale(1.1) rotate(1deg);
 }

 /* Carousel Navigation */
 .carousel-nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(31, 122, 31, 0.9);
     border: none;
     color: white;
     width: 48px;
     height: 48px;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 10;
     transition: all 300ms ease;
     font-size: 1.25rem;
 }

 .carousel-prev {
     left: 0;
 }

 .carousel-next {
     right: 0;
 }

 .carousel-nav:hover {
     background: #1f7a1f;
     box-shadow: 0 8px 20px rgba(31, 122, 31, 0.3);
     transform: translateY(-50%) scale(1.1);
 }

 .carousel-nav:active {
     transform: translateY(-50%) scale(0.95);
 }

 /* Carousel Dots */
 .carousel-dots {
     display: flex;
     justify-content: center;
     gap: 1rem;
     margin-top: 2.5rem;
 }

 .dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     border: 2px solid #1f7a1f;
     background: transparent;
     cursor: pointer;
     transition: all 300ms ease;
     padding: 0;
 }

 .dot.active {
     background: #1f7a1f;
     width: 14px;
     height: 14px;
 }

 .dot:hover {
     transform: scale(1.15);
 }

 /* Services responsive layout */
 @media (max-width: 991px) {
     .services-carousel-wrapper {
         padding: 0 50px;
     }
     .services-grid
     {
        grid-template-columns: repeat(1, minmax(0, 1fr));
     }

     .service-card {
         flex: 0 0 calc(100% - 0px);
         min-width: calc(100% - 0px);
     }

     .carousel-nav {
         width: 44px;
         height: 44px;
         font-size: 1.1rem;
     }
 }

 @media (max-width: 768px) {
     .services-carousel-wrapper {
         padding: 0 40px;
     }

     .carousel-nav {
         width: 40px;
         height: 40px;
         font-size: 1rem;
     }

     .carousel-dots {
         margin-top: 2rem;
     }
 }

 @media (max-width: 575px) {
     .services-carousel-wrapper {
         padding: 0 35px;
     }

     .carousel-nav {
         width: 36px;
         height: 36px;
         font-size: 0.9rem;
     }

     .carousel-dots {
         gap: 0.75rem;
     }

     .dot {
         width: 10px;
         height: 10px;
     }

     .dot.active {
         width: 12px;
         height: 12px;
     }
 }

 /* Transformation Section */
 .transformation-section {
     background: #f6f2ec !important;
     padding: clamp(2.5rem, 5vw, 4.75rem) 0;
     overflow: hidden;
 }

 .transformation-header {
     max-width: 720px;
     margin: 0 auto 3rem;
 }

 .transformation-header h2 {
     font-family: 'Georgia', serif;
     font-weight: 700;
     font-size: clamp(1.35rem, 2.6vw, 2.05rem);
     color: #1c1c1c;
     margin-bottom: 0.4rem;
 }

 .transformation-header p {
     color: #6b6b6b;
     font-size: 0.95rem;
     line-height: 1.5;
     margin: 0;
 }

 /* Slider Container */
 .transformation-slider-wrapper {
     position: relative;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 60px;
 }

 .transformation-slider {
     overflow: hidden;
     border-radius: 16px;
     position: relative;
 }

 .slider-track {
     display: flex;
     transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     will-change: transform;
 }

 .transformation-card {
     flex: 0 0 50%;
     width: 50%;
     padding: 0 15px;
     opacity: 0;
     transform: translateX(30px);
     transition: opacity 0.6s ease, transform 0.6s ease;
 }

 .transformation-card.active {
     opacity: 1;
     transform: translateX(0);
 }

 /* Navigation Buttons */
 .slider-nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(31, 122, 31, 0.9);
     border: 2px solid rgba(255, 255, 255, 0.3);
     color: white;
     width: 52px;
     height: 52px;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 10;
     transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     font-size: 1.3rem;
     backdrop-filter: blur(10px);
 }

 .slider-prev {
     left: 0;
 }

 .slider-next {
     right: 0;
 }

 .slider-nav:hover {
     background: rgba(31, 122, 31, 1);
     border-color: rgba(255, 255, 255, 0.5);
     transform: translateY(-50%) scale(1.1);
     box-shadow: 0 8px 25px rgba(31, 122, 31, 0.3);
 }

 .slider-nav:active {
     transform: translateY(-50%) scale(0.95);
 }

 .slider-nav:disabled {
     opacity: 0.3;
     cursor: not-allowed;
     transform: translateY(-50%) scale(1);
 }

 .slider-nav:disabled:hover {
     background: rgba(31, 122, 31, 0.9);
     border-color: rgba(255, 255, 255, 0.3);
     box-shadow: none;
 }

 /* Slider Dots */
 .slider-dots {
     display: flex;
     justify-content: center;
     gap: 0.75rem;
     margin-top: 2.5rem;
 }

 .slider-dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     border: 2px solid rgba(31, 122, 31, 0.3);
     background: transparent;
     cursor: pointer;
     transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     padding: 0;
     position: relative;
 }

 .slider-dot::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%) scale(0);
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: #1f7a1f;
     transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 .slider-dot.active {
     border-color: #1f7a1f;
     transform: scale(1.2);
 }

 .slider-dot.active::before {
     transform: translate(-50%, -50%) scale(1);
 }

 .slider-dot:hover {
     border-color: #1f7a1f;
     transform: scale(1.15);
 }

 /* Comparison Card Styles */
 .transformation-card .comparison {
     position: relative;
     width: 100%;
     aspect-ratio: 1 / 1;
     background: #e9e9e9;
     user-select: none;
     -webkit-user-select: none;
     touch-action: none;
     border: 3px solid rgba(31, 122, 31, 0.1);
     border-radius: 16px;
     overflow: hidden;
     transition: border-color 0.3s ease;
 }

 .transformation-card:hover .comparison {
     border-color: rgba(31, 122, 31, 0.2);
 }

 .comparison-img {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .comparison-after {
     position: absolute;
     top: 0;
     right: 0;
     height: 100%;
     width: 50%;
     overflow: hidden;
 }

 .comparison-badge {
     position: absolute;
     top: 16px;
     padding: 6px 14px;
     border-radius: 8px;
     font-size: 0.7rem;
     font-weight: 700;
     letter-spacing: 0.06em;
     color: #fff;
     z-index: 3;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .comparison-badge--before {
     left: 16px;
     background: rgba(30, 30, 30, 0.85);
 }

 .comparison-badge--after {
     right: 16px;
     background: rgba(31, 122, 31, 0.9);
 }

 .comparison-handle {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 50%;
     width: 0;
     z-index: 4;
     cursor: ew-resize;
 }

 .comparison-line {
     position: absolute;
     top: 0;
     bottom: 0;
     left: -2px;
     width: 4px;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
     border: 1px solid rgba(31, 122, 31, 0.2);
     border-radius: 2px;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
 }

 .comparison-knob {
     position: absolute;
     top: 50%;
     left: -22px;
     transform: translateY(-50%);
     width: 44px;
     height: 44px;
     border-radius: 50%;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
     border: 3px solid rgba(31, 122, 31, 0.3);
     display: grid;
     grid-auto-flow: column;
     align-items: center;
     justify-content: center;
     gap: 3px;
     transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     backdrop-filter: blur(10px);
 }

 .comparison-knob:hover {
     transform: translateY(-50%) scale(1.1);
     border-color: rgba(31, 122, 31, 0.5);
     box-shadow: 0 8px 25px rgba(31, 122, 31, 0.2);
 }

 .comparison-knob i {
     color: rgba(31, 122, 31, 0.7);
     font-size: 0.8rem;
     line-height: 1;
 }

 .comparison-handle:focus {
     outline: none;
 }

 .comparison-handle:focus .comparison-knob {
     box-shadow: 0 0 0 4px rgba(34, 139, 34, 0.25), 0 8px 25px rgba(31, 122, 31, 0.2);
 }

 .transformation-caption {
     padding: 1.2rem 1rem;
     text-align: center;
     font-size: 0.8rem;
     color: #6b6b6b;
     font-weight: 500;
     letter-spacing: 0.02em;
 }

 /* Loading Animation */
 .transformation-slider-wrapper.loading .slider-track {
     opacity: 0;
 }

 .transformation-slider-wrapper.loaded .slider-track {
     opacity: 1;
 }

 /* Responsive Design */
 @media (max-width: 991px) {
     .transformation-slider-wrapper {
         padding: 0 50px;
     }

     .slider-nav {
         width: 48px;
         height: 48px;
         font-size: 1.2rem;
     }

     .comparison-badge {
         top: 12px;
         padding: 5px 12px;
         font-size: 0.65rem;
     }

     .comparison-knob {
         width: 40px;
         height: 40px;
         left: -20px;
     }
 }

 @media (max-width: 767px) {
     .transformation-card {
         flex: 0 0 100%;
         width: 100%;
     }

     .transformation-slider-wrapper {
         padding: 0 40px;
     }

     .slider-nav {
         width: 44px;
         height: 44px;
         font-size: 1.1rem;
     }

     .slider-dots {
         margin-top: 2rem;
         gap: 0.6rem;
     }

     .slider-dot {
         width: 10px;
         height: 10px;
     }

     .comparison-badge {
         top: 10px;
         padding: 4px 10px;
         font-size: 0.6rem;
     }

     .comparison-knob {
         width: 36px;
         height: 36px;
         left: -18px;
     }

     .comparison-knob i {
         font-size: 0.7rem;
     }

     .transformation-caption {
         font-size: 0.75rem;
         padding: 1rem 0.8rem;
     }
 }

 @media (max-width: 575px) {
     .transformation-slider-wrapper {
         padding: 0 35px;
     }

     .slider-nav {
         width: 40px;
         height: 40px;
         font-size: 1rem;
     }

     .slider-dots {
         gap: 0.5rem;
     }

     .slider-dot {
         width: 8px;
         height: 8px;
     }

     .comparison {
         border-width: 2px;
         border-radius: 12px;
     }

     .comparison-badge {
         top: 8px;
         padding: 3px 8px;
         font-size: 0.55rem;
     }

     .comparison-knob {
         width: 32px;
         height: 32px;
         left: -16px;
     }

     .comparison-knob i {
         font-size: 0.6rem;
     }

     .transformation-caption {
         font-size: 0.7rem;
         padding: 0.8rem 0.6rem;
     }
 }

 /* How It Works Section */
 .how-section {
     background: #fff;
     padding: 7rem 0;
 }

 .how-header {
     max-width: 720px;
     margin: 0 auto 2.25rem;
 }

 .how-header h2 {
     font-family: 'Georgia', serif;
     font-weight: 700;
     font-size: clamp(1.35rem, 2.6vw, 2.05rem);
     color: #1c1c1c;
     margin-bottom: 0.4rem;
 }

 .how-header p {
     color: #6b6b6b;
     font-size: 0.95rem;
     line-height: 1.5;
     margin: 0;
 }

 .how-grid {
     display: grid;
     grid-template-columns: repeat(4, minmax(0, 1fr));
     gap: 1.5rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .how-step {
     padding: 0.5rem 0.25rem;
 }

 .how-number {
     font-family: 'Georgia', serif;
     font-size: 3.5rem;
     font-weight: 700;
     color: rgba(34, 139, 34, 0.12);
     line-height: 1;
     margin-bottom: 0.25rem;
 }

 .how-icon {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     background: rgba(34, 139, 34, 0.08);
     border: 1px solid rgba(34, 139, 34, 0.18);
     margin: 0 auto 0.85rem;
     display: grid;
     place-items: center;
 }

 .how-icon i {
     color: #1f7a1f;
     font-size: 1.1rem;
 }

 .how-step h3 {
     font-family: 'Georgia', serif;
     font-weight: 700;
     font-size: 0.95rem;
     color: #222;
     margin: 0 0 0.35rem;
 }

 .how-step p {
     color: #6b6b6b;
     font-size: 1rem;
     line-height: 1.55;
     margin: 0;
 }

 /* How It Works responsive layout */
 @media (max-width: 991px) {
     .how-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
         gap: 1.25rem;
     }
 }

 @media (max-width: 575px) {
     .how-grid {
         grid-template-columns: 1fr;
         max-width: 420px;
     }
 }

 /* Service Area Section */
 .service-area-section {
     background: #f6f2ec;
     padding: 7rem 0;
 }

 .service-area-header {
     max-width: 720px;
     margin: 0 auto 2.25rem;
 }

 .service-area-header h2 {
     font-family: 'Georgia', serif;
     font-weight: 700;
     font-size: clamp(1.35rem, 2.6vw, 2.05rem);
     color: #1c1c1c;
     margin-bottom: 0.4rem;
 }

 .service-area-header p {
     color: #6b6b6b;
     font-size: 0.95rem;
     line-height: 1.5;
     margin: 0;
 }

 .location-tags-grid {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 0.75rem;
     max-width: 1000px;
     margin: 0 auto;
     opacity: 1;
 }

 .location-tag {
     display: inline-flex;
     align-items: center;
     padding: 0.4rem 0.85rem;
     background: #fff;
     border: 1px solid rgba(0, 0, 0, 0.08);
     border-radius: 20px;
     font-size: 0.75rem;
     font-weight: 500;
     color: #444;
     transition: transform 180ms ease, box-shadow 180ms ease;
 }

 .location-tag i {
     color: #1f7a1f;
     font-size: 0.75rem;
 }

 .location-tag:hover {
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
 }

 /* Service Area responsive layout */
 @media (max-width: 767px) {
     .location-tags-grid {
         gap: 0.5rem;
     }
     
     .location-tag {
         font-size: 0.7rem;
         padding: 0.35rem 0.75rem;
     }
 }

 /* Testimonial Section */
 .testimonial-section {
     background: #fff;
     padding: clamp(2.5rem, 5vw, 4.75rem) 0;
 }

 .testimonial-header {
     max-width: 720px;
     margin: 0 auto 2.25rem;
 }

 .testimonial-header h2 {
     font-family: 'Georgia', serif;
     font-weight: 700;
     font-size: clamp(1.35rem, 2.6vw, 2.05rem);
     color: #1c1c1c;
     margin-bottom: 0.4rem;
 }

 .testimonial-header p {
     color: #6b6b6b;
     font-size: 0.95rem;
     line-height: 1.5;
     margin: 0;
 }

 .testimonial-carousel {
     overflow: hidden;
     position: relative;
     max-width: 1200px;
     margin: 0 auto;
 }

 .testimonial-track {
     display: flex;
     animation: autoSlide 15s linear infinite;
     will-change: transform;
     padding-top: 20px;
 }

 .testimonial-card {
     flex: 0 0 auto;
     width: 100%;
     max-width: 375px;
     background: #F9F8F6;
     border: 1px solid rgba(0, 0, 0, 0.08);
     border-radius: 10px;
     padding: 1.75rem 1.5rem;
     margin: 0 0.75rem;
     /* box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05); */
     transition: transform 250ms ease, box-shadow 250ms ease;
 }

 .testimonial-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
 }

 .stars {
     color: #f39c12;
     font-size: 0.9rem;
     margin-bottom: 0.85rem;
 }

 .stars i {
     margin-right: 2px;
 }

 .quote {
     color: #444;
     font-size: 0.9rem;
     line-height: 1.6;
     margin-bottom: 1.25rem;
     font-style: italic;
 }

 .client-name {
     color: #222;
     font-weight: 700;
     font-size: 0.85rem;
     margin: 0 0 0.15rem;
 }

 .client-location {
     color: #6b6b6b;
     font-size: 0.75rem;
     margin: 0;
 }

 /* Auto-slide animation - moves by card width */
 @keyframes autoSlide {
     0% {
         transform: translateX(0);
     }
     20% {
         transform: translateX(0);
     }
     25% {
         transform: translateX(-405px); /* card width + margin */
     }
     45% {
         transform: translateX(-405px);
     }
     50% {
         transform: translateX(-810px); /* 2 cards */
     }
     70% {
         transform: translateX(-810px);
     }
     75% {
         transform: translateX(-1215px); /* 3 cards */
     }
     95% {
         transform: translateX(-1215px);
     }
     100% {
         transform: translateX(-1215px);
     }
 }

 /* Pause on hover */
 .testimonial-carousel:hover .testimonial-track {
     animation-play-state: paused;
 }

 /* Clone cards for seamless loop */
 .testimonial-track::before,
 .testimonial-track::after {
     content: '';
     flex: 0 0 auto;
     width: 0.75rem;
 }

 /* Testimonial responsive layout */
 @media (min-width: 992px) {
     .testimonial-track {
         width: calc(380px * 6 + 1.5rem * 6); /* 6 cards for seamless loop */
     }
 }

 @media (max-width: 991px) {
     .testimonial-card {
         max-width: 340px;
         padding: 1.5rem 1.25rem;
     }
     
     @keyframes autoSlide {
         0% {
             transform: translateX(0);
         }
         20% {
             transform: translateX(0);
         }
         25% {
             transform: translateX(-365px); /* card width + margin */
         }
         45% {
             transform: translateX(-365px);
         }
         50% {
             transform: translateX(-730px); /* 2 cards */
         }
         70% {
             transform: translateX(-730px);
         }
         75% {
             transform: translateX(-1095px); /* 3 cards */
         }
         95% {
             transform: translateX(-1095px);
         }
         100% {
             transform: translateX(-1095px);
         }
     }
 }

 @media (max-width: 767px) {
     .testimonial-card {
         max-width: 300px;
         padding: 1.25rem 1rem;
         margin: 0 0.5rem;
     }
     
     .quote {
         font-size: 0.85rem;
     }
     
     .testimonial-carousel {
         margin: 0 1rem;
     }
     
     @keyframes autoSlide {
         0% {
             transform: translateX(0);
         }
         20% {
             transform: translateX(0);
         }
         25% {
             transform: translateX(-325px); /* card width + margin */
         }
         45% {
             transform: translateX(-325px);
         }
         50% {
             transform: translateX(-650px); /* 2 cards */
         }
         70% {
             transform: translateX(-650px);
         }
         75% {
             transform: translateX(-975px); /* 3 cards */
         }
         95% {
             transform: translateX(-975px);
         }
         100% {
             transform: translateX(-975px);
         }
     }
 }

 @media (max-width: 480px) {
     .testimonial-card {
         max-width: 280px;
     }
     
     @keyframes autoSlide {
         0% {
             transform: translateX(0);
         }
         20% {
             transform: translateX(0);
         }
         25% {
             transform: translateX(-305px); /* card width + margin */
         }
         45% {
             transform: translateX(-305px);
         }
         50% {
             transform: translateX(-610px); /* 2 cards */
         }
         70% {
             transform: translateX(-610px);
         }
         75% {
             transform: translateX(-915px); /* 3 cards */
         }
         95% {
             transform: translateX(-915px);
         }
         100% {
             transform: translateX(-915px);
         }
     }
 }

 /* Consultation Section */
 .consultation-section {
     background:#F9F8F6;
     padding: clamp(3rem, 6vw, 5rem) 0;
     color: white;
 }

 .consultation-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     max-width: 850px;
     grid-template-columns: 1fr 1.2fr;
     gap: 3rem;
     background: #2E7648;
     align-items: center;
     padding-left: 1.5rem;
     border-radius: 20px;
    box-shadow: 0 0 18px 4px #0000002b;
 }

 .consultation-info h2 {
     font-family: 'Georgia', serif;
     font-size: clamp(1.3rem, 2.5vw, 2rem);
     font-weight: 700;
     margin-bottom: 1rem;
     line-height: 1.2;
 }

 .consultation-info p {
     font-size: 1.1rem;
     line-height: 1.6;
     margin-bottom: 2rem;
     opacity: 0.95;
 }

 .phone-link {
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
     font-size: 1.3rem;
     font-weight: 600;
     color: white;
     text-decoration: none;
     padding: 0.75rem 1.5rem;
     border: 2px solid rgba(255, 255, 255, 0.3);
     border-radius: 50px;
     transition: all 0.3s ease;
 }

 .phone-link:hover {
     background: rgba(255, 255, 255, 0.1);
     border-color: rgba(255, 255, 255, 0.5);
     transform: translateY(-2px);
     color: white;
 }

 .consultation-form-container {
     background: white;
     border-radius: 16px;
     padding: 2.5rem;
    margin-right: -1px;
    width: 520px;
     border-radius: 0px 10px 10px 0px;
}
 

 .consultation-form-container h3 {
     font-family: 'Georgia', serif;
     font-size: 1.5rem;
     font-weight: 700;
     color: #1c1c1c;
     margin-bottom: 2rem;
     text-align: center;
 }

 .consultation-form {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .form-group {
     position: relative;
 }

 .consultation-form input,
 .consultation-form select,
 .consultation-form textarea {
     width: 100%;
     padding: 0.8rem 1.25rem;
     border: 1px solid #e0e0e0;
     border-radius: 12px;
     font-size: 0.95rem;
     font-family: inherit;
     transition: all 0.3s ease;
     background: #f8f9fa;
     color: #333;
 }

 .consultation-form input::placeholder,
 .consultation-form textarea::placeholder {
     color: #999;
 }

 .consultation-form input:focus,
 .consultation-form select:focus,
 .consultation-form textarea:focus {
     outline: none;
     border-color: #228B22;
     background: white;
     box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
 }

 .consultation-form textarea {
     resize: vertical;
     min-height: 120px;
 }

 .submit-btn {
     background: #2E7648;
     color: white;
     border: none;
     padding: 1.125rem 2rem;
     font-size: 1rem;
     font-weight: 600;
     border-radius: 12px;
     cursor: pointer;
     transition: all 0.3s ease;
     margin-top: 1rem;
     width: 100%;
 }

 .submit-btn:hover {
     background: #267a45;
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(34, 139, 34, 0.3);
 }

 /* Popup Modal */
 .popup-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.7);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }

 .popup-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 .popup-content {
     background: white;
     border-radius: 12px;
     padding: 2rem;
     max-width: 500px;
     width: 90%;
     max-height: 90vh;
     overflow-y: auto;
     position: relative;
     transform: scale(0.8);
     transition: transform 0.3s ease;
 }

 .popup-overlay.active .popup-content {
     transform: scale(1);
 }

 .close-btn {
     position: absolute;
     top: 1rem;
     right: 1rem;
     font-size: 1.5rem;
     color: #666;
     cursor: pointer;
     width: 32px;
     height: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     transition: all 0.3s ease;
 }

 .close-btn:hover {
     background: #f0f0f0;
     color: #333;
 }

 /* Consultation Section Responsive */
 @media (max-width: 991px) {
     .consultation-container {
         grid-template-columns: 1fr;
         gap: 2rem;
         text-align: center;
         justify-content: center;
         padding: 0 1rem;
     }
     
     .consultation-info {
         max-width: 600px;
         margin: 0 auto;
         text-align: center;
         padding: 0px 30px;
     }
     
     .consultation-info h2 {
         font-size: 1.8rem;
         margin-bottom: 1.5rem;
     }
     
     .consultation-info p {
         font-size: 1rem;
         margin-bottom: 2rem;
     }
     
     .phone-link {
         justify-content: center;
         font-size: 1.1rem;
         padding: 0.875rem 1.75rem;
     }
     
     .consultation-form-container {
         margin: 0 auto;
         padding: 2rem;
         width: 100%;
         max-width: 500px;
     }
     
     .consultation-form-container h3 {
         font-size: 1.3rem;
         margin-bottom: 1.5rem;
     }
     
     .consultation-form input,
     .consultation-form select,
     .consultation-form textarea {
         font-size: 16px; /* Prevent zoom on iOS */
         padding: 1rem 1.25rem;
         border-radius: 5px;
     }
     
     .submit-btn {
         font-size: 1.1rem;
         padding: 1rem 2rem;
         border-radius: 12px;
     }
 }

 @media (max-width: 575px) {
     .consultation-section {
         padding: 3rem 1rem;
     }
     
     .consultation-container {
         padding: 0px;
        gap: 1.5rem;
        padding-top: 50px;
        padding-bottom: 10px;
     }
     
     .consultation-info h2 {
         font-size: 1.6rem;
         margin-bottom: 1.25rem;
     }
     
     .consultation-info p {
         font-size: 0.95rem;
         margin-bottom: 1.75rem;
     }
     
     .phone-link {
         font-size: 1rem;
         padding: 0.75rem 1.5rem;
     }
     
     .consultation-form-container {
         padding: 1.75rem;
         margin: 0 0.5rem;
         width: calc(100% - 1rem);
         border-radius: 16px;
     }
     
     .consultation-form-container h3 {
         font-size: 1.2rem;
         margin-bottom: 1.25rem;
     }
     
     .consultation-form {
         gap: 1rem;
     }
     
     .consultation-form input,
     .consultation-form select,
     .consultation-form textarea {
         font-size: 16px; /* Prevent zoom on iOS */
         padding: 0.5rem 1rem;
         border-radius: 5px;
         min-height: 48px; /* Better touch targets */
     }
     
     .submit-btn {
         font-size: 1rem;
         padding: 0.875rem 1.5rem;
         min-height: 48px; /* Better touch targets */
         border-radius: 5px;
     }
     
     .popup-content {
         padding: 1.5rem;
         margin: 1rem;
         width: calc(100% - 2rem);
         max-height: 100vh;
     }
 }

 /* Don't Wait Section */
 .dont-wait-section {
     background: #2E7648;
     padding: clamp(2.5rem, 5vw, 4rem) 0;
     color: white;
     text-align: center;
 }

 .dont-wait-section h2 {
     font-family: 'Georgia', serif;
     font-size: clamp(1.5rem, 3vw, 2.2rem);
     font-weight: 700;
     margin-bottom: 1rem;
     line-height: 1.2;
 }

 .dont-wait-section p {
     font-size: 1.1rem;
     line-height: 1.6;
     margin-bottom: 2rem;
     opacity: 0.95;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .phone-link-large {
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
     font-size: 1.4rem;
     font-weight: 700;
     color: white;
     text-decoration: none;
     padding: 1rem 2rem;
     border: 2px solid rgba(255, 255, 255, 0.3);
     border-radius: 50px;
     transition: all 0.3s ease;
     background: rgba(255, 255, 255, 0.1);
 }

 .phone-link-large:hover {
     background: rgba(255, 255, 255, 0.2);
     border-color: rgba(255, 255, 255, 0.5);
     transform: translateY(-3px);
     color: white;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
 }

 /* Footer Section */
 .footer-section {
     background: #1a1a1a;
     color: #999;
     padding: 2rem 0;
     text-align: center;
 }

 .footer-section p {
     font-size: 0.85rem;
     line-height: 1.6;
     margin: 0;
 }

 /* Don't Wait and Footer Responsive */
 @media (max-width: 575px) {
     .dont-wait-section {
         padding: 2rem 0;
     }
     
     .dont-wait-section h2 {
         font-size: 1.4rem;
     }
     
     .dont-wait-section p {
         font-size: 1rem;
         margin-bottom: 1.5rem;
     }
     
     .phone-link-large {
         font-size: 1.2rem;
         padding: 0.875rem 1.5rem;
     }
     
     .footer-section {
         padding: 1.5rem 0;
     }
     
     .footer-section p {
         font-size: 1rem;
     }
 }
