/* ═══════════════════════════════════════════════════════════
   Usta Dekorcular — Premium Design System
   Deep Navy + Gold — Sıradışı Kurumsal Tasarım
   ═══════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
    --navy-950: #070d14;
    --navy-900: #0f1923;
    --navy-800: #162030;
    --navy-700: #1e2d42;
    --navy-600: #2a3f5a;
    --gold: #c9a96e;
    --gold-light: #dfc08a;
    --gold-dark: #a8883f;
    --gold-glow: rgba(201, 169, 110, 0.15);
    --cream: #f7f5f0;
    --white: #fefefe;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow: 0 4px 24px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
    --shadow-gold: 0 8px 32px rgba(201,169,110,.18);
    --transition: .35s cubic-bezier(.4,0,.2,1);
    --transition-slow: .6s cubic-bezier(.4,0,.2,1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ─── Typography ─── */
.font-display {
    font-family: 'Playfair Display', 'Georgia', serif;
}

h1, h2, h3 { line-height: 1.2; }

.text-gradient {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Gold Accent Line ─── */
.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

.gold-line-center {
    margin-left: auto;
    margin-right: auto;
}

/* ═══ NAVIGATION ═══ */
.top-bar {
    background: var(--navy-950);
    border-bottom: 1px solid rgba(201,169,110,.1);
}

.main-nav {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: var(--transition);
    z-index: 100;
}

.main-nav.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,.08);
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--navy-900);
    letter-spacing: -0.02em;
}

.nav-logo-accent {
    color: var(--gold);
}

.nav-link {
    position: relative;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    transition: var(--transition);
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
    color: var(--navy-900);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    padding: 0.5rem;
    z-index: 200;
}

.nav-dropdown-trigger:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.nav-dropdown a:hover {
    background: var(--gold-glow);
    color: var(--navy-900);
    padding-left: 1.25rem;
}

/* Nav CTA Button */
.nav-cta {
    background: var(--navy-900);
    color: var(--gold-light) !important;
    padding: 0.65rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--navy-900) !important;
    box-shadow: var(--shadow-gold);
}

/* ═══ HERO ═══ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--navy-950);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(0.7);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(135deg, rgba(15,25,35,.95) 0%, rgba(15,25,35,.7) 40%, rgba(15,25,35,.4) 100%),
        linear-gradient(to top, rgba(15,25,35,.95) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: rgba(201,169,110,.1);
    border: 1px solid rgba(201,169,110,.25);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.65);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Hero Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-950);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201,169,110,.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,169,110,.4);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-2px);
}

/* Hero Stats Bar */
.hero-stats {
    position: relative;
    z-index: 3;
    width: 100%;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: auto;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero-stats-grid > .hero-stat + .hero-stat {
    border-left: 1px solid rgba(255,255,255,.08);
}

.hero-stat-desktop { display: none; }
@media (min-width: 1024px) {
    .hero-stat-desktop { display: block; }
}

@media (max-width: 1023px) {
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-stats-grid > .hero-stat:nth-child(3) {
        border-left: none;
    }
}

.hero-stat {
    text-align: center;
    padding: 1.5rem 1rem;
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

/* Decorative floating shape */
.hero-decor {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,.08);
    z-index: 2;
    animation: float 8s ease-in-out infinite;
}

.hero-decor::after {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,.06);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ═══ SECTIONS ═══ */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark { background: var(--navy-950); color: var(--white); }
.section-cream { background: var(--cream); }
.section-gray { background: var(--gray-100); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.section-header .overline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--navy-900);
    margin-bottom: 1rem;
}

.section-dark .section-header h2 { color: var(--white); }

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
}

.section-dark .section-header p { color: rgba(255,255,255,.5); }

/* ═══ SERVICE CARDS ═══ */
.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    text-decoration: none;
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--white), transparent);
}

.service-card-body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.service-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.service-card:hover .service-card-body h3 { color: var(--gold-dark); }

.service-card-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.service-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
    transition: var(--transition);
}

