/* ============================================
   YALLAHRECORD - CSS
   Fonts: Plus Jakarta Sans (headings) + DM Sans (body)
   Colors: #b527ef, #3b3385, #7e22ce
============================================ */

:root {
    --purple: #b527ef;
    --indigo: #3b3385;
    --deep: #7e22ce;
    --dark: #111827;
    --dark2: #1f2937;
    --gray: #374151;
    --gray-light: #9ca3af;
    --white: #ffffff;
    --announcement-h: 40px;
    --nav-h: 80px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- GRADIENT TEXT ---- */
.gradient-text {
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted { color: #6b7280; }
.text-white { color: var(--white) !important; }

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    color: var(--white);
    padding: 14px 32px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: box-shadow 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(59, 51, 133, 0.5);
    transform: translateY(-1px);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--indigo);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
}
.btn-secondary:hover { background: rgba(59, 51, 133, 0.15); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #e5e7eb;
    background: transparent;
    color: var(--dark);
    padding: 14px 24px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    cursor: pointer;
}
.btn-outline:hover {
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    color: var(--white);
    border-color: transparent;
}

.btn-full { width: 100%; justify-content: center; }

.btn-rounded {
    border-radius: 50px;
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--deep);
    padding: 18px 40px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.btn-white:hover {
    background: #f3f4f6;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-white svg { transition: transform 0.2s; }
.btn-white:hover svg { transform: translateX(4px); }

.btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.btn-reserve:hover { box-shadow: 0 4px 20px rgba(59,51,133,0.5); }

/* ---- SECTION TITLES ---- */
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    color: var(--dark);
    letter-spacing: -0.02em;
}
.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 64px;
    line-height: 1.7;
}

/* ============================================
   ANNOUNCEMENT BAR
============================================ */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--announcement-h);
    background: linear-gradient(90deg, #b527ef, #c9429b, #3b3385);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.announcement-bar p {
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* ============================================
   NAVIGATION
============================================ */
#navbar {
    position: fixed;
    top: var(--announcement-h);
    left: 0;
    right: 0;
    z-index: 99;
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s;
}
#navbar.scrolled {
    background: rgba(17, 24, 39, 0.95);
    box-shadow: 0 1px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

.nav-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--purple);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.nav-link:hover { color: var(--indigo); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   HERO
============================================ */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: calc(var(--announcement-h) + var(--nav-h));
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: #d1d5db;
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}
.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--indigo);
    border-radius: 12px;
    display: flex;
    justify-content: center;
}
.scroll-dot {
    width: 4px;
    height: 12px;
    background: var(--indigo);
    border-radius: 2px;
    margin-top: 8px;
    animation: scrollDot 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes scrollDot {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}

/* ============================================
   CLIENTS / FEATURES
============================================ */
.clients-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header h2 {
    font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

.feature-card {
    border-radius: 24px;
    padding: 32px;
    transition: box-shadow 0.3s;
}
.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.feature-card p { line-height: 1.6; }

.feature-gradient {
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(181,39,239,0.2);
}
.feature-gradient p { color: rgba(255,255,255,0.9); }
.feature-gradient .feature-icon { color: var(--white); }

.feature-light {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    color: var(--dark);
    transition: border-color 0.3s;
}
.feature-light:hover { border-color: var(--indigo); }
.feature-light p { color: #6b7280; }

.feature-dark {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.feature-dark p { color: #d1d5db; }

.feature-wide { grid-column: 2 / 4; }

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.icon-purple { color: var(--purple); }

/* Social icons in feature card */
.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.social-icon-circle {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo Scroll */
.logo-scroll-container {
    border-top: 1px solid #e5e7eb;
    padding-top: 48px;
    overflow: hidden;
}
.logo-scroll {
    position: relative;
    overflow: hidden;
}
.logo-track {
    display: flex;
    gap: 64px;
    animation: scrollLogos 20s linear infinite;
    width: max-content;
}
.client-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #9ca3af;
    opacity: 0.6;
    white-space: nowrap;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   STUDIO DÉCORS
============================================ */
.studio-section {
    padding: 96px 0;
    background: var(--dark);
}

.decor-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}
.decor-tab {
    padding: 10px 36px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.2);
    background: transparent;
    color: rgba(255,255,255,0.55);
    transition: all 0.25s;
}
.decor-tab:hover {
    border-color: var(--purple);
    color: var(--white);
}
.decor-tab.active {
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    border-color: transparent;
    color: var(--white);
}

.decor-panel { display: none; }
.decor-panel.active { display: block; }

.studio-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}
@media (min-width: 768px) { .studio-carousel { height: 580px; } }

.studio-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.studio-slide.active { opacity: 1; }
.studio-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.decor-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(126,34,206,0.75) 0%,
        rgba(59,51,133,0.35) 35%,
        transparent 70%
    );
    pointer-events: none;
}

.studio-cta {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.studio-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s, background 0.3s;
}
.studio-carousel:hover .studio-nav { opacity: 1; }
.studio-nav:hover { background: rgba(255,255,255,0.3); }
.studio-prev { left: 16px; }
.studio-next { right: 16px; }

.studio-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}
.studio-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}
.studio-dot.active { width: 28px; background: var(--white); }
.studio-dot:hover { background: rgba(255,255,255,0.8); }

