/* =============================================
   TESFA - Luxury Theme with Dark/Light Mode
   ============================================= */

:root {
    /* Light Theme (default) */
    --bg-primary: #fdfcfa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f8f6f3;
    --bg-accent: #f0ede8;
    
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #888888;
    
    --gold: #b8924c;
    --gold-light: #d4ab5e;
    --gold-dark: #96743a;
    --gold-glow: rgba(184, 146, 76, 0.15);
    
    --border: #e5e2dc;
    --shadow: rgba(0, 0, 0, 0.08);
    
    --font-display: 'Cinzel', Georgia, serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-accent: #222222;
    
    --text-primary: #f5f5f5;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    
    --gold: #d4ab5e;
    --gold-light: #e8c88a;
    --gold-dark: #b8924c;
    --gold-glow: rgba(212, 171, 94, 0.2);
    
    --border: #2a2a2a;
    --shadow: rgba(0, 0, 0, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: background var(--transition), color var(--transition);
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: white; }
a { color: inherit; text-decoration: none; }

/* =============================================
   Animations
   ============================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}

.animate-fade-up { animation: fadeUp 1s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   Preloader
   ============================================= */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }

.preloader-logo {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 4rem);
    letter-spacing: 0.4em;
    color: var(--text-primary);
    animation: fadeIn 1s ease;
}

.preloader-sub {
    font-size: 1.8rem;
    color: var(--gold);
    margin: 0.5rem 0;
    animation: fadeIn 1s ease 0.3s both;
}

.preloader-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease 0.5s both;
}

.preloader-line {
    width: 150px;
    height: 2px;
    background: var(--border);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.preloader-line::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    animation: load 2s ease forwards 0.5s;
}

@keyframes load { to { width: 100%; } }

/* =============================================
   Navigation
   ============================================= */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all var(--transition);
}

.nav.scrolled {
    height: 70px;
    box-shadow: 0 2px 30px var(--shadow);
}

.nav-logo { display: flex; align-items: baseline; gap: 8px; }

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.25em;
    color: var(--text-primary);
    transition: color var(--transition);
}

.logo-script {
    font-size: 1rem;
    color: var(--gold);
}

.nav-links { display: flex; gap: 2.5rem; }

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.theme-toggle {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.theme-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.sun-icon { display: block; }
.moon-icon { display: none; }

[data-theme="dark"] .sun-icon { display: none; }
[data-theme="dark"] .moon-icon { display: block; }

.nav-whatsapp {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    transition: all var(--transition);
}

.nav-whatsapp:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-wa {
    padding: 1rem 2rem;
    background: var(--gold) !important;
    color: white !important;
    font-size: 0.9rem !important;
    font-family: var(--font-body) !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
}

/* =============================================
   Hero
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 80px;
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, var(--gold-glow) 0%, transparent 60%);
}

.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px; height: 400px;
    top: 10%; left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px; height: 300px;
    top: 50%; right: 10%;
    animation-delay: 2s;
}

.orb-3 {
    width: 200px; height: 200px;
    bottom: 20%; left: 30%;
    animation-delay: 4s;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 14vw, 9rem);
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--text-primary);
    line-height: 1;
    transition: color var(--transition);
}

.hero-script {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: var(--gold);
    margin: 0.5rem 0 0.25rem;
}

.hero-meaning {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: white;
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease infinite;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* =============================================
   Stats
   ============================================= */
.stats {
    background: var(--bg-tertiary);
    padding: 3rem 5%;
    transition: background var(--transition);
}

.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

@media (max-width: 600px) {
    .stat-line { display: none; }
}

/* =============================================
   Section Utilities
   ============================================= */
.label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    transition: color var(--transition);
}

h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
}

.divider {
    width: 50px; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 1.5rem 0;
}

/* =============================================
   Story
   ============================================= */
.story {
    padding: 8rem 5%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    transition: background var(--transition);
}

.story-content { max-width: 600px; }

.story .lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.9;
}

.story em { color: var(--gold); font-style: normal; }
.story strong { color: var(--text-primary); }

.story-signature {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gold);
}

.story-visual {
    position: relative;
    width: 300px; 
    height: 300px;
    flex-shrink: 0;
}

/* SVG Watch */
.watch-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

/* Dark mode adjustments for SVG watch */
[data-theme="dark"] .watch-svg text[fill="#1a1a1a"] {
    fill: #f5f5f5;
}

