/* ==========================================================================
   LinkTec - Page Specific Styles
   ========================================================================== */

/* ─────────────────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────────────────── */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--space-4) 0;
    background: var(--header-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-primary);
    transition: all var(--transition-base);
}

/* Light mode header premium glass effect */
[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    padding: var(--space-3) 0;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: var(--space-2);
    width: 44px;
    height: 44px;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1024px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-primary);
        flex-direction: column;
        padding: var(--space-4);
    }

    .header-nav.open {
        display: flex;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ─────────────────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────────────────── */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-16)) 0 var(--space-16);
    position: relative;
    overflow: hidden;
}

/* Light mode hero - warm gradient background */
[data-theme="light"] .hero {
    background: linear-gradient(180deg, #faf9f7 0%, #f5f3f0 50%, #faf9f7 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top center, var(--color-gold-glow) 0%, transparent 50%);
    opacity: 0.5;
    pointer-events: none;
}

/* Light mode enhanced gold glow */
[data-theme="light"] .hero::before {
    opacity: 0.8;
    background: radial-gradient(ellipse at 30% 20%, rgba(154, 120, 82, 0.12) 0%, transparent 40%),
                radial-gradient(ellipse at 70% 80%, rgba(154, 120, 82, 0.08) 0%, transparent 35%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    max-width: 540px;
}

@media (max-width: 1024px) {
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .hero-cta {
        justify-content: center;
    }
}

.hero-visual {
    position: relative;
    height: 400px;
}

.hero-shape {
    position: absolute;
    inset: 0;
    animation: float 6s ease-in-out infinite;
}

/* Logo layer — main visible logo with bottom-right fade mask */
.hero-shape::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/logo-linktec-hero.svg') no-repeat center / contain;
    opacity: 0.8;
    filter: blur(0.4px) brightness(1.05);
    -webkit-mask-image: linear-gradient(
        to bottom right,
        rgba(0, 0, 0, 1) 25%,
        rgba(0, 0, 0, 0.7) 55%,
        rgba(0, 0, 0, 0.12) 100%
    );
    mask-image: linear-gradient(
        to bottom right,
        rgba(0, 0, 0, 1) 25%,
        rgba(0, 0, 0, 0.7) 55%,
        rgba(0, 0, 0, 0.12) 100%
    );
}

/* Glow layer — blurred halo behind the logo for artistic depth */
.hero-shape::after {
    content: '';
    position: absolute;
    inset: -24px;
    background: url('/assets/logo-linktec-hero.svg') no-repeat center / contain;
    filter: blur(28px) brightness(1.4) saturate(1.2);
    opacity: 0.3;
    pointer-events: none;
}

/* Light mode: slightly stronger glow for visibility on pale backgrounds */
[data-theme="light"] .hero-shape::after {
    filter: blur(32px) brightness(1.2) saturate(1.4);
    opacity: 0.35;
}

[data-theme="light"] .hero-shape::before {
    opacity: 0.85;
    filter: blur(0.3px) brightness(0.95) contrast(1.1);
}

/* Reduced motion: disable float animation */
@media (prefers-reduced-motion: reduce) {
    .hero-shape {
        animation: none;
    }
}

@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }
}

/* ─────────────────────────────────────────────────────────────────────────
   SECTIONS
   ───────────────────────────────────────────────────────────────────────── */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section-tag {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-gold);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

/* ─────────────────────────────────────────────────────────────────────────
   SERVICES
   ───────────────────────────────────────────────────────────────────────── */

.services {
    padding: var(--space-24) 0;
}

/* Light mode section enhancement */
[data-theme="light"] .services {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────────────────────────────────
   PORTFOLIO
   ───────────────────────────────────────────────────────────────────────── */

.portfolio {
    padding: var(--space-24) 0;
    background: var(--bg-secondary);
}

/* Light mode portfolio section */
[data-theme="light"] .portfolio {
    background: #f5f6f8;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.05);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-primary);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.portfolio-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-base);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-6);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: white;
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
}

/* ─────────────────────────────────────────────────────────────────────────
   CTA SECTION - Premium Style
   ───────────────────────────────────────────────────────────────────────── */

.cta-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #8b6d4f 0%, #b48e67 50%, #c9a882 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    margin: var(--space-16) var(--space-6);
    box-shadow: 0 8px 40px rgba(139, 109, 79, 0.3);
}

/* Subtle pattern overlay */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Decorative border effect */
.cta-section::after {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: calc(var(--radius-2xl) - 3px);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.cta-content h2 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: #ffffff;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Accent text in CTA - keep white for readability */
.cta-content h2 .text-gold,
.cta-section .text-gold {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-8);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Fix: Bouton toujours lisible */
.cta-section .btn,
.cta-content .btn-white,
.cta-content .btn-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #1a1a1a;
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    border: 2px solid #ffffff;
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
}

