/* ═══════════════════════════════════════════════════════════════════════════
   LZPflowAI DESIGN SYSTEM - NOIR & OR LUXE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ───────────────────────────────────────────────────────────────────────────── */
:root {
    /* Colors - Primary (Gold) */
    --primary: #C9A84C;
    --primary-light: #D4B85A;
    --primary-dark: #A68A3E;

    /* Colors - Backgrounds */
    --bg-main: #0A0A0A;
    --bg-surface: #141414;
    --bg-elevated: #1E1E1E;
    --bg-footer: #050505;

    /* Colors - Text */
    --text-primary: #FFFFFF;
    --text-secondary: #E8E0D0;
    --text-muted: #6B6356;

    /* Colors - Borders */
    --border: #2A2520;
    --border-light: #1E1E1E;

    /* Colors - States */
    --error: #FF5154;
    --success: #C9A84C;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #C9A84C, #D4B85A, #A68A3E);
    --gradient-button: linear-gradient(135deg, #C9A84C, #D4B85A);
    --gradient-button-hover: linear-gradient(135deg, #D4B85A, #E0C76A);
    --gradient-line: linear-gradient(90deg, #A68A3E, #C9A84C, #D4B85A);
    --gradient-surface: linear-gradient(180deg, #0A0A0A, #141414);

    /* Shadows */
    --shadow-gold-sm: 0 2px 12px rgba(201, 168, 76, 0.08);
    --shadow-gold-md: 0 8px 30px rgba(201, 168, 76, 0.12);
    --shadow-gold-lg: 0 12px 40px rgba(201, 168, 76, 0.20);
    --shadow-gold-glow: 0 0 40px rgba(201, 168, 76, 0.15);
    --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-dark-lg: 0 8px 40px rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Spacing */
    --section-padding: 60px 20px;
    --container-max-width: 480px;

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESET & BASE STYLES
   ───────────────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: #000000;
    /* Real black for the whole page */
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 0;
    min-height: auto;
    overflow: hidden;
    background: transparent;
    z-index: 1;
}

/* Decorative Orbs Base */
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Global Decorative Orbs */
.global-orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    /* Behind transparent sections, in front of body background */
    pointer-events: none;
    overflow: hidden;
}

.global-orb-tr {
    width: 800px;
    height: 800px;
    top: -300px;
    right: -300px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.25), transparent 70%);
    filter: blur(120px);
    animation: global-orb-breathe 12s ease-in-out infinite alternate;
}

.global-orb-bl {
    width: 700px;
    height: 700px;
    bottom: -250px;
    left: -250px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent 70%);
    filter: blur(120px);
    animation: global-orb-breathe 15s ease-in-out infinite alternate-reverse;
}

/* Local Hero Orbs */
.orb-top-right {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 70%);
    filter: blur(80px);
    animation: orb-breathe 8s ease-in-out infinite alternate;
}

.orb-bottom-left {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 70%);
    filter: blur(80px);
    animation: orb-breathe 10s ease-in-out infinite alternate-reverse;
}

/* Floating Particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite;
}

/* Logo Container */
.logo-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    animation: fade-in-up 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    z-index: 5;
}

.hero-logo {
    width: 80%;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.15));
    transition: var(--transition-smooth);
}

.hero-logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.4));
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 12vw, 56px);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    animation: title-entry 0.8s ease-out 0.3s backwards;
    background: linear-gradient(90deg,
            #FFFFFF 0%,
            #FFFFFF 40%,
            #C9A84C 50%,
            #FFFFFF 60%,
            #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation:
        title-entry 0.8s ease-out 0.3s backwards,
        gold-shimmer 4s linear 1.5s infinite;
}

/* Decorative Line */
.decorative-line {
    width: 60px;
    height: 2px;
    background: var(--gradient-line);
    border-radius: 2px;
    margin-bottom: 20px;
    animation: line-expand 1s ease-out 0.6s backwards;
}

