/* ═══════════════════════════════════════════════════
   MIZAN MARKETING — Premium Black + Gold Design
   ═══════════════════════════════════════════════════ */

:root {
    --bg-primary: #0b0b0b;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1a1a1a;
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    --gold: #FFD700;
    --gold-light: #FFE44D;
    --gold-dark: #DAA520;
    --gold-glow: rgba(255, 215, 0, 0.15);
    --border-gold: rgba(255, 215, 0, 0.2);
    
    --white: #ffffff;
    --text-main: #f5f3ef;
    --text-body: #b5b0a5;
    --text-muted: #7a756d;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius: 14px;
    --radius-sm: 8px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* No noise overlay — keep clean */

/* ─── Utilities ──────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.full-width { width: 100%; display: block; text-align: center; }

.gold-text {
    color: var(--gold);
}

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

/* ─── Typography ─────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 0.8rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p { color: var(--text-body); margin-bottom: 1rem; }

/* ─── Buttons ────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.35s ease;
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    letter-spacing: 0.01em;
}

/* Larger CTA buttons */
.btn-lg {
    padding: 18px 42px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gold);
    color: #0b0b0b;
    box-shadow: 0 2px 20px rgba(200, 169, 96, 0.25);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(200, 169, 96, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1.5px solid var(--border-subtle);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── Animations ─────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.9s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Navbar ─────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(11, 11, 11, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@keyframes rotate3d {
    0% { transform: perspective(500px) rotateY(0deg); }
    100% { transform: perspective(500px) rotateY(360deg); }
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 3px solid var(--white);
    animation: rotate3d 4s linear infinite;
    transform-style: preserve-3d;
}
.logo-m-box {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.3),
        2px 2px 0 var(--gold-dark);
    margin-top: 2px;
}
.logo-text-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
    line-height: 1;
}
.logo-sub-inline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-brand {
    margin-bottom: 12px;
}
.footer-brand .logo-icon-wrapper {
    width: 60px;
    height: 60px;
    border-width: 4px;
}
.footer-brand .logo-m-box {
    font-size: 3rem;
    margin-top: 4px;
}
.footer-brand .logo-text {
    font-size: 2.2rem;
}
.footer-brand .logo-sub-inline {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}
.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.4rem;
    cursor: pointer;
}

/* ─── Hero ────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

/* Subtle gold radial glow behind hero — not blob */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(200,169,96,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(200, 169, 96, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 580px;
    margin: 0 auto 36px;
    color: var(--text-body);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}
.stat h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2px;
    font-weight: 900;
}
.stat p { font-size: 0.85rem; margin: 0; color: var(--text-muted); }
.divider { height: 40px; width: 1px; background: var(--border-subtle); }

/* ─── Section Global ─────────────────────── */
section { padding: 100px 0; position: relative; z-index: 1; }
.section-header {
    margin-bottom: 52px;
    max-width: 650px;
    margin-inline: auto;
    text-align: center;
}
.section-header h2 { font-size: 2.6rem; color: var(--white); }
.section-header p { font-size: 1.05rem; }

/* ─── Why Us (About) ─────────────────────── */
.why-us { border-top: 1px solid var(--border-subtle); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.4s ease;
}
.feature-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.feature-card:hover .icon-wrap { transform: scale(1.1); }

/* Icon color variants */
.icon-yellow { background: rgba(255,215,0,0.1); border: 1px solid rgba(255,215,0,0.25); color: #FFD700; }
.icon-green { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #22C55E; }
.icon-red { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #EF4444; }
.icon-blue { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.25); color: #3B82F6; }
.icon-purple { background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.25); color: #A855F7; }
.icon-orange { background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.25); color: #F97316; }

/* Service icon colors */
.svc-blue { color: #3B82F6; }
.svc-red { color: #EF4444; }
.svc-purple { color: #A855F7; }
.svc-orange { color: #F97316; }
.svc-green { color: #22C55E; }
.svc-yellow { color: #FFD700; }

.feature-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.feature-card p { font-size: 0.92rem; margin: 0; }

/* ─── Services ───────────────────────────── */
.services { background: var(--bg-secondary); }

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
}
.service-box:hover::before { height: 100%; }
.service-box:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
}

.service-text h3 {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.service-text h3 i { font-size: 1rem; }
.service-text p { margin: 0; font-size: 0.95rem; }

/* ─── Portfolio ──────────────────────────── */
.portfolio-carousel-wrapper {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 20px 0 40px;
}
.portfolio-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 10%, transparent 90%, var(--bg-primary) 100%);
    pointer-events: none;
    z-index: 5;
}

.portfolio-track {
    display: flex !important;
    align-items: stretch;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    gap: 24px;
    width: max-content !important;
    animation: scroll-portfolio 25s linear infinite;
}
.portfolio-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-portfolio {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}

.portfolio-card {
    width: 380px !important;
    max-width: 85vw; /* Failsafe for very small mobile screens */
    flex: 0 0 auto !important;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    cursor: pointer;
}
.portfolio-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.portfolio-visual {
    height: 240px;
    position: relative;
    overflow: hidden;
    background: #0e0e0e;
}
.portfolio-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-visual img { transform: scale(1.08); }

.watermark-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(11, 11, 11, 0.75);
    backdrop-filter: blur(6px);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--border-gold);
}

.overlay-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: #0b0b0b;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.02em;
}

.portfolio-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border-subtle);
}
.portfolio-content h4 { font-size: 1.15rem; margin-bottom: 4px; }
.portfolio-content p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 0; }
.portfolio-content strong { color: var(--gold); }