.cta-section .btn:hover,
.cta-content .btn-white:hover,
.cta-content .btn-lg:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

/* Container full width pour CTA en section */
.cta-section.cta-full {
    margin: 0;
    border-radius: 0;
}

@media (max-width: 768px) {
    .cta-section {
        margin: var(--space-12) var(--space-4);
        padding: var(--space-12) var(--space-6);
    }
    
    .cta-content h2 {
        font-size: var(--text-2xl);
    }
}

/* ─────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────── */

.footer {
    padding: var(--space-16) 0 var(--space-8);
    border-top: 1px solid var(--border-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: var(--space-4);
}

.footer-brand p {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}

.footer-col h4 {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: var(--space-2);
}

.footer-col a {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-primary);
}

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: var(--space-4);
}

.footer-legal a {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--color-gold);
}

/* ─────────────────────────────────────────────────────────────────────────
   PAGE HERO (Internal Pages)
   ───────────────────────────────────────────────────────────────────────── */

.page-hero {
    padding: calc(80px + var(--space-16)) 0 var(--space-16);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Light mode page hero with subtle depth */
[data-theme="light"] .page-hero {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top center, var(--color-gold-glow) 0%, transparent 60%);
    opacity: 0.3;
    pointer-events: none;
}

/* Light mode enhanced glow */
[data-theme="light"] .page-hero::before {
    opacity: 0.5;
    background: radial-gradient(ellipse at top center, rgba(180, 142, 103, 0.12) 0%, transparent 50%);
}

.page-hero h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
    position: relative;
}

.page-hero p {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ─────────────────────────────────────────────────────────────────────────
   CONTACT FORM
   ───────────────────────────────────────────────────────────────────────── */

.contact-section {
    padding: var(--space-16) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.contact-info>p {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--color-gold-glow);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-6);
}

.form-message {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-top: var(--space-4);
    font-size: var(--text-sm);
}

.form-message-success {
    background: var(--color-success-soft);
    color: var(--color-success);
}

.form-message-error {
    background: var(--color-error-soft);
    color: var(--color-error);
}

/* ─────────────────────────────────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────────────────
   UTILITIES
   ───────────────────────────────────────────────────────────────────────── */

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--color-gold);
}

/* ─────────────────────────────────────────────────────────────────────────
   PRICING SECTION
   ───────────────────────────────────────────────────────────────────────── */

.pricing-section {
    padding: var(--space-16) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, var(--color-gold-glow) 0%, var(--card-bg) 30%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-black);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.pricing-header h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.pricing-header p {
    color: var(--text-tertiary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-6);
}

.pricing-price {
    margin-bottom: var(--space-6);
}

.pricing-price .price {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
}

.pricing-price .period {
    font-size: var(--text-base);
    color: var(--text-tertiary);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-8);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.pricing-features li svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    color: var(--text-tertiary);
    font-size: var(--text-sm);
}

/* Pricing payment methods mention */
.pricing-payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-3);
    font-size: var(--text-xs);
    color: var(--text-tertiary);
}