/* Hero Text */
.hero-tagline {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: var(--text-secondary);
    text-align: center;
    max-width: 400px;
    line-height: 1.7;
    margin-bottom: 8px;
    animation: fade-in 0.8s ease-out 0.8s backwards;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: fade-in 0.6s ease-out 1s backwards;
    margin-bottom: 0;
}

/* Hero Socials Bar */
.hero-socials {
    display: flex;
    gap: 20px;
    animation: fade-in 0.8s ease-out 1.2s backwards;
}

.hero-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition-bounce);
}

.hero-social-link:hover {
    color: var(--primary);
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.2);
}

.hero-social-link svg {
    width: 20px;
    height: 20px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION LABEL (Shared Component)
   ───────────────────────────────────────────────────────────────────────────── */
.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    animation: fade-in 0.5s ease-out;
}

.label-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--border);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SOCIAL LINKS SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.social-section {
    background: transparent;
    padding: 20px 20px 80px;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.social-btn {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: transparent;
    /* Changed from var(--bg-surface) to show the glow */
    border: none;
    /* Border is now handled by pseudo-elements */
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Border Glow Animation Layer */
.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 300%;
    background: conic-gradient(transparent,
            rgba(201, 168, 76, 0.1),
            var(--primary),
            rgba(201, 168, 76, 0.1),
            transparent 30%);
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotate-border 4s linear infinite;
    z-index: -2;
    opacity: 0.8;
}

/* Inner cover to create the border effect */
.social-btn::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    /* Border thickness */
    background: var(--bg-surface);
    border-radius: calc(var(--radius-lg) - 1.5px);
    z-index: -1;
    transition: background var(--transition-smooth);
}

.social-btn,
.contact-card,
.contact-form {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease-out,
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-btn.animate-in,
.contact-card.animate-in,
.contact-form.animate-in,
.hero-socials.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.social-btn:hover {
    transform: none;
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.25), 0 4px 15px rgba(0, 0, 0, 0.4);
    transition-delay: 0s !important;
}

.social-btn:hover::before {
    background: var(--primary);
    animation: none;
    opacity: 1;
}

.social-btn:hover::after {
    background: #151515;
    /* Maintain a solid background */
    transition-delay: 0s !important;
}

.social-btn:hover .social-icon,
.social-btn:hover .social-icon svg,
.social-btn:hover .social-name,
.social-btn:hover .social-handle,
.social-btn:hover .social-arrow,
.social-btn:hover .social-arrow svg {
    transition-delay: 0s !important;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    perspective: 1000px;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.social-btn:hover .social-icon {
    background: var(--gradient-button);
    border-color: transparent;
}

.social-btn:hover .social-icon svg {
    color: var(--bg-main);
    fill: var(--bg-main);
    stroke: var(--bg-main);
    transform: scale(1.1);
}

.social-text {
    flex: 1;
    margin-left: 16px;
    display: flex;
    flex-direction: column;
}

.social-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.social-handle {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    transition: var(--transition-base);
}

.social-btn:hover .social-name {
    color: var(--text-primary);
}

.social-btn:hover .social-handle {
    color: var(--primary);
}

.social-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: var(--transition-base);
}

.social-btn:hover .social-arrow {
    transform: translateX(5px);
}

.social-btn:hover .social-arrow svg {
    color: var(--primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.contact-section {
    background: transparent;
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: var(--container-max-width);
    margin: 0 auto;
    position: relative;
}

.contact-cards::before {
    content: '';
    position: absolute;
    inset: -350px;
    /* Even larger spread */
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.3), transparent 75%);
    z-index: -1;
    filter: blur(140px);
    /* More diffuse */
    pointer-events: none;
    animation: orb-breathe 12s ease-in-out infinite alternate;
}

.contact-card {
    background: transparent;
    border: none;
    border-radius: var(--radius-xl);
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    animation: fade-in-up 0.6s ease-out backwards;
    position: relative;
    overflow: hidden;
    /* Restored for border animation */
    z-index: 1;
}

/* Border Glow Animation Layer for Contact Cards */
.contact-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 400%;
    background: conic-gradient(transparent,
            rgba(201, 168, 76, 0.1),
            var(--primary),
            rgba(201, 168, 76, 0.1),
            transparent 30%);
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotate-border 4s linear infinite;
    z-index: -2;
    opacity: 0.8;
}

