/* ==========================================
   MILLARRIS LTD - Premium UK Corporate Design System
   100% English Executive Suite
   Color Palette: Royal Navy, Gold, Emerald & Cyan
   ========================================== */

:root {
    --bg-dark: #070B19;
    --bg-card: rgba(15, 23, 42, 0.75);
    --bg-card-hover: rgba(30, 41, 59, 0.85);
    --gold-primary: #D4AF37;
    --gold-hover: #F3E5AB;
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --navy-deep: #0B132B;
    --navy-light: #1C2541;
    --cyan-accent: #00F5D4;
    --text-main: #F1F5F9;
    --text-muted: #94A3B8;
    --border-glass: rgba(212, 175, 55, 0.2);
    --border-hover: rgba(212, 175, 55, 0.6);
    --shadow-glow: 0 10px 30px rgba(212, 175, 55, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Cinzel', serif;
}

/* Reset & General Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    direction: ltr;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Dynamic Background Canvas */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

/* Container */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Typography Utilities */
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--gold-primary) 50%, var(--cyan-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.align-center { align-items: center; }

@media (max-width: 992px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold-gradient);
    color: #0B132B;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.1rem; }
.btn-block { width: 100%; }

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease-out;
}

.glow-effect:hover::after {
    transform: scale(1);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 2rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Top Announcement Bar */
.announcement-bar {
    background: rgba(11, 19, 43, 0.95);
    border-bottom: 1px solid var(--border-glass);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge-official {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.top-contact {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--text-muted);
}

.top-contact a:hover {
    color: var(--gold-primary);
}

/* Site Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 11, 25, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.85rem 0;
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gold-primary);
}

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

.brand-name {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

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

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 6rem 0 4rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(28, 37, 65, 0.6), transparent 70%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero-bg.png') no-repeat center center / cover;
    opacity: 0.12;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    color: var(--gold-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 620px;
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-card {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hero Visual Card */
.visual-card-glow {
    position: relative;
}

.visual-card-glow::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: var(--gold-gradient);
    border-radius: var(--radius-lg);
    filter: blur(25px);
    opacity: 0.25;
    z-index: -1;
}

.interactive-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(11, 19, 43, 0.95));
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.card-header-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--cyan-accent);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan-accent);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 245, 212, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 245, 212, 0); }
}

.company-card-body {
    text-align: center;
}

.hero-card-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.comp-no {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    background: rgba(0, 245, 212, 0.1);
    color: var(--cyan-accent);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.card-specs {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.spec-item .label { color: var(--text-muted); }
.spec-item .val { font-weight: 700; color: var(--text-main); }

/* Section Base */
.section {
    padding: 5rem 0;
    position: relative;
}

.dark-bg {
    background: rgba(11, 19, 43, 0.4);
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-subtitle {
    display: block;
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
}

.title-bar {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.glass-img {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-image-wrapper {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--navy-light);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.exp-years {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold-primary);
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 700;
    max-width: 140px;
}

.about-heading {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.about-p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.features-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feat-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Certificate Preview Section */
.cert-preview-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(7, 11, 25, 0.95));
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.cert-preview-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cert-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed var(--border-glass);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.uk-coat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.gold-icon { color: var(--gold-primary); font-size: 1.2rem; }

.cert-no-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--border-glass);
}

.cert-title-main {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--gold-primary);
    font-family: var(--font-heading);
}

.cert-subtext {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.company-highlight-name {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin: 1rem 0;
    font-family: var(--font-heading);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.cert-law-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cert-features-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cert-feat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
}

.cert-feat i { color: var(--gold-primary); }

/* Services Section */
.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.highlight-card {
    border-color: var(--gold-primary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gold-gradient);
    color: #0B132B;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.85rem;
    border-radius: 12px;
    text-transform: uppercase;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-bullets {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.service-bullets i { color: var(--gold-primary); font-size: 0.8rem; }

.service-link {
    font-weight: 700;
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover i { transform: translateX(5px); }

/* Calculator Section */
.calculator-box {
    align-items: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.range-slider {
    width: 100%;
    accent-color: var(--gold-primary);
}

.calc-results {
    background: linear-gradient(145deg, rgba(28, 37, 65, 0.8), rgba(11, 19, 43, 0.9));
}

.price-display {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin: 1rem 0 0.5rem 0;
}

.currency { font-size: 2rem; vertical-align: top; }

.cost-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.roi-metric {
    display: flex;
    justify-content: space-around;
    border-top: 1px dashed var(--border-glass);
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}

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

.m-val { font-size: 1.4rem; font-weight: 800; color: var(--cyan-accent); }
.m-lbl { font-size: 0.8rem; color: var(--text-muted); }

/* Portfolio Cards */
.portfolio-card {
    position: relative;
}

.port-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--cyan-accent);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.portfolio-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.portfolio-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.port-metric {
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 0.9rem;
}

/* Contact Section */
.info-intro {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-item h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.detail-item p {
    font-weight: 700;
    color: var(--text-main);
}

.social-links-box h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold-gradient);
    color: #0B132B;
    transform: translateY(-3px);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--navy-deep);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 650px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
}

.modal-close:hover { color: var(--gold-primary); }

.gold-crown { font-size: 3rem; color: var(--gold-primary); margin-bottom: 1rem; }

.cert-modal-divider {
    height: 2px;
    background: var(--gold-gradient);
    margin: 1.5rem 0;
}

.cert-modal-num { font-size: 1.3rem; color: var(--gold-primary); }
.cert-modal-company {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFF;
    margin: 1rem 0;
    font-family: var(--font-heading);
}

.cert-modal-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }

.cert-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--navy-light);
    border: 1px solid var(--cyan-accent);
    color: var(--text-main);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0, 245, 212, 0.2);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification i { color: var(--cyan-accent); font-size: 1.25rem; }

/* Footer */
.site-footer {
    background: #040711;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem 0;
}

.footer-top { margin-bottom: 3rem; }

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--gold-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title { font-size: 2.2rem; }
    .hero-container { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--navy-deep);
        padding: 2rem;
        transition: var(--transition);
    }

    .nav-menu.active { left: 0; }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .mobile-toggle { display: block; }
}