.pricing-payment-methods .payment-icons {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.pricing-payment-methods svg {
    opacity: 0.7;
}

/* Pricing buttons for Stripe/PayPal */
.pricing-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.btn-paypal {
    background: #ffc439 !important;
    color: #003087 !important;
    border: none;
}

.btn-paypal:hover {
    background: #f0b429 !important;
    transform: translateY(-2px);
}

.btn-paypal svg {
    color: #003087;
}

.pricing-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.spinner-small {
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ─────────────────────────────────────────────────────────────────────────
   QUOTE SECTION
   ───────────────────────────────────────────────────────────────────────── */

.quote-section {
    padding: var(--space-16) 0;
    background: var(--bg-secondary);
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

@media (max-width: 1024px) {
    .quote-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .quote-grid {
        grid-template-columns: 1fr;
    }
}

.quote-card {
    background: var(--card-bg);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    width: 64px;
    height: 64px;
    background: var(--color-gold-glow);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    color: var(--color-gold);
}

.quote-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.quote-card p {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-bottom: var(--space-4);
    flex: 1;
}

.quote-price {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-gold);
    margin-bottom: var(--space-4);
    margin-top: auto;
}

.quote-card .quote-note {
    font-size: 0.65rem;
    color: var(--text-muted);
    opacity: 0.45;
    font-style: italic;
    line-height: var(--leading-normal);
    margin-top: var(--space-2);
    margin-bottom: var(--space-4);
    flex: none;
}

/* ─────────────────────────────────────────────────────────────────────────
   FAQ SECTION
   ───────────────────────────────────────────────────────────────────────── */

.faq-section {
    padding: var(--space-16) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
}

.faq-item h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.faq-item p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────────
   SERVICES DETAIL
   ───────────────────────────────────────────────────────────────────────── */

.services-detail {
    padding: var(--space-16) 0;
}

.services-detail.alt {
    background: var(--bg-secondary);
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse>* {
    direction: ltr;
}

@media (max-width: 1024px) {

    .service-block,
    .service-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

.service-number {
    display: inline-block;
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--color-gold);
    opacity: 0.3;
    margin-bottom: var(--space-4);
}

.service-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.service-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-8);
}

.service-features li {
    position: relative;
    padding: var(--space-2) 0 var(--space-2) var(--space-6);
    color: var(--text-secondary);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
}

.service-visual {
    aspect-ratio: 4/3;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

/* Service Visual Interactive - with overlay button */
.service-visual-interactive {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.service-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Explorer Button - Overlay style */
.btn-explore {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: #fffef8;
    color: #1a1a1a;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-3) var(--space-8);
    border-radius: var(--radius-full);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.btn-explore:hover {
    background: #ffffff;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.btn-explore:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

.btn-explore:active {
    transform: translateX(-50%) translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-explore {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-6);
        bottom: 15%;
    }
}

@media (max-width: 480px) {
    .btn-explore {
        padding: var(--space-2) var(--space-5);
        bottom: 12%;
    }
}

/* Explore Button - Top Left variant (for Social Media) */
.btn-explore.btn-explore-top-left {
    bottom: auto;
    left: 8%;
    top: 28%;
    transform: none;
    background: #ff6b4a;
    color: #ffffff;
}

.btn-explore.btn-explore-top-left:hover {
    background: #ff5535;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 74, 0.4);
}

.btn-explore.btn-explore-top-left:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .btn-explore.btn-explore-top-left {
        top: 20%;
        left: 5%;
    }
}

@media (max-width: 480px) {
    .btn-explore.btn-explore-top-left {
        top: 15%;
        left: 4%;
    }
}

/* Explore Button - Top Left variant (for Photo & Video - beige/tan) */
.btn-explore.btn-explore-photo {
    bottom: auto;
    left: 8%;
    top: 5%;
    transform: none;
    background: #c8a97e;
    color: #1a1a1a;
}

.btn-explore.btn-explore-photo:hover {
    background: #b89a6f;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200, 169, 126, 0.4);
}

.btn-explore.btn-explore-photo:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .btn-explore.btn-explore-photo {
        top: 4%;
        left: 5%;
    }
}

@media (max-width: 480px) {
    .btn-explore.btn-explore-photo {
        top: 3%;
        left: 4%;
    }
}

/* Explore Button - Bottom Left variant (for Google Business Profile - dark charcoal) */
.btn-explore.btn-explore-gbp {
    bottom: 12%;
    left: 8%;
    top: auto;
    transform: none;
    background: #2a2a2a;
    color: #ffffff;
    border: 1px solid rgba(200, 169, 126, 0.3);
}

.btn-explore.btn-explore-gbp:hover {
    background: #3a3a3a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(200, 169, 126, 0.5);
}

.btn-explore.btn-explore-gbp:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .btn-explore.btn-explore-gbp {
        bottom: 10%;
        left: 5%;
    }
}

@media (max-width: 480px) {
    .btn-explore.btn-explore-gbp {
        bottom: 8%;
        left: 4%;
    }
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Service CTAs (dual buttons) */
.service-ctas {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

/* Service Icon SVG (replaces old img visuals) */
.service-icon-svg {
    width: 65%;
    max-width: 200px;
    height: auto;
}

.service-visual-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Override interactive bg for SVG icon visuals */
.service-visual-interactive:has(.service-visual-mockup) {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.services-detail.alt .service-visual-interactive:has(.service-visual-mockup) {
    background: var(--bg-primary);
}

/* ─────────────────────────────────────────────────────────────────────────
   SERVICES PARTNER (Photo & Vidéo — Novalens option)
   ───────────────────────────────────────────────────────────────────────── */

.services-partner {
    padding: var(--space-12) 0;
}

.partner-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
    max-width: 780px;
    margin: 0 auto;
    padding: var(--space-8);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
}

.partner-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.partner-icon svg {
    width: 28px;
    height: 28px;
}

.partner-content .section-tag {
    margin-bottom: var(--space-2);
}

.partner-content h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.partner-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

@media (max-width: 640px) {
    .partner-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--space-6);
    }
}

/* ─────────────────────────────────────────────────────────────────────────
   BUTTONS EXTRA
   ───────────────────────────────────────────────────────────────────────── */

.btn-white {
    background: white;
    color: var(--color-black);
    border: none;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ─────────────────────────────────────────────────────────────────────────
   FORM EXTRAS
   ───────────────────────────────────────────────────────────────────────── */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE (375px - 414px)
   ========================================================================== */

/* Header Mobile */
@media (max-width: 768px) {
    .header {
        padding: var(--space-3) 0;
    }

    .header-inner {
        gap: var(--space-4);
    }

    .header-actions {
        gap: var(--space-2);
    }

    .header-actions .btn {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-xs);
    }

    .lang-switch {
        display: none;
    }

    .logo-img {
        height: 32px !important;
    }
}

@media (max-width: 480px) {
    .header-actions .theme-toggle {
        width: 36px;
        height: 36px;
    }

    .header-actions .btn-sm {
        font-size: 10px;
        padding: var(--space-2) var(--space-2);
    }
}

/* Mobile Menu Improvements */
@media (max-width: 1024px) {
    .header-nav {
        gap: 0;
        padding: var(--space-4) var(--space-6);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .header-nav .nav-link {
        padding: var(--space-3) var(--space-4);
        width: 100%;
        border-bottom: 1px solid var(--border-primary);
        border-radius: 0;
    }

    .header-nav .nav-link:last-child {
        border-bottom: none;
    }
}

/* Hero Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: calc(70px + var(--space-10)) 0 var(--space-10);
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: var(--text-base);
        margin-bottom: var(--space-6);
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--space-3);
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Page Hero Mobile */
@media (max-width: 768px) {
    .page-hero {
        padding: calc(70px + var(--space-10)) 0 var(--space-10);
    }

    .page-hero h1 {
        font-size: var(--text-3xl);
    }

    .page-hero p {
        font-size: var(--text-base);
        padding: 0 var(--space-4);
    }
}

/* Services Grid Mobile */
@media (max-width: 768px) {
    .services {
        padding: var(--space-16) 0;
    }

    .card-service {
        padding: var(--space-6);
    }

    .card-service h3 {
        font-size: var(--text-xl);
    }

    .card-service .card-number {
        font-size: var(--text-3xl);
    }
}

/* Contact Section Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: var(--space-10) 0;
    }

    .contact-grid {
        gap: var(--space-8);
    }

    .contact-info h2 {
        font-size: var(--text-2xl);
    }

    .contact-form-card {
        padding: var(--space-6);
    }

    .contact-form-card h3 {
        font-size: var(--text-lg);
    }

    .contact-item {
        gap: var(--space-3);
    }

    .contact-item-icon {
        width: 40px;
        height: 40px;
    }
}

/* Pricing Mobile */
@media (max-width: 768px) {
    .pricing-section {
        padding: var(--space-10) 0;
    }

    .pricing-card {
        padding: var(--space-6);
    }

    .pricing-price .price {
        font-size: var(--text-3xl);
    }
}

/* CTA Section Mobile */
@media (max-width: 768px) {
    .cta-section {
        padding: var(--space-16) var(--space-4);
    }

    .cta-content h2 {
        font-size: var(--text-2xl);
    }

    .cta-content p {
        font-size: var(--text-base);
    }
}

/* Section Headers Mobile */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: var(--space-8);
        padding: 0 var(--space-4);
    }

    .section-header h2 {
        font-size: var(--text-2xl);
    }

    .section-subtitle {
        font-size: var(--text-base);
    }
}

