
/* Yacht TUBER - Main Stylesheet */

/* ========== CSS Variables ========== */
:root {
    /* Colors */
    --navy-darkest: #0a1628;
    --navy-dark: #0f2744;
    --navy-medium: #1a3a5c;
    --navy-light: #2563a8;
    --navy-lighter: #3b82f6;
    --gold-primary: #c5a572;
    --gold-light: #d4b78a;
    --white: #ffffff;
    --cream: #f8f6f3;
    
    /* Fonts */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;
}

/* ========== Reset & Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background: var(--navy-darkest);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

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

/* ========== Container ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ========== Scroll Progress Bar ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--navy-light), var(--gold-primary));
    transform-origin: left;
    transform: scaleX(0);
    z-index: 9999;
    transition: transform 0.1s ease-out;
}

/* ========== Scroll to Top Button ========== */
.scroll-top-btn {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-lighter));
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-center: center;
    box-shadow: 0 4px 20px rgba(37, 99, 168, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 1000;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 99, 168, 0.6);
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-fast);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(37, 99, 168, 0.2);
}

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

.logo-img {
    height: 48px;
    width: auto;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, var(--navy-light), var(--gold-primary));
    transition: width var(--transition-normal);
}

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

.nav-number {
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Language Switcher */
.lang-switcher {
    background: rgba(15, 39, 68, 0.5);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(37, 99, 168, 0.3);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: none;
}

@media (min-width: 1024px) {
    .lang-switcher {
        display: block;
    }
}

.lang-switcher:hover {
    border-color: var(--gold-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(37, 99, 168, 0.2);
    padding: 2rem 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.lang-switcher.mobile {
    display: block;
    margin: 1.5rem 1.5rem 0;
    width: calc(100% - 3rem);
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5rem 0;
}

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.8),
        rgba(10, 22, 40, 0.6),
        var(--navy-darkest)
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: radial-gradient(circle at 2px 2px, rgba(37, 99, 168, 0.3) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.divider-line {
    width: 2rem;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-primary));
}

.divider-line:last-child {
    background: linear-gradient(to left, transparent, var(--gold-primary));
}

.badge-text {
    color: var(--gold-primary);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    font-weight: 300;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero-title { font-size: 2.5rem; }
}

@media (min-width: 768px) {
    .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 4.5rem; }
}

@media (min-width: 1280px) {
    .hero-title { font-size: 6rem; }
}

.title-divider {
    width: 3rem;
    height: 4px;
    background: linear-gradient(to right, var(--navy-light), var(--gold-primary));
    margin: 1.5rem auto;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 56rem;
    margin: 0 auto 2rem;
    line-height: 1.75;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .hero-subtitle { font-size: 1.25rem; }
}

@media (min-width: 1024px) {
    .hero-subtitle { font-size: 1.5rem; }
}

.hero-cta {
    padding: 0 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(to right, var(--navy-light), var(--navy-lighter));
    color: var(--white);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 0 8px 32px rgba(37, 99, 168, 0.3);
    transition: all var(--transition-normal);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--navy-lighter), var(--navy-light));
    box-shadow: 0 12px 40px rgba(37, 99, 168, 0.5);
    transform: scale(1.05);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .scroll-indicator {
        display: flex;
    }
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: var(--gold-primary);
    border-radius: 2px;
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, 8px);
    }
}

.scroll-text {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* ========== Stats Section ========== */
.stats {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--navy-darkest), var(--navy-dark));
}

@media (min-width: 1024px) {
    .stats {
        padding: 6rem 0;
    }
}

.stats-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: radial-gradient(circle at 25% 0%, var(--navy-light) 0%, transparent 50%),
                radial-gradient(circle at 75% 100%, var(--navy-lighter) 0%, transparent 50%);
}

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

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--gold-primary), var(--cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .stat-number { font-size: 4rem; }
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    text-transform: uppercase;
}

/* ========== Features Section ========== */
.features {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--navy-darkest), var(--navy-dark), var(--navy-darkest));
}

@media (min-width: 1024px) {
    .features {
        padding: 8rem 0;
    }
}

.features-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background: radial-gradient(circle at 80% 20%, var(--navy-light) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, var(--navy-lighter) 0%, transparent 40%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 6rem;
    }
}

.section-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 3.75rem; }
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-subtitle { font-size: 1.125rem; }
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all var(--transition-slow);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .feature-card {
        flex-direction: row;
        gap: 4rem;
        margin-bottom: 10rem;
    }
    
    .feature-card.reverse {
        flex-direction: row-reverse;
    }
}

