:root {
    /* Colors */
    --primary: #05241C; /* Rich Forest Green */
    --primary-light: #0B3D2E;
    --accent: #82BE9A;  /* Classic Sage */
    --accent-hover: #6EB28A;
    --text-dark: #1A1C1A;
    --text-muted: #666666;
    --bg-light: #FAF9F6; /* Premium Alabaster */
    --bg-white: #FFFFFF;
    --white: #FFFFFF;
    --border: #E8E8E8;
    --top-bar: #041E17;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 15px 50px rgba(5, 36, 28, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 20px;
    --radius-lg: 100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

.sub-title {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .sub-title {
        font-size: 0.8rem;
    }
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(11, 61, 46, 0.2);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(11, 61, 46, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}



/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.icon-brand {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-white);
    z-index: 2000;
    transform: translateX(100%);
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.close-menu {
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav a {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary);
}

.mobile-nav a:hover {
    color: var(--accent);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.mobile-menu-footer .info-link {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
}

.mobile-menu-footer .social-links {
    display: flex;
    gap: 1.5rem;
}

.mobile-menu-footer .social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: url('assets/hero_bg.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(5, 36, 28, 0.85) 0%, rgba(5, 36, 28, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text-area {
    max-width: 700px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-star {
    color: #FFD700;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--accent);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .hero-btns {
        flex-direction: column;
    }
}

/* Services Section */
.services {
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: 0.4s;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent);
}

.service-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-icon-box {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-info {
    padding: 2.5rem 2rem 2rem;
}

.service-info h3 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.4rem;
}

.service-info p {
    color: var(--text-muted);
}

/* Transformations - Interactive Slider */
.transformation-container {
    margin-top: 4rem;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
}

.comparison-slider img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    pointer-events: none;
}

.image-before, .image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-before {
    z-index: 1;
    width: 50%;
    overflow: hidden;
}

.image-after {
    z-index: 0;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: ew-resize;
    margin: 0;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 5px;
    height: 500px;
    background: var(--white);
    pointer-events: none;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 11;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-button::before, .slider-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.slider-button::before {
    border-right: 8px solid var(--primary);
    left: 6px;
}

.slider-button::after {
    border-left: 8px solid var(--primary);
    right: 6px;
}

.transformation-details {
    margin-top: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.transformation-details h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

@media (max-width: 768px) {
    .comparison-slider, .comparison-slider img {
        height: 350px;
    }
}

/* Why Us */
.why-us {
    padding: 8rem 0;
}

.bg-light { background-color: var(--bg-light); }

.benefits-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(110, 207, 151, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.benefit-item h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.img-wrapper {
    position: relative;
}

.img-wrapper img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--accent);
}

.floating-badge .large-text {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}

.floating-badge .small-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 0.5rem;
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--radius-md);
    position: relative;
}

.testimonial-card .rating {
    display: flex;
    gap: 0.2rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.client-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
}

.client-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Final CTA */
.final-cta {
    padding: 10rem 0;
    background: linear-gradient(rgba(5, 36, 28, 0.92), rgba(5, 36, 28, 0.92)), url('assets/hero_bg.png') center/cover;
    color: var(--white);
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.center { text-align: center; }

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

@media (max-width: 600px) {
    .cta-btns {
        flex-direction: column;
    }
}

/* Contact */
.contact {
    padding: 8rem 0;
}

.info-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-link, .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.info-link i, .info-item i {
    color: var(--accent);
    font-size: 1.3rem;
}

.whatsapp-link {
    color: #25D366;
    font-weight: 700;
}

.trust-badges {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.badge-item i {
    color: var(--accent);
}

.contact-form-box {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(110, 207, 151, 0.2);
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand p {
    margin: 1.5rem 0;
    opacity: 0.7;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-nav h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-nav ul li {
    margin-bottom: 0.8rem;
}

.footer-nav ul a {
    opacity: 0.7;
}

.footer-nav ul a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* WhatsApp Floating */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: 0.4s;
}

.whatsapp-floating:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Signature Projects Gallery */
.projects {
    padding: 8rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-soft);
}

.project-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(5, 36, 28, 0.9) 0%, rgba(5, 36, 28, 0.2) 50%, transparent 100%);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: var(--accent);
}

.project-info span {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 932px) {
    .whatsapp-floating {
        bottom: 100px;
    }
}

.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 1.2rem;
    z-index: 1500;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.call-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-call-bar {
        display: block;
    }
    
    .services, .why-us, .projects, .testimonials, .contact {
        padding: 4.5rem 0;
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .project-card {
        height: 300px;
    }
}

/* Hero Button Refinement - Center for single button */
.hero-btns {
    justify-content: flex-start;
}

@media (max-width: 600px) {
    .hero-btns {
        align-items: flex-start;
    }
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}
