/* ── SERVICES PAGE: CLEAN EDITORIAL PORTFOLIO ── */

:root {
    --gold: #c9a961;
    --gold-dark: #b89550;
    --slate: #1e293b;
    --white: #ffffff;
    --bg-light: #fcfdfe;
    --border: #f1f5f9;
}

/* 1. Hero: Classic & Clean */
.services-hero {
    padding: 120px 0 80px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.hero-header {
    max-width: 800px;
    margin: 0 auto;
}

.hero-header .cat-label {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    color: var(--slate);
    line-height: 1.2;
    font-weight: 800;
}

.hero-header p {
    color: #64748b;
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.6;
}

/* 2. Portfolio Showcase (Vertical Layout) */
.services-showcase {
    padding: 100px 0;
}

.showcase-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 140px;
}

.showcase-block:last-child {
    margin-bottom: 0;
}

/* Alternating Flip */
.showcase-block.alt {
    direction: rtl;
}
.showcase-block.alt .showcase-text {
    direction: ltr;
}

.showcase-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: 1s ease;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.showcase-text {
    padding: 40px 0;
}

.showcase-text .eyebrow {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.showcase-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--slate);
    margin-bottom: 25px;
    line-height: 1.2;
}

.showcase-text p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-tag {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--slate);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    letter-spacing: 1px;
}

/* 3. Steps (Classic Grid) */
.process-section {
    padding: 120px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-item {
    text-align: center;
}

.process-num {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.1);
}

.process-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--slate);
    font-weight: 800;
}

.process-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* 4. Contact CTA (Clean Gold) */
.contact-cta {
    padding: 80px 0;
    background: var(--white);
}

.cta-wrap {
    background: #111318;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.cta-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin-bottom: 20px;
}

.cta-btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 14px 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

.cta-btn-whatsapp:hover {
    background: #fff;
    color: #111;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .showcase-block { grid-template-columns: 1fr; gap: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 60px; }
}

@media (max-width: 768px) {
    .services-hero { padding: 80px 0 40px; }
    .hero-header p { font-size: 15px; }

    .services-showcase { padding: 40px 0; }
    .showcase-block { margin-bottom: 60px; gap: 20px !important; }
    .showcase-text { padding: 15px 0; text-align: center; }
    .showcase-text h2 { font-size: 28px; margin-bottom: 15px; }
    .showcase-text p { font-size: 15px; margin-bottom: 25px; }
    .feature-list { justify-content: center; gap: 10px; }
    .feature-tag { padding: 6px 14px; font-size: 10px; }

    .process-section { padding: 60px 0; }
    .process-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-item h3 { font-size: 18px; }

    .contact-cta { padding: 40px 0; }
    .cta-wrap { padding: 60px 20px; }
    .cta-wrap h2 { font-size: 28px; }
    .cta-wrap p { font-size: 15px !important; }
}
