﻿/* ===== COLOR VARIABLES ===== */
:root {
    --primary: #0a1f24;
    --primary-dark: #061316;
    --primary-light: #1a3a42;
    --gold: #c9953a;
    --gold-light: #e8b85a;
    --gold-gradient: linear-gradient(135deg, #c9953a 0%, #e8b85a 100%);
    --white: #ffffff;
    --gray-light: #f5f2ed;
    --gray: #7a8a8a;
    --gray-dark: #4a5a5a;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.10);
    --radius: 12px;
    --transition: all 0.3s ease;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gray-light);
    color: #1a1a2e;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

/* ===== HEADER ===== */
.site-header {
    background: var(--primary);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

    .site-header.sticky {
        padding: 8px 0;
        background: rgba(10, 31, 36, 0.97);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    }

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: #f0d6a8;
    letter-spacing: -0.5px;
}

    .logo-main span {
        color: var(--gold-light);
    }

.logo-slogan {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .nav-links a {
        color: rgba(255, 255, 255, 0.7);
        font-weight: 500;
        font-size: 0.9rem;
        padding: 4px 0;
        position: relative;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--white);
        }

        .nav-links a i {
            font-size: 0.8rem;
            opacity: 0.5;
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta {
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .header-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(201, 149, 58, 0.3);
    }

.navbar-toggler {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    color: var(--gold-light);
    font-size: 1.4rem;
    padding: 4px 8px;
}

.mobile-menu {
    display: none;
    background: var(--primary);
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

    .mobile-menu.active {
        display: block;
        animation: slideDown 0.3s ease;
    }

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu ul {
    list-style: none;
}

    .mobile-menu ul li a {
        color: rgba(255, 255, 255, 0.7);
        padding: 10px 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 500;
    }

        .mobile-menu ul li a:hover {
            background: rgba(201, 149, 58, 0.08);
            color: var(--white);
            padding-left: 28px;
        }

        .mobile-menu ul li a i {
            width: 24px;
            color: var(--gold);
        }

.mobile-cta {
    background: var(--gold-gradient) !important;
    color: var(--primary) !important;
    border-radius: 8px !important;
    margin: 8px 20px;
    justify-content: center;
    font-weight: 600 !important;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    padding: 120px 0 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 149, 58, 0.12);
    border: 1px solid rgba(201, 149, 58, 0.2);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

    .hero-badge i {
        color: var(--gold);
    }

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

    .hero h1 span {
        color: var(--gold-light);
        border-bottom: 3px solid var(--gold);
        display: inline-block;
    }

.hero p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 28px;
    max-width: 450px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(201, 149, 58, 0.25);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(201, 149, 58, 0.35);
    }

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .btn-outline:hover {
        background: rgba(201, 149, 58, 0.12);
        border-color: var(--gold);
        color: var(--gold-light);
        transform: translateY(-2px);
    }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.6;
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* ===== SECTIONS ===== */
.section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 44px;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(201, 149, 58, 0.08);
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

    .section-title span {
        color: var(--gold);
    }

.section-subtitle {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ===== ABOUT ===== */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.about-text p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 16px 0 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

    .feature-item i {
        color: var(--gold);
        font-size: 1rem;
    }

.btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

    .btn-learn:hover {
        gap: 14px;
        color: var(--primary);
    }

/* ===== SERVICES ===== */
.services-section {
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e8e3dc;
    text-align: center;
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
        border-color: var(--gold);
    }

.service-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ===== WHY CHOOSE ===== */
.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-item {
    text-align: center;
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 28px 20px;
    transition: var(--transition);
    border: 1px solid #e8e3dc;
}

    .why-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
        border-color: var(--gold);
    }

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 149, 58, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

    .why-icon i {
        font-size: 1.6rem;
        color: var(--gold);
    }

.why-item h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.why-item p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 22px;
    box-shadow: var(--shadow);
    border: 1px solid #e8e3dc;
    transition: var(--transition);
}

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }

.testimonial-rating {
    color: #f39c12;
    font-size: 0.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.testimonial-card p {
    color: var(--gray-dark);
    line-height: 1.7;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author h4 {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.8rem;
}

/* ===== CTA ===== */
.cta-section {
    background: var(--primary);
    padding: 60px 0;
}

.cta-wrapper {
    text-align: center;
    color: var(--white);
}

    .cta-wrapper h2 {
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 10px;
        font-family: 'Playfair Display', serif;
    }

    .cta-wrapper p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        margin-bottom: 24px;
    }

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.btn-large {
    padding: 14px 36px;
    font-size: 1rem;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .btn-whatsapp:hover {
        background: #20b859;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    }

/* ===== CONTACT ===== */
.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #e8e3dc;
}

.contact-info {
    background: var(--primary);
    padding: 36px 32px;
    color: var(--white);
}

    .contact-info h3 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .contact-info > p {
        opacity: 0.7;
        margin-bottom: 24px;
        font-size: 0.9rem;
    }

.contact-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

    .contact-detail i {
        font-size: 1.2rem;
        color: var(--gold-light);
        width: 32px;
        margin-top: 2px;
    }

    .contact-detail div {
        display: flex;
        flex-direction: column;
    }

    .contact-detail strong {
        font-size: 0.7rem;
        opacity: 0.5;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .contact-detail span {
        font-size: 0.9rem;
    }

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 4px;
}

    .whatsapp-btn:hover {
        background: #20b859;
        transform: scale(1.02);
    }

.contact-form {
    padding: 36px 32px;
    background: var(--white);
}

    .contact-form h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 20px;
    }

.form-group {
    margin-bottom: 16px;
}

    .form-group .form-control {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        border: 2px solid #e8e3dc;
        font-family: inherit;
        font-size: 0.9rem;
        background: var(--white);
        transition: var(--transition);
    }

        .form-group .form-control:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201, 149, 58, 0.08);
        }

    .form-group textarea.form-control {
        resize: vertical;
        min-height: 90px;
    }

