@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@600;700&family=DM+Sans:opsz,wght@9..40,400;9..40,500&display=swap');

:root {
    --black: #111111;
    --black-rich: #212121;
    --black-soft: #1A1A1A;
    --black-card: #141414;
    --red: #CC2229;
    --red-dark: #A81B21;
    --red-bright: #E02830;
    --gold: #D4AE4C;
    --red-glow: rgba(204, 34, 41, 0.15);
    --white: #FFFFFF;
    --off-white: #F7F7F7;
    --gray-50: #FAFAFA;
    --gray-100: #F0F0F0;
    --gray-200: #E0E0E0;
    --gray-300: #C4C4C4;
    --gray-400: #9E9E9E;
    --gray-500: #6E6E6E;
    --gray-600: #4A4A4A;
    --gray-700: #333333;
    --gray-800: #222222;
    --text: #2A2A2A;
    --font-display: 'Barlow Semi Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.25s ease; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
#site-header, #site-footer { display: contents; }

/* ===== BUTTONS ===== */
.btn-red {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red-dark); color: var(--white);
    padding: 15px 32px; border-radius: 6px;
    font-weight: 600; font-size: 0.95rem;
    transition: all 0.25s; border: none; cursor: pointer;
    box-shadow: 0 4px 20px rgba(168,27,33,0.25);
}
.btn-red:hover { background: #8C161B; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(140,22,27,0.35); }
.btn-red svg { width: 18px; height: 18px; }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white);
    padding: 15px 32px; border-radius: 6px;
    font-weight: 600; font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.25s; cursor: pointer;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.04); }

/* ===== SECTION STYLES ===== */
section { padding: 90px 0; }
.section-label {
    display: inline-block;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--red);
    margin-bottom: 14px;
    position: relative;
    padding-left: 20px;
}
.section-label::before {
    content: '';
    position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 10px; height: 2px; background: var(--red);
}
.section-title {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 700;
    color: var(--black); line-height: 1.2;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1rem; color: var(--gray-500);
    max-width: 620px; line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }
.section-header.center .section-label { padding-left: 0; }
.section-header.center .section-label::before { display: none; }

/* ===== SERVICE CARDS ===== */
.services-section { background: var(--white); }
.services-section .svc-card { background: var(--gray-50); }
.services-section .svc-card:hover { background: var(--white); }

.svc-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    padding: 36px 30px;
    transition: all 0.3s;
    position: relative;
}
.svc-card::after {
    content: '';
    position: absolute; bottom: 0; left: 24px; right: 24px;
    height: 2px; background: var(--red);
    transform: scaleX(0); transition: transform 0.3s;
}
.svc-card:hover { border-color: var(--gray-200); box-shadow: 0 8px 32px rgba(0,0,0,0.06); transform: translateY(-4px); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card-icon {
    width: 50px; height: 50px; border-radius: 8px;
    background: var(--red-glow); display: flex;
    align-items: center; justify-content: center;
    margin-bottom: 22px;
}
.svc-card-icon svg { width: 24px; height: 24px; color: var(--red); }
.svc-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600;
    color: var(--black); margin-bottom: 10px;
}
.svc-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px; }
.svc-card .svc-bullets { margin-bottom: 20px; }
.svc-card .svc-bullets li {
    list-style: none; font-size: 0.85rem; color: var(--gray-500);
    padding: 4px 0 4px 20px; position: relative;
}
.svc-card .svc-bullets li::before {
    content: ''; position: absolute; left: 0; top: 12px;
    width: 8px; height: 8px; border-radius: 2px;
    background: var(--red-glow); border: 1.5px solid var(--red);
}
.svc-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.86rem; font-weight: 600; color: var(--red);
}
.svc-link:hover { gap: 10px; }
.svc-link svg { width: 16px; height: 16px; transition: transform 0.2s; }

.svc-sub { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--gray-100); }
.svc-sub h4 { font-size: 0.92rem; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.svc-sub p { font-size: 0.86rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 10px; }

/* ===== OPINION LETTER BANNER ===== */
.opinion-banner {
    background: var(--black-rich);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.opinion-banner::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(204,34,41,0.06) 0%, transparent 50%);
}
.opinion-inner {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px;
}
.opinion-left { display: flex; align-items: center; gap: 20px; }
.opinion-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: rgba(204,34,41,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.opinion-icon svg { width: 28px; height: 28px; color: var(--red); }
.opinion-text h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: 4px; }
.opinion-text p { font-size: 0.92rem; color: var(--gray-400); }
.opinion-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: var(--white);
    padding: 13px 28px; border-radius: 6px;
    font-weight: 600; font-size: 0.9rem;
    flex-shrink: 0; transition: all 0.25s;
}
.opinion-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ===== STAT CARDS ===== */
.stat-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.stat-num {
    font-family: var(--font-display);
    font-size: 2.6rem; font-weight: 700;
    color: var(--red); line-height: 1;
    margin-bottom: 6px;
}
.stat-label { font-size: 0.82rem; color: var(--gray-500); font-weight: 500; }

/* ===== SEO CONTENT ===== */
.seo-section { background: var(--off-white); }
.seo-content { max-width: 820px; margin: 0 auto; }
.seo-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 700;
    color: var(--black); margin: 40px 0 16px;
    line-height: 1.25;
}
.seo-content h2:first-child { margin-top: 0; }
.seo-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 600;
    color: var(--black); margin: 28px 0 12px;
}
.seo-content p {
    font-size: 0.94rem; color: var(--gray-600);
    line-height: 1.8; margin-bottom: 16px;
}

/* ===== CTA SECTION ===== */
.cta-section { background: var(--black-rich); padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(204,34,41,0.08) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--white); margin-bottom: 16px; }
.cta-inner p { color: var(--gray-400); font-size: 1.02rem; line-height: 1.7; margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-phone {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--white); color: var(--black);
    padding: 15px 32px; border-radius: 6px;
    font-weight: 700; font-size: 1rem;
    transition: all 0.25s;
}
.cta-phone:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(255,255,255,0.1); }

/* ===== HERO MOUNTAINS ===== */
.hero-waves {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    height: 38%;
    z-index: 1;
    pointer-events: none;
}
.hero-wave {
    position: absolute;
    bottom: 0; left: 0;
    width: 200%;
    height: 100%;
}
.hero-wave svg {
    width: 100%; height: 100%;
    display: block;
}
.hero-wave-1 { animation: heroMtn1 12s ease-in-out infinite alternate; }
.hero-wave-2 { animation: heroMtn2 16s ease-in-out infinite alternate; }
.hero-wave-3 { animation: heroMtn3 20s ease-in-out infinite alternate; }

@keyframes heroMtn1 { from { transform: translateX(0); } to { transform: translateX(-8%); } }
@keyframes heroMtn2 { from { transform: translateX(-10%); } to { transform: translateX(0); } }
@keyframes heroMtn3 { from { transform: translateX(-3%); } to { transform: translateX(-12%); } }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== SHARED RESPONSIVE ===== */
@media (max-width: 1024px) {
    .opinion-inner { flex-direction: column; text-align: center; }
    .opinion-left { flex-direction: column; align-items: center; }
}
@media (max-width: 768px) {
    section { padding: 60px 0; }
}