[data-theme="dark"] .watch-svg line[stroke="#1a1a1a"] {
    stroke: #f5f5f5;
}

[data-theme="dark"] .watch-svg circle[fill="#1a1a1a"] {
    fill: #f5f5f5;
}

[data-theme="dark"] .watch-svg stop[style*="stop-color:#fdfcfa"] {
    stop-color: #1a1a1a;
}

[data-theme="dark"] .watch-svg stop[style*="stop-color:#f0ede8"] {
    stop-color: #2a2a2a;
}

@media (max-width: 1000px) {
    .story { flex-direction: column-reverse; gap: 3rem; text-align: center; }
    .story-visual { width: 240px; height: 240px; margin: 0 auto; }
    .story .divider { margin: 1.5rem auto; }
}

/* =============================================
   Features
   ============================================= */
.features {
    padding: 6rem 5%;
    background: var(--bg-tertiary);
    transition: background var(--transition);
}

.features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.features-header .divider { margin: 1.5rem auto; }

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow);
    border-color: var(--gold);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    transition: all var(--transition);
}

.feature:hover .feature-icon {
    transform: scale(1.1);
    background: var(--gold);
    color: white;
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   Bespoke
   ============================================= */
.bespoke {
    padding: 8rem 5%;
    background: var(--bg-primary);
    transition: background var(--transition);
}

.bespoke-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.bespoke-header .divider { margin: 1.5rem auto; }
.bespoke-header p { color: var(--text-secondary); font-size: 1.05rem; }

.bespoke-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.bespoke-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

.card-accent {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.bespoke-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow);
}

.bespoke-card:hover .card-accent {
    transform: scaleX(1);
    animation: shimmer 2s linear infinite;
}

.card-series {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.card-status {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border);
    display: inline-block;
}

.bespoke-cta {
    text-align: center;
    margin-top: 4rem;
}

.bespoke-cta p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

@media (max-width: 700px) {
    .bespoke-grid { grid-template-columns: 1fr; }
}

/* =============================================
   Process
   ============================================= */
.process {
    padding: 8rem 5%;
    background: var(--bg-secondary);
    transition: background var(--transition);
}

.process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.process-header .divider { margin: 1.5rem auto; }

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 28px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light), transparent);
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-marker {
    width: 58px; height: 58px;
    background: var(--bg-secondary);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all var(--transition);
}

.step:hover .step-marker {
    background: var(--gold);
}

.step-marker span {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    transition: color var(--transition);
}

.step:hover .step-marker span {
    color: white;
}

.step-content { padding-top: 0.5rem; }

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   Testimonial
   ============================================= */
.testimonial {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-accent) 100%);
    transition: background var(--transition);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 8rem;
    color: var(--gold);
    line-height: 0.5;
    opacity: 0.3;
}

.testimonial blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 1rem 0 1.5rem;
    transition: color var(--transition);
}

.testimonial cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* =============================================
   Contact
   ============================================= */
.contact {
    padding: 8rem 5%;
    background: var(--bg-primary);
    transition: background var(--transition);
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.contact-info .divider { margin: 1.5rem 0; }

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.contact-btn:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.contact-btn.whatsapp:hover { background: #25d366; color: white; }
.contact-btn.email:hover { background: var(--text-primary); color: var(--bg-primary); }

.contact-btn span {
    font-size: 0.95rem;
    font-weight: 500;
}

.locations {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.location { text-align: left; }

.location strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: color var(--transition);
}

.location span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.card-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.card-logo { margin-bottom: 0.5rem; }

.card-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    transition: color var(--transition);
}

.card-script {
    display: block;
    font-size: 1rem;
    color: var(--gold);
}

.card-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card-row svg { color: var(--gold); flex-shrink: 0; }

.card-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.card-footer span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.card-motto {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold) !important;
    margin-top: 0.25rem;
}

.card-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    padding: 0.4rem 0.8rem;
    background: var(--gold);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-card { max-width: 400px; margin: 0 auto; }
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--bg-tertiary);
    transition: background var(--transition);
}

.footer-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo span:first-child {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    transition: color var(--transition);
}

.footer-script { color: var(--gold); }

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-motto {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold) !important;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 5%;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* =============================================
   WhatsApp Float
   ============================================= */
.wa-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition);
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-pulse {
    position: absolute;
    inset: -5px;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 600px) {
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .footer-main { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .locations { justify-content: center; text-align: center; }
}