/* Service Detail Blocks Mobile */
@media (max-width: 768px) {
    .services-detail {
        padding: var(--space-10) 0;
    }

    .service-block {
        gap: var(--space-8);
    }

    .service-number {
        font-size: var(--text-4xl);
    }

    .service-content h2 {
        font-size: var(--text-2xl);
    }

    .service-description {
        font-size: var(--text-base);
    }

    .service-visual {
        aspect-ratio: 16/10;
    }
}

/* FAQ Mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: var(--space-10) 0;
    }

    .faq-item {
        padding: var(--space-4);
    }
}

/* Quote Cards Mobile */
@media (max-width: 768px) {
    .quote-section {
        padding: var(--space-10) 0;
    }

    .quote-card {
        padding: var(--space-5);
    }
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer {
        padding: var(--space-10) 0 var(--space-6);
    }

    .footer-grid {
        gap: var(--space-8);
        margin-bottom: var(--space-8);
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-col h4 {
        margin-bottom: var(--space-3);
    }

    .footer-bottom {
        padding-top: var(--space-6);
    }

    .footer-legal {
        gap: var(--space-3);
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Legal Pages Mobile */
@media (max-width: 768px) {
    .legal-content {
        padding: var(--space-8) 0;
    }

    .legal-section {
        margin-bottom: var(--space-6);
    }

    .legal-section h2 {
        font-size: var(--text-xl);
    }

    .legal-section h3 {
        font-size: var(--text-lg);
    }
}

/* Social Footer Mobile */
.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Container padding mobile */
@media (max-width: 640px) {
    .container {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }
}

/* Button improvements for mobile touch */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
    }

    .btn-lg {
        padding: var(--space-4) var(--space-6);
    }
}

/* Legal date styling */
.legal-date {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-primary);
}