/* ==========================================================================
   Monia Mallet CPA - Premium Stylesheet
   Design System: Acadian Modernism (Navy, Slate, Gold, Glassmorphism)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & DESIGN SYSTEM
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-navy-dark: #0A192F;
    --color-navy-medium: #112240;
    --color-navy-light: #233554;
    --color-navy-glass: rgba(17, 34, 64, 0.75);
    
    --color-gold: #D4AF37;
    --color-gold-hover: #F3C623;
    --color-gold-opacity: rgba(212, 175, 55, 0.08);
    --color-gold-glow: rgba(212, 175, 55, 0.2);
    
    --color-white: #F8FAFC;
    --color-white-pure: #FFFFFF;
    
    --color-slate-100: #F1F5F9;
    --color-slate-200: #E2E8F0;
    --color-slate-400: #94A3B8;
    --color-slate-600: #475569;
    --color-slate-800: #1E293B;
    
    --color-red: #EF4444;
    --color-green: #10B981;

    /* Fonts */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-title: 'Outfit', sans-serif;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.3);

    /* Borders & Transitions */
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-glass-gold: 1px solid rgba(212, 175, 55, 0.2);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-navy-dark);
    color: var(--color-slate-200);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Language Switch Display Control */
body.lang-fr .lang-en {
    display: none !important;
}
body.lang-en .lang-fr {
    display: none !important;
}

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

section {
    padding: 100px 0;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-white-pure);
    line-height: 1.25;
}

strong {
    color: var(--color-white-pure);
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-title);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-slate-400);
}

/* --------------------------------------------------------------------------
   4. BUTTONS & INTERACTIVES
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
    gap: 10px;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-navy-dark);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white-pure);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    background-color: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--border-glass);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 12px 0;
    background-color: rgba(10, 25, 47, 0.95);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.logo-icon svg {
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.logo:hover .logo-icon svg {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-white-pure);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-desktop a {
    color: var(--color-slate-400);
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 0;
}

.nav-desktop a:hover {
    color: var(--color-white-pure);
}

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

.nav-desktop a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    background-color: var(--color-navy-light);
    padding: 4px;
    border-radius: var(--border-radius-sm);
    border: var(--border-glass);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-slate-400);
    padding: 6px 12px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.lang-btn.active {
    background-color: var(--color-gold);
    color: var(--color-navy-dark);
}

.lang-btn:not(.active):hover {
    color: var(--color-white-pure);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    padding: 10px 18px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.btn-tel:hover {
    background-color: var(--color-gold);
    color: var(--color-navy-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}

.icon-phone {
    width: 16px;
    height: 16px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-white-pure);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-navy-dark);
    z-index: 999;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.mobile-menu-overlay.active {
    right: 0;
}

.nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.nav-mobile a {
    color: var(--color-slate-200);
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

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

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-slate-200);
    margin-bottom: 24px;
    line-height: 1.4;
    border-left: 3px solid var(--color-gold);
    padding-left: 20px;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--color-slate-400);
    margin-bottom: 30px;
}

.hero-tagline {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.15rem;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Acadian star backdrop icon styling */
.acadian-accent {
    position: absolute;
    top: 50px;
    left: -100px;
    width: 500px;
    height: 500px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
    filter: blur(80px);
}

.acadian-accent svg {
    width: 100%;
    height: 100%;
}

.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--color-navy-glass);
    border: var(--border-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3), 0 0 50px -10px rgba(212, 175, 55, 0.1);
}

.main-showcase {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.main-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(212,175,55,0.3) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.badge-acadian {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: var(--color-gold);
    color: var(--color-navy-dark);
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 24px;
}

.star-icon {
    width: 12px;
    height: 12px;
}

.showcase-title {
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-white-pure);
    margin-bottom: 12px;
}

.showcase-desc {
    font-size: 0.95rem;
    color: var(--color-slate-400);
    margin-bottom: 30px;
    line-height: 1.5;
}

.showcase-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-slate-400);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Floating Indicator widgets */
.small-indicator {
    position: absolute;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-white-pure);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    border: var(--border-glass-gold);
}

.indicator-1 {
    top: 15%;
    right: -30px;
    background: rgba(17, 34, 64, 0.9);
}

.indicator-2 {
    bottom: 15%;
    left: -30px;
    background: rgba(17, 34, 64, 0.9);
}

/* --------------------------------------------------------------------------
   7. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
    background-color: var(--color-navy-medium);
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-navy-dark);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-gold);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--color-gold);
    color: var(--color-navy-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.service-icon {
    width: 28px;
    height: 28px;
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list li {
    font-size: 0.95rem;
    color: var(--color-slate-400);
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.9rem;
}

.service-card:hover .service-list li {
    color: var(--color-slate-200);
}

/* --------------------------------------------------------------------------
   8. WHY CHOOSE US SECTION
   -------------------------------------------------------------------------- */
