* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

        :root {
            --primary-dark: #1a1a1a;
            --secondary-dark: #2d2d2d;
            --accent-gold: #2563eb;
            --accent-dark-gold: #1d4ed8;
            --bg-light: #f8f8f8;
            --bg-white: #ffffff;
            --text-dark: #1a1a1a;
            --text-medium: #4a4a4a;
            --text-light: #6a6a6a;
            --border-light: #e5e5e5;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            background-color: var(--bg-white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--primary-dark);
            line-height: 1.3;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-light);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-dark);
            letter-spacing: -0.5px;
        }

        .logo span {
            color: var(--accent-gold);
            font-weight: 400;
        }

        .main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-gold);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 2px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--accent-gold);
            color: white;
            border: 2px solid var(--accent-gold);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--accent-gold);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-dark);
            border: 2px solid var(--primary-dark);
        }

        .btn-outline:hover {
            background: var(--primary-dark);
            color: white;
            transform: translateY(-2px);
        }

        .btn-whatsapp {
            background: #25d366;
            color: white;
            border: 2px solid #25d366;
        }

        .btn-whatsapp:hover {
            background: transparent;
            color: #25d366;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
            padding: 140px 40px 120px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(30deg, rgba(201, 169, 97, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(201, 169, 97, 0.05) 87.5%, rgba(201, 169, 97, 0.05)),
                linear-gradient(150deg, rgba(201, 169, 97, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(201, 169, 97, 0.05) 87.5%, rgba(201, 169, 97, 0.05)),
                linear-gradient(30deg, rgba(201, 169, 97, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(201, 169, 97, 0.05) 87.5%, rgba(201, 169, 97, 0.05)),
                linear-gradient(150deg, rgba(201, 169, 97, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(201, 169, 97, 0.05) 87.5%, rgba(201, 169, 97, 0.05));
            background-size: 80px 140px;
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-subtitle {
            font-size: 0.95rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: white;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 30px;
            color: white;
            line-height: 1.1;
            font-weight: 600;
            letter-spacing: -2px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 45px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Stats Bar */
        .stats-bar {
            background: white;
            padding: 50px 40px;
            border-bottom: 1px solid var(--border-light);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-gold);
            font-family: 'Playfair Display', serif;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-medium);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Services Section */
        .services {
            padding: 120px 40px;
            background: var(--bg-light);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }

        .section-label {
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .section-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--primary-dark);
            letter-spacing: -1px;
        }

        .section-description {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .service-card {
            background: white;
            padding: 50px 40px;
            border: 1px solid var(--border-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: var(--accent-gold);
            transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-number {
            font-size: 0.85rem;
            color: var(--accent-gold);
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 25px;
        }

        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--primary-dark);
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* About Section */
        .about {
            padding: 120px 40px;
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
        }

        .about-text h3 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--primary-dark);
            line-height: 1.3;
        }

        .about-text p {
            color: var(--text-light);
            margin-bottom: 25px;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .about-features {
            list-style: none;
            margin-top: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .about-features li {
            padding: 20px;
            background: var(--bg-light);
            border-left: 3px solid var(--accent-gold);
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .about-features li:hover {
            background: var(--accent-gold);
            color: white;
            transform: translateX(5px);
        }

        .about-image {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            height: 600px;
            position: relative;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(30deg, rgba(201, 169, 97, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(201, 169, 97, 0.1) 87.5%, rgba(201, 169, 97, 0.1));
            background-size: 80px 140px;
        }

        .about-image-content {
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
            text-align: center;
            color: white;
        }

        .about-image-content h3 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 15px;
        }

        .about-image-content p {
            font-size: 1.1rem;
            color: var(--accent-gold);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 120px 40px;
            background: var(--bg-light);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .portfolio-item {
            background: white;
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 400px;
            position: relative;
        }

        .portfolio-item:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .portfolio-placeholder {
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
            text-align: center;
            background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
            position: relative;
        }

        .portfolio-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(30deg, rgba(201, 169, 97, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(201, 169, 97, 0.03) 87.5%, rgba(201, 169, 97, 0.03));
            background-size: 60px 100px;
        }

        .portfolio-placeholder h4 {
            font-size: 1.6rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .portfolio-placeholder p {
            color: var(--text-light);
            position: relative;
            z-index: 1;
        }

        /* Why Choose Section */
        .why-choose {
            padding: 120px 40px;
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .feature-box {
            text-align: center;
            padding: 50px 30px;
            background: var(--bg-light);
            border: 1px solid var(--border-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .feature-box::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 0;
            background: var(--accent-gold);
            transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .feature-box:hover::after {
            height: 4px;
        }

        .feature-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-gold);
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
            opacity: 0.3;
        }

        .feature-box h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }

        .feature-box p {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Contact Section */
        .contact {
            padding: 120px 40px;
            background: var(--bg-light);
        }

        .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border: 1px solid var(--border-light);
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.contact-form {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-light);
    background: var(--bg-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: white;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.contact-info-compact {
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.contact-item-compact {
    margin-bottom: 15px;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-item-compact strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.contact-item-compact a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item-compact a:hover {
    color: var(--primary-dark);
}

.contact-map {
    background: white;
    border: 1px solid var(--border-light);
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

        /* Footer */
        footer {
            background: var(--primary-dark);
            color: white;
            padding: 80px 40px 40px;
        }

        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .footer-logo span {
            color: var(--accent-gold);
        }

        .footer-content p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 12px;
            font-size: 0.95rem;
        }

        .footer-content a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-content a:hover {
            color: white;
        }

        .footer-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 50px 0 30px;
        }

        .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Call Floating Button */
.call-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

.call-float svg {
    width: 28px;
    height: 28px;
}

.call-float svg path {
    fill: white;
    stroke: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: var(--accent-gold);
    transform: translateY(-5px);
}

/* Header Scroll Effect */
header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                padding: 0 30px;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .section-title {
                font-size: 2.8rem;
            }

            .services-grid,
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid,
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
    .header-content {
        padding: 15px 20px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 30px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav a {
        font-size: 1.2rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-contact {
        display: none;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .call-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }

    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .hero {
        padding: 100px 20px 80px;
    }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .services,
            .about,
            .portfolio,
            .why-choose,
            .contact {
                padding: 80px 20px;
            }

            .services-grid,
            .portfolio-grid,
            .stats-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }

            .header-contact {
                gap: 10px;
            }

            .btn {
                padding: 12px 24px;
                font-size: 0.8rem;
            }

    .contact-form-wrapper {
        padding: 35px 25px;
    }

    .contact-map {
        min-height: 400px;
    }

    .about-image {
        height: 400px;
    }
}

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .hero-buttons,
            .contact-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

        .service-card,
    .feature-box {
        padding: 35px 25px;
    }
}

/* Service Pages Styles */
.service-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 100px 40px 80px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, rgba(201, 169, 97, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(201, 169, 97, 0.05) 87.5%, rgba(201, 169, 97, 0.05));
    background-size: 80px 140px;
    opacity: 0.3;
}

.service-hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: white;
}

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: white;
    line-height: 1.2;
}

.service-hero-description {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.service-overview {
    padding: 100px 40px;
    background: white;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.service-main-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.service-main-content h3 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-dark);
}

.service-main-content p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.service-features-list {
    list-style: none;
    margin: 25px 0;
}

.service-features-list li {
    padding: 15px 0 15px 30px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-medium);
    position: relative;
    line-height: 1.7;
}

.service-features-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

.service-features-list li strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.benefit-item {
    padding: 30px;
    background: var(--bg-light);
    border-left: 3px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-info-box {
    background: var(--bg-light);
    padding: 35px;
    border: 1px solid var(--border-light);
}

.service-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.service-info-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-info-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-medium);
    font-size: 0.95rem;
}

.service-info-list li:last-child {
    border-bottom: none;
}

.service-info-list li strong {
    color: var(--primary-dark);
    font-weight: 600;
    margin-right: 8px;
}

.related-services-list {
    list-style: none;
}

.related-services-list li {
    margin-bottom: 12px;
}

.related-services-list a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.related-services-list a:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.service-gallery {
    padding: 100px 40px;
    background: var(--bg-light);
}

.service-gallery h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 25px;
    background: white;
}

.gallery-caption h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.gallery-caption p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.service-features-section {
    padding: 100px 40px;
    background: white;
}

.service-features-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-dark);
}

.features-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-detail-box {
    padding: 40px 30px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-detail-box:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.feature-detail-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-detail-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.service-process {
    padding: 100px 40px;
    background: var(--bg-light);
}

.service-process h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    background: white;
    padding: 40px 30px;
    border: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--accent-gold);
    transition: height 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.process-step:hover::after {
    height: 4px;
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.service-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: white;
    text-align: center;
}

.service-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.service-cta p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* Service Pages Responsive */
@media (max-width: 1024px) {
    .service-content-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-detailed,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 80px 20px 60px;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-overview,
    .service-gallery,
    .service-features-section,
    .service-process,
    .service-cta {
        padding: 80px 20px;
    }

    .service-main-content h2,
    .service-gallery h2,
    .service-features-section h2,
    .service-process h2,
    .service-cta h2 {
        font-size: 2.2rem;
    }

    .service-benefits {
        grid-template-columns: 1fr;
    }

    .gallery-grid,
    .features-grid-detailed,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 2rem;
    }

    .service-main-content h2,
    .service-gallery h2,
    .service-features-section h2,
    .service-process h2 {
        font-size: 1.8rem;
    }

    .service-cta h2 {
        font-size: 2rem;
    }

    .service-info-box {
        padding: 25px 20px;
    }
}  
/* ========================================= */  
/* NEW PAGES STYLES (About, Gallery, Contact) */  
/* ========================================= */ 
/* ========================================= */
/* NEW PAGES STYLES (About, Gallery, Contact) */
/* ========================================= */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1.5rem 0;
    background: #f8f8f8;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #a08850;
}

.breadcrumb span {
    color: #666;
}

/* About Page Styles */
.about-page {
    padding: 80px 0;
}

.about-intro {
    margin-bottom: 80px;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-intro-image {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

/* Mission & Vision */
.mission-vision {
    margin-bottom: 80px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-box, .vision-box {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.mission-box h3, .vision-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

.mission-box p, .vision-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Core Values */
.core-values {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2C2C2C;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* About Stats */
.about-stats {
    margin-bottom: 80px;
}

/* Gallery Page Styles */
.gallery-page {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

/* Contact Page Styles */
.contact-page {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0 60px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 50%;
    color: var(--accent-gold);
}

.contact-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

.contact-info-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-info-note {
    font-size: 0.85rem !important;
    color: #999 !important;
}

/* Contact Form Labels */
.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2C2C2C;
}

/* Map Info */
.map-info {
    margin-top: 20px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

.map-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2C2C2C;
}

.map-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.map-buttons {
    display: flex;
    gap: 15px;
}

/* Service Areas */
.service-areas {
    margin-top: 80px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.area-item {
    background: #f8f8f8;
    padding: 15px;
    text-align: center;
    border-radius: 6px;
    font-weight: 500;
    color: #2C2C2C;
    transition: background 0.3s, color 0.3s;
}

.area-item:hover {
    background: var(--accent-gold);
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active Navigation Link */
.main-nav a.active {
    color: var(--accent-gold);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 60px;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero-content p {
        font-size: 1.1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