.btn-submit {
    background: var(--gold-gradient);
    color: var(--primary);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(201, 149, 58, 0.3);
    }

.alert-message {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    margin-top: 12px;
    font-weight: 500;
    font-size: 0.85rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    padding: 140px 0 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

    .page-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 500px;
        height: 500px;
        background: rgba(201, 149, 58, 0.03);
        border-radius: 50%;
    }

    .page-banner h1 {
        font-size: 2.8rem;
        font-weight: 900;
        font-family: 'Playfair Display', serif;
        margin-bottom: 10px;
    }

        .page-banner h1 span {
            color: var(--gold-light);
        }

    .page-banner p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.05rem;
        max-width: 500px;
        margin: 0 auto 16px;
    }

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

    .breadcrumb a {
        color: var(--gold-light);
    }

        .breadcrumb a:hover {
            color: var(--gold);
        }

    .breadcrumb i {
        font-size: 0.6rem;
    }

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    background: var(--white);
    padding: 70px 0;
}

.service-detail {
    padding: 50px 0;
    border-bottom: 1px solid #f0ebe3;
}

    .service-detail:last-child {
        border-bottom: none;
    }

    .service-detail.alt {
        background: var(--gray-light);
        margin: 0 -20px;
        padding: 50px 20px;
        border-radius: var(--radius);
    }

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

    .service-detail-grid.reverse {
        direction: rtl;
    }

        .service-detail-grid.reverse .service-detail-content {
            direction: ltr;
        }

        .service-detail-grid.reverse .service-detail-image {
            direction: ltr;
        }

.service-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .service-detail-image img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: var(--transition);
    }

    .service-detail-image:hover img {
        transform: scale(1.03);
    }

.service-detail-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 149, 58, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.service-detail-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.service-detail-content > p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
    margin-bottom: 24px;
}

    .service-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        color: var(--gray-dark);
    }

        .service-features li i {
            color: var(--gold);
            font-size: 1rem;
        }

.service-detail-content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

    .footer-logo-text span {
        font-size: 1.2rem;
        font-weight: 800;
        color: #f0d6a8;
    }

        .footer-logo-text span span {
            color: var(--gold-light);
        }

    .footer-logo-text small {
        font-size: 0.55rem;
        color: rgba(255, 255, 255, 0.3);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

    .social-links a {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.5);
        transition: var(--transition);
        font-size: 0.9rem;
    }

        .social-links a:hover {
            background: var(--gold-gradient);
            color: var(--primary);
            transform: translateY(-2px);
        }

.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
}

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 20px;
        height: 2px;
        background: var(--gold);
    }

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 6px;
    }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            transition: var(--transition);
        }

            .footer-col ul li a:hover {
                color: var(--white);
                padding-left: 4px;
            }

.contact-info-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    align-items: center;
}

    .contact-info-list li i {
        color: var(--gold-light);
        width: 18px;
        font-size: 1rem;
    }

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

    .footer-bottom p {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.3);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 28px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image img {
        height: 300px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

        .service-detail-grid.reverse {
            direction: ltr;
        }

            .service-detail-grid.reverse .service-detail-content {
                direction: ltr;
            }

            .service-detail-grid.reverse .service-detail-image {
                direction: ltr;
            }

    .service-detail.alt {
        margin: 0;
        padding: 30px 20px;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .page-banner h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .header-cta {
        display: none;
    }

    .navbar-toggler {
        display: block;
    }

    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }

        .hero h1 {
            font-size: 2.4rem;
        }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info-list li {
        justify-content: center;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .page-banner {
        padding: 110px 0 40px;
    }

        .page-banner h1 {
            font-size: 1.8rem;
        }

    .service-detail-image img {
        height: 220px;
    }

    .service-detail-content h3 {
        font-size: 1.3rem;
    }

    .service-detail {
        padding: 30px 0;
    }

        .service-detail.alt {
            padding: 30px 16px;
        }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-buttons a {
            justify-content: center;
        }

    .about-features {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 24px 18px;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .section {
        padding: 40px 0;
    }

    .service-card {
        padding: 20px 16px;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .logo-slogan {
        font-size: 0.5rem;
    }

    .page-banner h1 {
        font-size: 1.5rem;
    }

    .service-detail-image img {
        height: 180px;
    }

    .service-detail-content .btn-primary {
        width: 100%;
        justify-content: center;
    }
}
