:root {
    --color-primary: #2e2521;
    --color-primary-dark: #1a1512;
    --color-primary-light: #4a3f3a;
    --color-accent: #8b7355;
    --color-text-dark: #1a1a1a;
    --color-text-light: #4a4a4a;
    --color-background: #FCF6EC;
    --color-white: #ffffff;
    --color-gray-light: #f9f3e8;
    --color-gray-medium: #f0e8dc;
    --color-border: #e8dfd0;
    --font-display: 'Crimson Pro', serif;
    --font-body: 'Work Sans', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-background);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-dark);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 24px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, rgba(44, 85, 48, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(44, 85, 48, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/aura.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    outline: 10px solid #ffff;
    box-sizing: border-box;
    padding-right: 43px;
    padding-bottom: 21px;
    margin-bottom: -3px;
    padding-top: 0px;
    background-color: rgba(142, 123, 102, 0.73);
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    color: var(--color-text-dark);
    line-height: 1.1;
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--color-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    margin-bottom: 24px;
    color: var(--color-primary);
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background-color: var(--color-gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background-color: var(--color-white);
    padding: 48px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--color-primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.service-description {
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.service-link:hover {
    color: var(--color-primary-dark);
}

/* Full Services Section */
.services-full {
    padding: 100px 0;
    background-color: var(--color-white);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--color-accent);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-item {
    padding: 24px;
    background-color: var(--color-gray-light);
    border-radius: 6px;
    border-left: 4px solid var(--color-primary);
}

.service-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.service-item p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 32px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 12px;
    color: var(--color-white);
}

.services-cta p {
    font-size: 24px;
    margin-bottom: 24px;
    font-family: var(--font-display);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background-color: var(--color-gray-light);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.portfolio-item {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image,
.project-preview:hover .portfolio-image {
    transform: scale(1.06);
}

.portfolio-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gray-medium) 0%, var(--color-gray-light) 100%);
    color: var(--color-accent);
    font-family: var(--font-display);
    font-size: 18px;
}

.image-placeholder.completed {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: var(--color-white);
}

.portfolio-info {
    padding: 24px;
}

.portfolio-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.portfolio-info p {
    color: var(--color-text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    padding: 40px;
    background-color: var(--color-gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.stars {
    color: var(--color-accent);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-primary);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--color-gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.contact-item p {
    color: var(--color-text-light);
}

.contact-item a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-form {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition-smooth);
    background-color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--color-accent);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--color-accent);
}

.social-links {
    display: flex;
    gap: 16px;
}

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

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

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-background) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, rgba(44, 85, 48, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(44, 85, 48, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
}

.page-title {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.page-subtitle {
    position: relative;
    z-index: 1;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Projects on Homepage */
.featured-projects {
    padding: 100px 0;
    background-color: var(--color-gray-light);
}

.projects-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.project-preview {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.project-preview:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.project-info {
    padding: 24px;
}

.project-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.project-info p {
    color: var(--color-text-light);
    font-size: 15px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Page Specific */
.category-intro {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.why-choose-us {
    margin-top: 80px;
    padding: 60px 40px;
    background-color: var(--color-gray-light);
    border-radius: 12px;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 48px;
    color: var(--color-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.benefit-item {
    text-align: center;
    padding: 24px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.benefit-item p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Contact Page Specific */
.contact-note {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 8px;
    font-style: italic;
}

.form-note {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 12px;
    text-align: center;
}

.why-contact {
    padding: 80px 0;
    background-color: var(--color-white);
}

.service-areas {
    padding: 80px 0;
    background-color: var(--color-gray-light);
}

.areas-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.areas-content p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.areas-grid ul {
    list-style: none;
    padding: 0;
}

.areas-grid li {
    padding: 8px 0;
    color: var(--color-text-dark);
    font-weight: 500;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Hover effects for links and cards */
.service-card,
.testimonial-card,
.portfolio-item,
.project-preview {
    will-change: transform;
}

/* Smooth transitions on all interactive elements */
a,
button,
.btn,
.filter-btn,
.service-card,
.portfolio-item {
    transition: var(--transition-smooth);
}

/* Active nav link styling */
.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition-smooth);
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .services-list,
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .portfolio-image {
        height: 240px;
    }

    .portfolio-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    display: block;
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.before-after {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 4 / 3;
    margin: 0 auto;
    overflow: hidden;
    user-select: none;
}

/* Portfolio card context — no extra margin needed */
.portfolio-item .before-after {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
}

.before-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.after-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

/* After image — JS sets its pixel width to match the container
   so before and after always show the identical crop */
.before-after .after-image-wrapper img {
    position: absolute;
    left: 0;
    top: 0;
    max-width: none !important;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Vertical divider line */
.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: white;
    z-index: 5;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

/* Circular drag handle centered on the line */
.slider-line::after {
    content: '\2194';
    position: absolute;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    font-size: 20px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 48px;
    text-align: center;
}

/* Invisible range input covers the entire image for easy dragging */
.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: ew-resize;
    opacity: 0;
    margin: 0;
}

/* ====================================
   BEFORE/AFTER SLIDER GRID LAYOUT
   ==================================== */

/* Desktop: 2 side-by-side + 1 centered below */
.sliders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

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

/* ====================================
   COMPLETE MOBILE RESPONSIVE FIXES
   ==================================== */

@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    /* MOBILE MENU BUTTON - CRITICAL FIX */
    .mobile-menu-btn {
        display: flex !important;
        position: relative;
        z-index: 1000;
    }
    
    /* Override inline styles on nav-links for mobile */
    .nav-links {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        background-color: var(--color-white) !important;
        padding: 24px !important;
        flex-direction: column !important;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition-smooth);
        pointer-events: none;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        pointer-events: all !important;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 12px;
        color: var(--color-primary) !important;
    }
    
    /* Hero section fixes */
    .hero-title {
        font-size: 32px !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px !important;
    }

    .map-embed {
        margin-top: 32px !important;
    }

    .map-embed iframe {
        height: 280px !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        position: static !important;
        right: 0 !important;
        gap: 12px;
    }
    
    /* Recent Projects - fix card width */
    .projects-preview {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    
    .project-preview {
        width: 100%;
        max-width: 100%;
    }
    
    /* Services cards */
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    /* Fix "Why Choose" section */
    .benefits-grid {
        grid-template-columns: 1fr !important;
    }
    
    .benefit-item {
        grid-area: auto !important;
    }
    
    /* Services page fixes */
    .services-list {
        grid-template-columns: 1fr !important;
    }
    
    .service-item {
        grid-area: auto !important;
    }
    
    /* Portfolio filters */
    .portfolio-filters {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .filter-btn {
        flex: 1 1 45%;
        min-width: 120px;
    }
    
    /* Portfolio grid */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Before/After Slider - Mobile: aspect-ratio handles sizing */
    .before-after {
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Contact page */
    .areas-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Footer fixes */
    .footer-content {
        grid-template-columns: 1fr !important;
    }
    
    .footer-section {
        grid-area: auto !important;
        position: static !important;
        right: 0 !important;
        text-align: center;
    }
    
    /* Text alignment fixes */
    .page-title,
    .section-title {
        font-size: 28px;
    }
    
    /* Remove any fixed widths */
    * {
        max-width: 100%;
    }
    
    /* Fix images */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* ===== Google Reviews Section ===== */
.google-reviews-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    justify-content: center;
}

.google-review-card .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
    color: var(--color-text-dark);
}

/* ===== About Page ===== */
.about-full {
    padding: 80px 0;
}

.about-full-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 500;
}

.team-section {
    padding: 80px 0;
    background-color: var(--color-gray-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.team-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    background-color: var(--color-accent);
    display: block;
    margin: 0;
}

.team-avatar svg {
    width: 40px;
    height: 40px;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.team-card-info {
    padding: 20px 24px;
    background: var(--color-white);
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.team-title {
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-accent);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.value-card p {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-full-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    .google-reviews-header {
        flex-direction: column;
        text-align: center;
    }
}