.why-section {
    position: relative;
}

.why-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.why-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-size: 1.05rem;
    color: var(--color-slate-300);
    line-height: 1.5;
}

.checkmark-wrapper {
    width: 24px;
    height: 24px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-checkmark {
    width: 14px;
    height: 14px;
}

.why-quote {
    border-left: 3px solid var(--color-gold);
    padding-left: 24px;
    font-style: italic;
    color: var(--color-slate-400);
    font-size: 1.1rem;
}

.why-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-decor-blob {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(10,25,47,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.stat-bubble {
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    z-index: 2;
    padding: 20px 24px;
    width: 280px;
}

.badge-icon {
    width: 36px;
    height: 36px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.title-bold {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-white-pure);
}

.desc-small {
    font-size: 0.8rem;
    color: var(--color-slate-400);
    margin-top: 2px;
}

.info-card-top {
    top: 20%;
    left: 10px;
}

.info-card-bottom {
    bottom: 20%;
    right: 10px;
    border-color: rgba(255, 255, 255, 0.08);
}

/* --------------------------------------------------------------------------
   9. TEAM SECTION
   -------------------------------------------------------------------------- */
.team-section {
    background-color: var(--color-navy-medium);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--color-navy-dark);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-md);
}

.team-avatar-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    position: relative;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.team-card:hover .team-img {
    transform: scale(1.06);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 600;
}

.team-footer {
    margin-top: 60px;
}

.team-footer-text {
    font-size: 1.15rem;
    color: var(--color-slate-400);
}

/* --------------------------------------------------------------------------
   10. CONTACT SECTION & FORMS
   -------------------------------------------------------------------------- */
.contact-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--color-slate-400);
    margin-bottom: 30px;
}

.contact-cta-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-white-pure);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.contact-method-item.link-item:hover {
    background-color: rgba(212, 175, 55, 0.03);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
}

.method-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: rgba(212, 175, 55, 0.05);
    color: var(--color-gold);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-slate-400);
    margin-bottom: 2px;
}

.method-value {
    font-size: 1.1rem;
    color: var(--color-white-pure);
    line-height: 1.3;
}

.method-sub {
    font-size: 0.85rem;
    color: var(--color-slate-400);
    margin-top: 2px;
}

.contact-image-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.building-card {
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    padding: 0;
    border-radius: var(--border-radius-lg);
    position: relative;
}

.building-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.building-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.building-card:hover .building-img {
    transform: scale(1.04);
}

.building-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0) 30%, rgba(10, 25, 47, 0.9) 100%);
    pointer-events: none;
}

.building-card-details {
    padding: 30px;
    background-color: rgba(17, 34, 64, 0.8);
    backdrop-filter: blur(10px);
}

.building-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--color-white-pure);
}

.building-location {
    font-size: 0.95rem;
    color: var(--color-slate-400);
    line-height: 1.6;
}

.building-location strong {
    color: var(--color-white);
    font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   11. FOOTER SECTION
   -------------------------------------------------------------------------- */
.footer {
    border-top: var(--border-glass);
    padding: 80px 0 40px;
    background-color: #061021;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-desc {
    color: var(--color-slate-400);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--color-slate-400);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-white-pure);
    transform: translateX(3px);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}

.copyright {
    font-size: 0.9rem;
    color: var(--color-slate-400);
}

.tagline-sm {
    font-size: 0.8rem;
    color: var(--color-slate-600);
}

/* --------------------------------------------------------------------------
   12. ANIMATIONS & FLOATS
   -------------------------------------------------------------------------- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: floatDelayed 5s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* --------------------------------------------------------------------------
   13. MEDIA QUERIES (RESPONSIVENESS)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-subtitle {
        border-left: none;
        padding-left: 0;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-graphic {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    
    .why-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-visual {
        height: 350px;
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-legal {
        grid-column: span 2;
        text-align: left;
        border-top: var(--border-glass);
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }

    .nav-desktop {
        display: none;
    }
    
    .btn-tel {
        display: none; /* Hide telephone CTA pill on small headers, menu button will cover it or use footer */
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        grid-column: span 1;
    }
    
    .form-card {
        padding: 24px;
    }
    
    .indicator-1, .indicator-2 {
        display: none; /* Hide floating small tags on mobile to clean layout */
    }
}

/* --------------------------------------------------------------------------
   14. ERROR 404 PAGE STYLES
   -------------------------------------------------------------------------- */
.error-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 300px); /* Fill space between header and footer */
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.error-card {
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.error-code {
    font-size: 7rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 24px;
    font-family: var(--font-title);
    letter-spacing: -2px;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.error-title {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--color-white-pure);
}

.error-desc {
    color: var(--color-slate-400);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-cta-wrapper {
    display: flex;
    justify-content: center;
}