.service-card:hover .service-card-arrow { gap: 0.6rem; }

/* ═══ PREMIUM FEATURE GRID ═══ */
.feature-card {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold-dark);
    transition: var(--transition);
}

.feature-card:hover .feature-icon svg { color: var(--navy-950); }

/* ═══ REGION CARDS ═══ */
.region-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    display: block;
    text-decoration: none;
}

.region-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.region-card:hover img { transform: scale(1.1); }

.region-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,25,35,.9) 0%, rgba(15,25,35,.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    transition: var(--transition);
}

.region-card:hover .region-card-overlay {
    background: linear-gradient(to top, rgba(15,25,35,.95) 0%, rgba(15,25,35,.5) 60%, rgba(15,25,35,.2) 100%);
}

.region-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
}

.region-card span {
    font-size: 0.8rem;
    color: var(--gold-light);
    margin-top: 0.25rem;
}

/* ═══ CTA SECTION ═══ */
.cta-premium {
    position: relative;
    padding: 5rem 0;
    background: var(--navy-950);
    overflow: hidden;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,.08), transparent 70%);
}

.cta-premium::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,.05), transparent 70%);
}

/* ═══ FAQ ═══ */
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 0.75rem;
}

.faq-item:hover, .faq-item.active { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-900);
    transition: var(--transition);
}

.faq-toggle:hover { color: var(--gold-dark); }

.faq-arrow {
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--gold);
}

.faq-item.active .faq-arrow { transform: rotate(180deg); }

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.faq-item.active .faq-answer { display: block; }

/* ═══ BREADCRUMBS ═══ */
.breadcrumbs {
    background: var(--cream);
    border-bottom: 1px solid rgba(0,0,0,.04);
    padding: 0.85rem 0;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.825rem;
}

.breadcrumbs a {
    color: var(--gray-500);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover { color: var(--gold-dark); }

.breadcrumbs .current { color: var(--navy-900); font-weight: 500; }

/* ═══ FOOTER ═══ */
.footer {
    background: var(--navy-950);
    color: rgba(255,255,255,.6);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer h4 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
}

.footer a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,.35);
}

/* ═══ MOBILE BAR ═══ */
.mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}

@media (min-width: 1024px) { .mobile-bar { display: none; } }
@media (max-width: 1023px) { body { padding-bottom: 60px; } }

/* ═══ BUTTONS ═══ */
.btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: var(--navy-900);
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-navy:hover {
    background: var(--gold);
    color: var(--navy-950);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: #25D366;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.3);
}

/* ═══ CONTENT PAGES ═══ */
.page-hero {
    position: relative;
    background: var(--navy-950);
    padding: 5rem 0 4rem;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 2;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
}

/* Article content */
.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--navy-900);
    margin: 2.5rem 0 1rem;
}

.article-content p {
    margin-bottom: 1.25rem;
    line-height: 1.85;
}

.highlight-box {
    background: linear-gradient(135deg, var(--gold-glow), rgba(201,169,110,.05));
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 2rem 2.25rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
}

/* ═══ FORM ═══ */
.form-input {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    font-family: inherit;
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.4rem;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    color: var(--gold-light);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.form-submit:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-950);
    box-shadow: var(--shadow-gold);
}

/* ═══ SCROLL ANIMATIONS ═══ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ═══ UTILITIES ═══ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.25rem; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 1.25rem; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

@media (min-width: 640px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* ═══ MOBILE MENU ═══ */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
}

.mobile-menu.active { display: block; }

.mobile-menu-inner {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--white);
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,.15);
}

.mobile-menu.active .mobile-menu-inner { transform: translateX(0); }

/* ═══ PROCESS STEPS ═══ */
.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
}

.process-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-950);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 16px rgba(201,169,110,.3);
}

/* Connecting lines between steps on desktop */
@media (min-width: 768px) {
    .process-steps { position: relative; }
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 2rem;
        right: -1rem;
        width: calc(100% - 64px);
        height: 1px;
        background: var(--gold);
        opacity: 0.2;
        transform: translateX(50%);
    }
}