/* Background behind the card content */
.contact-card::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: var(--bg-surface);
    border-radius: calc(var(--radius-xl) - 1.5px);
    z-index: -1;
    transition: background var(--transition-smooth);
}

.contact-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-card:hover {
    transform: none;
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.25), 0 4px 15px rgba(0, 0, 0, 0.4);
}

.contact-card:hover::before {
    background: var(--primary);
    animation: none;
    opacity: 1;
}

.contact-card:hover::after {
    background: #151515;
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: var(--transition-base);
}

.contact-card:hover .contact-icon {
    background: var(--gradient-button);
    border-color: transparent;
}

.contact-card:hover .contact-icon svg {
    color: var(--bg-main);
}

.contact-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-value {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition-base);
    word-break: break-word;
}

a.contact-value:hover {
    color: var(--primary-light);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT FORM SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.form-section {
    background: transparent;
    padding: 60px 20px 80px;
}

.contact-form {
    max-width: var(--container-max-width);
    margin: 0 auto;
    background: transparent;
    border: none;
    border-radius: var(--radius-2xl);
    padding: 40px 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation: fade-in-up 0.6s ease-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Border Glow Animation Layer for Form */
.contact-form::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 200%;
    background: conic-gradient(transparent,
            rgba(201, 168, 76, 0.1),
            var(--primary),
            rgba(201, 168, 76, 0.1),
            transparent 30%);
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotate-border 6s linear infinite;
    z-index: -2;
    opacity: 0.8;
}

/* Inner cover for Form */
.contact-form::after {
    content: '';
    position: absolute;
    inset: 2px;
    /* Slightly thicker border for the large form */
    background: var(--bg-surface);
    border-radius: calc(var(--radius-2xl) - 2px);
    z-index: -1;
}

/* Removed container hover to place it on individual fields */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    transition: var(--transition-base);
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-base);
}

.check-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--primary);
    opacity: 0;
    transition: var(--transition-base);
}

input,
select,
textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--bg-elevated);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px 14px 48px;
    transition: var(--transition-base);
}

textarea {
    padding: 14px 16px;
    resize: vertical;
    min-height: 120px;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

input:hover,
select:hover,
textarea:hover {
    border-color: var(--primary);
    background: #1A1A1A;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.15);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #1A1A1A;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.form-group:focus-within label {
    color: var(--primary);
}

.form-group:focus-within .input-icon {
    color: var(--primary);
}

/* Select Wrapper */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    padding-right: 48px;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-base);
}

.select-wrapper:focus-within .select-arrow {
    color: var(--primary);
}

/* Textarea Wrapper */
.textarea-wrapper textarea {
    padding-left: 16px;
}

/* Validation States */
.form-group.valid input {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08);
}

.form-group.valid .check-icon {
    opacity: 1;
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--error);
    box-shadow: 0 0 0 4px rgba(255, 81, 84, 0.1);
    animation: shake 0.4s ease;
}

.error-message {
    display: none;
    font-size: 12px;
    font-weight: 500;
    color: var(--error);
    margin-top: 6px;
}

.form-group.error .error-message {
    display: block;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    margin-top: 28px;
    padding: 18px 32px;
    background: var(--gradient-button);
    color: var(--bg-main);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);
    transform: skewX(-20deg);
    animation: shimmer-bounce 6s linear infinite;
    pointer-events: none;
}

.submit-btn:hover {
    background: var(--gradient-button-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.submit-btn:hover::after {
    animation-duration: 3s;
    /* Accelerate on hover but still slow */
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-loading,
.btn-success,
.btn-error {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

.submit-btn.loading {
    background: #444;
    box-shadow: none;
    cursor: wait;
    pointer-events: none;
}

.submit-btn.success {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4);
    animation: success-bounce 0.5s ease;
}

.submit-btn.error {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
    animation: shake 0.4s ease;
}

.submit-btn.success .btn-text,
.submit-btn.error .btn-text,
.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

.submit-btn.success .btn-success {
    display: inline;
}

.submit-btn.error .btn-error {
    display: inline;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
    background: var(--bg-footer);
    border-top: 1px solid var(--border-light);
    padding: 60px 20px;
}

.footer-line {
    width: 60px;
    height: 2px;
    background: var(--gradient-line);
    margin: 0 auto 40px;
    border-radius: 2px;
    opacity: 0.6;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
}

.footer-brand-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: inherit;
}

.footer-brand-link:hover {
    transform: translateY(-5px);
}

.footer-brand-link:hover .footer-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.5));
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.3));
    transition: var(--transition-base);
}