/* ─── Process ────────────────────────────── */
.process {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    padding-top: 32px;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 60px;
    right: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--border-subtle), var(--gold), var(--border-subtle));
    z-index: 0;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    border: 2px solid var(--gold);
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold);
    font-family: var(--font-heading);
}
.step-info h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-info p { font-size: 0.88rem; }

/* ─── Packages ───────────────────────────── */
.packages { padding-bottom: 120px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}
.pricing-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

/* Popular card */
.popular {
    border-color: var(--gold) !important;
    background: linear-gradient(180deg, rgba(200,169,96,0.06) 0%, var(--bg-card) 40%);
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 0 40px rgba(200, 169, 96, 0.08);
}
.popular:hover { transform: scale(1.03) translateY(-4px); }

.popular-badge {
    background: var(--gold);
    color: #0b0b0b;
    text-align: center;
    padding: 6px 0;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin: -50px auto 16px;
    width: 60%;
    letter-spacing: 0.02em;
}

.pkg-header {
    text-align: center;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 20px;
}
.pkg-header h4 { font-size: 1.6rem; margin: 0 0 6px; }
.pkg-header p { font-size: 0.9rem; margin: 0 0 12px; }

.price { margin-top: 8px; color: var(--text-muted); font-size: 1rem; }
.price span { font-size: 2.4rem; font-weight: 900; color: var(--white); }

.pkg-features { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.pkg-features li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-body);
}
.pkg-features i { color: var(--gold); margin-top: 3px; font-size: 0.85rem; }
.text-warning { color: var(--gold-light) !important; }

/* Platinum VIP */
.platinum-card {
    grid-column: 1 / -1;
    border-color: var(--gold) !important;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(200,169,96,0.04) 100%);
    box-shadow: 0 0 60px rgba(200, 169, 96, 0.06);
    position: relative;
    overflow: hidden;
}
.platinum-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(200,169,96,0.05), transparent);
    pointer-events: none;
}

.platinum-left { flex: 1; }
.platinum-left .pkg-header { text-align: left; border: none; margin: 0; padding: 0; }
.platinum-left .pkg-header h4 { color: var(--gold); font-size: 1.8rem; }

.platinum-center { flex: 2; padding: 0 40px; }
.platinum-center .pkg-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0;
}

.platinum-right { flex: 1; }

/* ─── Contact ────────────────────────────── */
.contact-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-info {
    padding: 48px 40px;
    border-right: 1px solid var(--border-subtle);
}
.contact-info h2 { font-size: 2rem; margin-bottom: 16px; }

.social-links-big { margin-top: 28px; }
.social-links-big > p { margin-bottom: 12px; font-size: 0.95rem; color: var(--text-body); }
.icons { display: flex; gap: 10px; }

.social-icon {
    width: 50px; height: 50px; border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; text-decoration: none;
    transition: all 0.3s ease;
    color: var(--text-body);
}
.social-icon:hover { transform: translateY(-3px); }

