/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red:      #dc2626;
    --red-dark: #991b1b;
    --orange:   #f97316;
    --green:    #16a34a;
    --bg:       #0f0f0f;
    --bg2:      #141414;
    --card:     #1c1c1c;
    --card2:    #222222;
    --border:   #2a2a2a;
    --text:     #e5e5e5;
    --muted:    #9ca3af;
    --gold:     #fbbf24;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
}

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

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header ───────────────────────────────────────────────────────────────── */
header {
    background: linear-gradient(135deg, #1a0000 0%, #0f0f0f 100%);
    border-bottom: 3px solid var(--red);
    padding: 40px 0 24px;
    text-align: center;
}

.header-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}

header h1 {
    font-size: clamp(22px, 5vw, 38px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.header-sub {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 24px;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

nav a {
    color: var(--text);
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.2s;
    text-decoration: none;
}

nav a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(rgba(0,0,0,0.72), rgba(15,0,0,0.88)),
                url('images/photo4.jpg') center center / cover no-repeat;
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.hero-stars {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.hero h2 {
    font-size: clamp(18px, 3.5vw, 30px);
    font-weight: 700;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 16px;
    line-height: 1.4;
}

.hero-sub {
    color: var(--muted);
    margin-bottom: 28px;
    font-size: 15px;
}

.hero-sub strong { color: var(--text); }

.hero-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-red    { background: rgba(220,38,38,0.15); color: #f87171; border: 1px solid rgba(220,38,38,0.3); }
.tag-orange { background: rgba(249,115,22,0.15); color: #fb923c; border: 1px solid rgba(249,115,22,0.3); }

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section      { padding: 72px 0; }
.section-dark { background: var(--bg2); }

.section-title {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    padding-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 48px; height: 3px;
    background: var(--red);
    border-radius: 2px;
}

.section-sub {
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 640px;
    font-size: 15px;
}

/* ── Stats Row ────────────────────────────────────────────────────────────── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (max-width: 600px) { .stats-row { grid-template-columns: 1fr; } }

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.stat-number {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-number.red,
.stat-number.green,
.stat-number.orange { color: #fff; }

.stat-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Main Review Card ─────────────────────────────────────────────────────── */
.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: 12px;
    padding: 32px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 48px; height: 48px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.reviewer-name { font-weight: 600; color: #fff; font-size: 16px; }
.reviewer-date { color: var(--muted); font-size: 13px; }

.review-stars { color: var(--gold); font-size: 24px; letter-spacing: 2px; }

.review-body p { margin-bottom: 16px; color: var(--text); line-height: 1.85; }
.review-body p:last-child { margin-bottom: 0; }
.review-body strong { color: #fff; }

.review-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-detail { font-size: 14px; color: var(--muted); }
.service-detail .label { color: var(--text); font-weight: 600; }

/* ── Photo Grid ───────────────────────────────────────────────────────────── */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

@media (max-width: 640px) { .photo-grid { grid-template-columns: 1fr; } }

.photo-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}

.photo-card:hover { border-color: var(--red); transform: scale(1.01); }

.photo-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}

.photo-placeholder {
    background: var(--card);
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.photo-icon { font-size: 40px; }
.photo-placeholder p { font-weight: 600; color: var(--text); }
.photo-placeholder small { color: var(--muted); font-size: 12px; }

.photo-caption {
    background: rgba(0,0,0,0.6);
    padding: 12px 16px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    border-top: 1px solid var(--border);
}

/* ── Lightbox ─────────────────────────────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
}

/* ── Community Reviews ────────────────────────────────────────────────────── */
.review-form-card,
.contact-form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 40px;
}

.review-form-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--red);
}

textarea { resize: vertical; }

/* ── Star Rating Input ────────────────────────────────────────────────────── */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.star-rating input { display: none; }

.star-rating label {
    font-size: 34px;
    color: #333;
    cursor: pointer;
    transition: color 0.1s;
    margin: 0;
    line-height: 1;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label { color: var(--gold); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }

/* ── Alerts ───────────────────────────────────────────────────────────────── */
.alert {
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
}

.alert-success {
    background: rgba(22,163,74,0.1);
    border: 1px solid rgba(22,163,74,0.3);
    color: #4ade80;
}

.alert-error {
    background: rgba(220,38,38,0.1);
    border: 1px solid rgba(220,38,38,0.3);
    color: #f87171;
}

/* ── Community Reviews List ───────────────────────────────────────────────── */
.no-reviews {
    color: var(--muted);
    text-align: center;
    padding: 40px;
    background: var(--card);
    border-radius: 12px;
    border: 1px dashed var(--border);
    font-size: 15px;
}

.reviews-list { display: flex; flex-direction: column; gap: 20px; }

.community-review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.community-review-text {
    margin-top: 16px;
    color: var(--text);
    line-height: 1.8;
}

/* ── Links Grid ───────────────────────────────────────────────────────────── */
.links-grid { display: flex; flex-direction: column; gap: 12px; }

.link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
}

.link-card:hover {
    border-color: var(--red);
    background: var(--card2);
    text-decoration: none;
    transform: translateX(4px);
}

.link-icon { font-size: 28px; flex-shrink: 0; }
.link-content { flex: 1; }
.link-title { font-weight: 600; color: #fff; margin-bottom: 4px; }
.link-desc { font-size: 13px; color: var(--muted); }
.link-arrow { color: var(--muted); font-size: 20px; transition: color 0.2s; }
.link-card:hover .link-arrow { color: var(--red); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
    background: #0a0a0a;
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
}

footer p {
    color: var(--muted);
    font-size: 14px;
    max-width: 640px;
    margin: 0 auto 8px;
}

.footer-small { font-size: 12px !important; color: #555 !important; }