.feature-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.feature-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 1s ease;
}

@media (min-width: 1024px) {
    .feature-image img {
        height: 500px;
    }
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-number {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    display: none;
}

@media (min-width: 768px) {
    .feature-number {
        display: block;
    }
}

.feature-content {
    flex: 1;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .feature-content {
        padding: 0;
    }
}

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(197, 165, 114, 0.3);
    border-radius: 20px;
    color: var(--gold-primary);
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    font-weight: 300;
    margin-bottom: 1rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .feature-title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
    .feature-title { font-size: 3rem; }
}

.feature-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.75;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .feature-description { font-size: 1.125rem; }
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.feature-card.visible .feature-list-item {
    opacity: 1;
    transform: translateX(0);
}

.feature-card.visible .feature-list-item:nth-child(1) { transition-delay: 0.2s; }
.feature-card.visible .feature-list-item:nth-child(2) { transition-delay: 0.3s; }
.feature-card.visible .feature-list-item:nth-child(3) { transition-delay: 0.4s; }
.feature-card.visible .feature-list-item:nth-child(4) { transition-delay: 0.5s; }

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(37, 99, 168, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 0.875rem;
}

/* ========== Testimonials Section ========== */
.testimonials {
    position: relative;
    padding: 4rem 0;
    background: var(--navy-darkest);
}

@media (min-width: 1024px) {
    .testimonials {
        padding: 8rem 0;
    }
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background: radial-gradient(circle at center, var(--navy-light) 0%, transparent 70%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.testimonial-card {
    position: relative;
    background: linear-gradient(to bottom right, rgba(15, 39, 68, 0.8), rgba(10, 22, 40, 0.8));
    backdrop-filter: blur(12px);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 168, 0.2);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(50px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-grid .testimonial-card:nth-child(1).visible { transition-delay: 0s; }
.testimonials-grid .testimonial-card:nth-child(2).visible { transition-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(3).visible { transition-delay: 0.4s; }

.testimonial-card:hover {
    border-color: rgba(197, 165, 114, 0.4);
    transform: translateY(-8px);
}

.quote-icon {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, var(--navy-light), var(--navy-lighter));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 99, 168, 0.4);
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.75;
    font-style: italic;
    margin: 2rem 0;
}

.testimonial-author {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(37, 99, 168, 0.2);
}

.author-name {
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--gold-primary);
    font-weight: 300;
}

.author-company {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* ========== Contact Section ========== */
.contact {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--navy-dark), var(--navy-darkest));
}

@media (min-width: 1024px) {
    .contact {
        padding: 8rem 0;
    }
}

.contact-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: radial-gradient(circle at 20% 20%, var(--navy-light) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, var(--navy-lighter) 0%, transparent 40%);
}

.contact-form-wrapper {
    max-width: 56rem;
    margin: 0 auto;
    background: linear-gradient(to bottom right, rgba(15, 39, 68, 0.6), rgba(10, 22, 40, 0.6));
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 168, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: 3.5rem;
    }
}

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

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.label-icon {
    color: var(--gold-primary);
}

.form-input {
    width: 100%;
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(37, 99, 168, 0.3);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--white);
    font-family: var(--font-body);
    transition: border-color var(--transition-fast);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-primary);
}

textarea.form-input {
    resize: vertical;
    min-height: 150px;
}

.form-btn {
    width: 100%;
    padding: 1.25rem;
    margin-top: 1rem;
}

.form-success {
    text-align: center;
    padding: 4rem 2rem;
}

.form-success.hidden {
    display: none;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom right, var(--navy-light), var(--navy-lighter));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(37, 99, 168, 0.3);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* ========== Footer ========== */
.footer {
    background: var(--navy-darkest);
    border-top: 1px solid rgba(37, 99, 168, 0.2);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    height: 3.5rem;
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.divider-line-small {
    width: 2rem;
    height: 1px;
    background: linear-gradient(to right, var(--navy-light), transparent);
}

.badge-text-small {
    font-size: 0.625rem;
    color: var(--gold-primary);
    letter-spacing: 0.2em;
    font-weight: 300;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

.footer-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--gold-primary);
}

.footer-contact {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
    cursor: pointer;
}

.footer-contact p:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem 0;
    border-top: 1px solid rgba(37, 99, 168, 0.2);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

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

/* ========== Utility Classes ========== */
.hidden {
    display: none !important;
}

/*.visible {
    display: block !important;
}*/

/* ========== Custom Scrollbar ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--navy-darkest);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--navy-lighter);
}

/* ========== Reduced Motion ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