/* ============================================
   EQUIPMENT
============================================ */
.equipment-section {
    padding: 96px 0;
    background: var(--white);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (min-width: 768px) {
    .equipment-grid { grid-template-columns: repeat(3, 1fr); }
}

.equipment-card {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}
.equipment-card:hover {
    background: linear-gradient(135deg, rgba(181,39,239,0.08), rgba(59,51,133,0.08));
    border-color: var(--indigo);
}
.equipment-icon {
    margin-bottom: 16px;
    transition: transform 0.3s;
}
.equipment-card:hover .equipment-icon { transform: scale(1.1); }
.equipment-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
}

/* ============================================
   HOW IT WORKS
============================================ */
.how-section {
    padding: 96px 0;
    background: var(--dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 24px;
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(181,39,239,0.3);
}

.step-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: var(--indigo);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}
.step-item p { color: #9ca3af; font-size: 0.95rem; }

.step-connector {
    display: none;
}
@media (min-width: 768px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 40px;
        left: 60%;
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, var(--indigo), transparent);
    }
}

/* ============================================
   PRICING
============================================ */
.pricing-section {
    padding: 96px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}
@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
    }
}

.pricing-card {
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    position: relative;
}

.pricing-featured {
    border-color: var(--indigo);
    box-shadow: 0 8px 40px rgba(59,51,133,0.15);
    transform: scale(1.03);
}
@media (max-width: 767px) { .pricing-featured { transform: none; } }

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(181,39,239,0.3);
}

.pricing-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.pricing-desc {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-featured .pricing-amount {
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-currency {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    padding-bottom: 4px;
}

.pricing-per {
    display: block;
    font-weight: 400;
    color: #9ca3af;
    font-size: 0.85rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.4;
}
.pricing-feature-off {
    opacity: 0.38;
}
.pricing-features svg { flex-shrink: 0; margin-top: 2px; }

/* ============================================
   CTA BANNER
============================================ */
.cta-section {
    position: relative;
    padding: 96px 24px;
    overflow: hidden;
    text-align: center;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7e22ce, var(--purple), var(--indigo));
}
.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 18c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6zm-12 12c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6z' stroke='%23000' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-content {
    position: relative;
    z-index: 10;
}
.cta-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section {
    padding: 96px 0;
    background: var(--dark);
}

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

.testimonial-card {
    background: var(--dark2);
    border: 2px solid var(--gray);
    border-radius: 20px;
    padding: 32px;
    transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--indigo); }

.quote-icon {
    opacity: 0.4;
    margin-bottom: 16px;
}
.testimonial-card p {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.testimonial-author strong {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 4px;
}
.testimonial-author span {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* ============================================
   CONTACT
============================================ */
.contact-section {
    padding: 96px 0;
    background: #0d1117;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
@media (min-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.contact-info > p {
    color: #9ca3af;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--white);
}
.contact-address svg { flex-shrink: 0; margin-top: 2px; }
.contact-address strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-address span { color: #9ca3af; font-size: 0.9rem; line-height: 1.5; }

.contact-links { display: flex; flex-direction: column; gap: 16px; }

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--dark2);
    border: 1px solid var(--gray);
    border-radius: 14px;
    padding: 20px 24px;
    transition: all 0.3s;
}
.contact-link:hover {
    background: var(--gray);
    border-color: var(--indigo);
}

.contact-link-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: box-shadow 0.3s;
}
.contact-link:hover .contact-link-icon {
    box-shadow: 0 4px 20px rgba(59,51,133,0.5);
}

.contact-link-label {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 2px;
}
.contact-link-value {
    font-weight: 600;
    color: var(--white);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray);
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: #000;
    border-top: 1px solid #1f2937;
    padding: 48px 0 32px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}
.footer-top > div > p { color: #6b7280; font-size: 0.9rem; }

.footer-copy { color: #6b7280; font-size: 0.875rem; }

.footer-seo {
    border-top: 1px solid #1f2937;
    padding-top: 24px;
    text-align: center;
    color: #4b5563;
    font-size: 0.8rem;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 767px) {
    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(17, 24, 39, 0.98);
        flex-direction: column;
        padding: 16px;
        gap: 8px;
        border-bottom: 1px solid #374151;
    }
    .nav-links.open { display: flex; }
    .nav-link {
        display: block;
        padding: 10px 16px;
        border-radius: 8px;
        width: 100%;
    }
    .nav-link:hover { background: rgba(59,51,133,0.2); }
    .nav-cta { display: block; text-align: center; }

    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-wide { grid-column: 1; }

    .hero { height: 80vh; }

    .btn-primary, .btn-secondary { padding: 12px 24px; font-size: 0.9rem; }
}
