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

:root {
    --primary: #b10020;
    --primary-dark: #7f0016;
    --accent: #d1a954;
    --bg: #f6f8fc;
    --surface: #ffffff;
    --surface-alt: #f0f3f8;
    --text: #122033;
    --muted: #5d6b7d;
    --border: #d9e1ec;
    --shadow: 0 10px 26px rgba(17, 34, 68, 0.08);
    --font-heading: "Playfair Display", serif;
    --font-body: "Montserrat", sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

.page-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 10% 20%, rgba(177, 0, 32, 0.08), transparent 22%),
        radial-gradient(circle at 88% 12%, rgba(209, 169, 84, 0.14), transparent 24%),
        linear-gradient(180deg, #fdfefe 0%, #f4f7fb 100%);
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.top-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(217, 225, 236, 0.8);
}

.top-strip {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.86rem;
    color: var(--muted);
    padding: 0.55rem 0;
    flex-wrap: wrap;
}

.top-strip a {
    color: var(--primary);
    font-weight: 700;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text);
}

.logo-img {
    width: 68px;
    height: 48px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    font-weight: 600;
    color: var(--muted);
}

.main-nav a:hover {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.68rem 1.25rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(120deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 8px 18px rgba(177, 0, 32, 0.26);
}

.btn-secondary {
    background: #fff;
    border-color: var(--border);
    color: var(--text);
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2.2rem;
    padding: 3.5rem 0 2.5rem;
}

.eyebrow {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    line-height: 1.25;
}

h1 {
    font-size: clamp(1.9rem, 3vw, 2.9rem);
}

.hero-text {
    margin-top: 1rem;
    color: var(--muted);
    max-width: 58ch;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.hero-badges span {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.83rem;
    font-weight: 600;
    color: #314055;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    min-height: 420px;
    box-shadow: var(--shadow);
}

.section {
    padding: 2.8rem 0;
}

.section-alt {
    background: var(--surface-alt);
    border-top: 1px solid #e6edf7;
    border-bottom: 1px solid #e6edf7;
}

.section-title {
    margin-bottom: 1.4rem;
}

.section-title h2 {
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.section-subtext {
    color: var(--muted);
    margin-top: 0.55rem;
}

.cards-grid {
    display: grid;
    gap: 1rem;
}

.services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 1.2rem;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.info-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.process-card .step-num {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    border: 1px solid #f0d0d5;
    background: #fff4f6;
}

.reviews-head {
    text-align: center;
}

.review-summary {
    margin: 0 auto 1.1rem;
    padding: 1rem;
    max-width: 680px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.rating-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
}

.stars {
    color: #f7b500;
    letter-spacing: 0.1em;
    margin-top: -0.2rem;
}

.rating-note {
    color: var(--muted);
    font-size: 0.86rem;
}

.reviews-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-card {
    background: #fff;
    border: 6px solid #fff;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(17, 34, 68, 0.06);
}

.review-card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #fff;
    display: block;
}

.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem;
}

.faq-item h3 {
    font-size: 1.12rem;
    margin-bottom: 0.35rem;
}

.faq-item p {
    color: var(--muted);
}

.contact-panel {
    background: linear-gradient(130deg, #fff 0%, #f8fbff 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 1.2rem;
}

.contact-form {
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

input,
textarea {
    width: 100%;
    font: inherit;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    color: var(--text);
    background: #fff;
}

textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 0.8rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #ca6d7c;
    box-shadow: 0 0 0 3px rgba(177, 0, 32, 0.1);
}

.map-section iframe {
    width: 100%;
    min-height: 420px;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.footer {
    margin-top: 3rem;
    background: #101b2c;
    color: #d5deec;
    padding-top: 2.1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 1.3rem;
}

.footer h3 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.55rem;
}

.footer p,
.footer a {
    color: #d5deec;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.4rem;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 1rem;
    padding: 0.9rem 0 1.3rem;
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

@media (max-width: 1080px) {
    .nav-wrap {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.9rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 2.2rem;
    }

    .hero-image img {
        min-height: 280px;
    }

    .top-strip {
        justify-content: center;
        text-align: center;
    }

    .nav-wrap {
        flex-wrap: wrap;
    }

    .brand {
        width: 100%;
        justify-content: center;
    }

    .main-nav {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.2rem;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav a {
        flex: 0 0 auto;
    }

    .review-summary {
        flex-direction: column;
        text-align: center;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-grid,
    .form-row,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .reviews-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .hero-cta {
        width: 100%;
    }

    .review-card img {
        height: 220px;
    }
}