/* Brand-native icon colors */
.social-icon[title="Instagram"] { color: #E4405F; }
.social-icon[title="Instagram"]:hover { border-color: #E4405F; background: rgba(228,64,95,0.1); }

.social-icon[title="Telegram"],
.social-icon[title="Telegram 2"] { color: #26A5E4; }
.social-icon[title="Telegram"]:hover,
.social-icon[title="Telegram 2"]:hover { border-color: #26A5E4; background: rgba(38,165,228,0.1); }

.social-icon[title="WhatsApp"] { color: #25D366; }
.social-icon[title="WhatsApp"]:hover { border-color: #25D366; background: rgba(37,211,102,0.1); }

.direct-contact p {
    font-size: 1.2rem; font-weight: 600; display: flex;
    align-items: center; gap: 12px; color: var(--white); margin-bottom: 10px;
}
.direct-contact i { color: var(--gold); font-size: 1rem; }

.contact-form-box { padding: 48px 40px; background: var(--bg-primary); }
.contact-form h3 { margin-bottom: 8px; font-size: 1.4rem; }
.contact-form > p { margin-bottom: 24px; font-size: 0.9rem; }

.input-group { position: relative; margin-bottom: 22px; }
.input-group input {
    width: 100%; padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}
.input-group input:focus { border-color: var(--gold); }
.input-group label {
    position: absolute; left: 16px; top: 14px;
    color: var(--text-muted); font-size: 0.9rem;
    transition: 0.3s; pointer-events: none;
}
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
    top: -10px; left: 12px;
    background: var(--bg-primary);
    padding: 0 6px; font-size: 0.75rem;
    color: var(--gold);
}

.submit-btn {
    width: 100%;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    padding: 18px;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-primary);
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 12px;
}
.footer-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--text-main);
    letter-spacing: 0.05em;
}
.footer-logo .mizan-letter { color: var(--gold); }
.footer-logo p { font-size: 0.85rem; font-family: var(--font-body); font-weight: 400; color: var(--text-muted); }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { margin-bottom: 8px; font-size: 0.95rem; color: var(--text-main); }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom-social { display: flex; flex-direction: column; gap: 12px; }
.footer-bottom-social a {
    color: var(--text-muted); text-decoration: none; transition: color 0.3s;
    display: flex; align-items: center; gap: 8px; font-size: 0.9rem;
}
.footer-ig i { color: #E4405F; }
.footer-ig:hover { color: #E4405F; }
.footer-tg i { color: #26A5E4; }
.footer-tg:hover { color: #26A5E4; }

/* ─── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .section-header h2 { font-size: 2.2rem; }
    .features-grid, .services-wrapper, .portfolio-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info { border-right: none; border-bottom: 1px solid var(--border-subtle); }
    
    .popular { transform: none; }
    .popular:hover { transform: translateY(-4px); }
    
    .platinum-card { flex-direction: column; gap: 24px; text-align: center; }
    .platinum-left .pkg-header { text-align: center; }
    .platinum-center { padding: 0; }
    .platinum-center .pkg-features { grid-template-columns: 1fr; }

    .timeline { grid-template-columns: 1fr; gap: 28px; padding-top: 0; }
    .timeline::before { display: none; }
    .timeline-step { display: flex; align-items: flex-start; text-align: left; gap: 16px; }
    .step-icon { margin: 0; flex-shrink: 0; }

    .nav-btn { display: none; }
    .nav-links { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 11, 11, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 24px;
        flex-direction: column;
        text-align: center;
        border-bottom: 1px solid var(--border-subtle);
    }
    .nav-links.active { display: flex; }
    
    .mobile-menu-btn { display: block; }

    .footer-content { grid-template-columns: 1fr; text-align: center; }


    .footer-bottom-social { align-items: center; flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 16px; }

    .hero-stats { gap: 24px; }
    .hero-stats .divider { height: 30px; }
    .hero-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-header h2 { font-size: 1.8rem; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stats .divider { width: 40px; height: 1px; }
    .contact-info, .contact-form-box { padding: 28px 20px; }
}

/* ─── Admin Panel UI ─────────────────────── */
#admin-panel {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
#admin-panel.hidden { display: none; }

.admin-content {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 16px;
}
.admin-grid { display: flex; flex-direction: column; gap: 20px; }
.admin-card {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
}
.admin-card h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--gold); }
.admin-input {
    width: 100%;
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.95rem;
}
select.admin-input { appearance: auto; cursor: pointer; }

/* ─── Themes ──────────────────────────────── */
body.theme-blue {
    --gold: #00F0FF;
    --gold-hover: #00D0E0;
    --gold-dark: #008899;
    --border-gold: rgba(0, 240, 255, 0.3);
}
body.theme-light {
    --bg-primary: #F8FAFC;
    --bg-secondary: #F1F5F9;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FAFC;
    --text-main: #0F172A;
    --text-body: #334155;
    --text-muted: #64748B;
    --border-subtle: #E2E8F0;
    --white: #0F172A;
    --border-gold: var(--gold);
}