/* ═══ SELECTION ═══ */
::selection {
    background: var(--gold);
    color: var(--navy-950);
}

/* ═══ LINKS on hover for service/region grids ═══ */
a.service-card:hover,
a.region-card:hover,
a.feature-card:hover {
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVE FIXES
   ═══════════════════════════════════════════════════ */

/* ─── Small screens (max 640px) ─── */
@media (max-width: 640px) {
    /* Hero */
    .hero {
        min-height: auto;
        padding-bottom: 0;
    }
    .hero h1 {
        font-size: 1.85rem;
    }
    .hero-desc {
        font-size: .95rem;
    }
    .hero-badge {
        font-size: .7rem;
        padding: .4rem 1rem;
    }
    .hero-decor { display: none; }
    .hero-stats { position: relative; }
    .hero-stat {
        padding: 1rem .5rem;
    }
    .hero-stat-number {
        font-size: 1.35rem;
    }
    .hero-stat-label {
        font-size: .6rem;
        word-break: keep-all;
    }

    /* Buttons */
    .btn-gold, .btn-outline-light, .btn-navy, .btn-whatsapp {
        padding: .75rem 1.25rem;
        font-size: .85rem;
        width: 100%;
        justify-content: center;
    }

    /* Page Hero */
    .page-hero h1 {
        font-size: 1.65rem;
    }

    /* Sections */
    .section {
        padding: 3.5rem 0;
    }
    .section-sm {
        padding: 2.5rem 0;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }

    /* Service Cards */
    .service-card-img {
        height: 180px;
    }
    .service-card-body {
        padding: 1.25rem;
    }
    .service-card-body h3 {
        font-size: 1.05rem;
    }

    /* Region Cards */
    .region-card {
        height: 200px;
    }
    .region-card h3 {
        font-size: 1.1rem;
    }

    /* Feature Cards */
    .feature-card {
        padding: 1.75rem;
    }

    /* Process Steps */
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* CTA */
    .cta-premium {
        padding: 3.5rem 0;
    }

    /* About — floating stat card fix */
    [style*="position:absolute"][style*="bottom:-24px"] {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin-top: 1rem;
        display: inline-block;
    }

    /* Form grid fix */
    form [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* Inline grid overrides */
    [style*="display:grid"][style*="grid-template-columns: 1fr 1fr"],
    [style*="display:grid"][style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Highlight box */
    .highlight-box {
        padding: 1.5rem;
    }

    /* Article content */
    .article-content h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
    }

    /* Contact info cards grid */
    [style*="repeat(auto-fit,minmax(220px,1fr))"] {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ─── Extra small screens (max 380px) ─── */
@media (max-width: 380px) {
    .container {
        padding: 0 1rem;
    }
    .hero h1 {
        font-size: 1.55rem;
    }
    .hero-stat-number {
        font-size: 1.15rem;
    }
    .hero-stat {
        padding: .75rem .35rem;
    }
    /* Stack contact cards */
    [style*="repeat(auto-fit,minmax(220px,1fr))"] {
        grid-template-columns: 1fr !important;
    }
}

/* ─── Medium screens (641px - 1023px) ─── */
@media (min-width: 641px) and (max-width: 1023px) {
    .hero {
        min-height: 75vh;
    }
    .hero h1 {
        font-size: clamp(2rem, 4vw, 2.75rem);
    }
    .section {
        padding: 4.5rem 0;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── Prevent horizontal overflow ─── */
@media (max-width: 1023px) {
    body {
        overflow-x: hidden;
    }
    .hero-decor {
        display: none;
    }
    .cta-premium::before,
    .cta-premium::after {
        display: none;
    }
}

/* ═══ PRINT ═══ */
@media print {
    .main-nav, .footer, .mobile-bar, .cta-premium { display: none !important; }
    body { padding: 0 !important; }
    .hero { min-height: auto; padding: 2rem 0; }
}
