:root {
    --bg-darkest: #0a0612;
    --bg-dark: #0f0a1a;
    --bg-purple: #1a1233;
    --bg-purple-mid: #2d1f4e;
    --gold: #c9a227;
    --gold-light: #e8c870;
    --gold-dark: #a68921;
    --purple-accent: #8b5cf6;
    --white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.72);
    --text-dim: rgba(255, 255, 255, 0.5);
    --border-gold: rgba(201, 162, 39, 0.25);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Heebo', sans-serif;
    background: var(--bg-dark);
    color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: 0.3s var(--ease); }

.page-header {
    background: linear-gradient(180deg, rgba(10,6,18,0.95) 0%, rgba(15,10,26,0.85) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gold);
    padding: 18px 32px;
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
}
.page-header img { height: 40px; }
.back-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex; align-items: center; gap: 6px;
}
.back-link:hover { color: var(--gold-light); }

.service-hero {
    position: relative;
    padding: 110px 32px 90px;
    min-height: 460px;
    background-color: #1a1233;
    background-image:
        linear-gradient(270deg, rgba(10, 6, 18, 0.95) 0%, rgba(26, 18, 51, 0.85) 30%, rgba(45, 31, 78, 0.55) 65%, rgba(10, 6, 18, 0.35) 100%),
        var(--hero-bg, none);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.service-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 30%, rgba(139,92,246,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 25% 70%, rgba(201,162,39,0.10) 0%, transparent 55%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}
.hero-image { display: none; }
.hero-text .breadcrumb {
    display: inline-block;
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.hero-text h1 {
    font-size: clamp(30px, 4.4vw, 46px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-text h1 span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.85;
}
.hero-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
    border: 1px solid var(--border-gold);
    aspect-ratio: 4/3;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.content-section {
    padding: 70px 32px;
    background: var(--bg-dark);
}
.content-inner {
    max-width: 900px;
    margin: 0 auto;
}
.content-inner h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--white);
    margin: 40px 0 18px;
    position: relative;
    padding-right: 18px;
}
.content-inner h2::before {
    content: '';
    position: absolute;
    right: 0; top: 8px;
    width: 4px; height: calc(100% - 16px);
    background: var(--gold);
    border-radius: 4px;
}
.content-inner h2:first-child { margin-top: 0; }
.content-inner p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.9;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    display: grid;
    gap: 12px;
}
.feature-list li {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--text-muted);
    font-size: 15px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    line-height: 1.7;
}
.feature-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}
.feature-list li strong { color: var(--white); }

.cta-section {
    padding: 70px 32px;
    background: linear-gradient(135deg, #1a1233 0%, #2d1f4e 50%, #1a1233 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,162,39,0.10) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cta-inner h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 14px;
}
.cta-inner h2 span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-inner p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 36px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s var(--ease);
    cursor: pointer;
    border: none;
}
.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: #20BA56; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.btn-call {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}
.btn-call:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(201,162,39,0.45); }
.btn svg { width: 20px; height: 20px; }
.phone-display {
    margin-top: 24px;
    font-size: 15px;
    color: var(--text-muted);
}
.phone-display a {
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
    margin-right: 8px;
}

.page-footer {
    background: var(--bg-darkest);
    padding: 30px 32px;
    text-align: center;
    border-top: 1px solid var(--border-gold);
    color: var(--text-dim);
    font-size: 13px;
}
.page-footer a { color: var(--gold); }

@media (max-width: 820px) {
    .service-hero { padding: 80px 20px 60px; min-height: 360px; }
    .content-section { padding: 50px 20px; }
    .cta-section { padding: 50px 20px; }
    .page-header { padding: 14px 20px; }
    .page-header img { height: 32px; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
}