.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-credit {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

.footer-credit .gold {
    color: var(--primary);
    font-weight: 600;
}

.footer-copyright {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    transition: var(--transition-base);
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-social a:hover svg {
    fill: var(--primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────────────────────────────────────── */

/* Orb Breathing */
@keyframes orb-breathe {

    0%,
    100% {
        opacity: 0.04;
        transform: scale(1);
    }

    50% {
        opacity: 0.08;
        transform: scale(1.15);
    }
}

/* Global Orb Breathing - More visible */
@keyframes global-orb-breathe {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Particle Float */
@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: var(--particle-opacity, 0.2);
    }

    90% {
        opacity: var(--particle-opacity, 0.2);
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}


/* Title Entry */
@keyframes title-entry {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gold Shimmer on Title */
@keyframes gold-shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Line Expand */
@keyframes line-expand {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 120px;
        opacity: 1;
    }
}

/* Fade In */
@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Slide Up */
@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Up */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-4px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(4px);
    }
}

/* Shimmer Bounce (Allé-Retour) */
@keyframes shimmer-bounce {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

/* Shimmer Sweep */
@keyframes shimmer-sweep {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

/* Success Bounce */
@keyframes success-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* Border Flash */
@keyframes border-flash {
    0% {
        border-color: var(--primary);
        box-shadow: 0 0 15px rgba(201, 168, 76, 0.2);
    }

    100% {
        border-color: var(--border);
        box-shadow: none;
    }
}

/* Rotating Border Glow */
@keyframes rotate-border {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN
   ───────────────────────────────────────────────────────────────────────────── */

/* Tablets and Small Screens */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 16px;
    }

    .hero {
        padding: 50px 16px 40px;
        min-height: auto;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-form {
        padding: 32px 24px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --section-padding: 40px 16px;
    }

    .hero {
        padding: 40px 16px 30px;
    }

    .hero-subtitle {
        text-align: center;
        width: 100%;
    }

    .hero-tagline {
        font-size: 16px;
        text-align: center;
    }

    .hero-logo {
        width: 100%;
    }

    .social-btn {
        padding: 14px 16px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-name {
        font-size: 15px;
    }

    .social-handle {
        font-size: 13px;
    }

    .contact-form {
        padding: 28px 20px;
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }

    .submit-btn {
        font-size: 13px;
        padding: 16px 12px;
        white-space: nowrap;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-right {
        align-items: center;
    }
}

/* Touch Devices - Remove hover effects, use active states */
@media (hover: none) {
    .social-btn:hover {
        transform: none;
        background: var(--bg-surface);
        border-color: var(--border);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    }

    .social-btn:active {
        background: var(--gradient-button);
        border-color: var(--primary);
        transform: scale(0.98);
    }

    .social-btn:active .social-icon {
        background: rgba(10, 10, 10, 0.15);
    }

    .social-btn:active .social-icon svg,
    .social-btn:active .social-name,
    .social-btn:active .social-arrow svg {
        color: var(--bg-main);
    }

    .social-btn:active .social-handle {
        color: rgba(10, 10, 10, 0.6);
    }

    .contact-card:hover {
        transform: none;
        border-color: var(--border);
    }

    .contact-card:active {
        transform: scale(0.98);
        border-color: var(--primary);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .particle {
        display: none;
    }
}

/* High Contrast */
@media (prefers-contrast: high) {
    :root {
        --border: #4A4540;
    }

    .social-btn,
    .contact-card,
    .contact-form {
        border-width: 2px;
    }
}