/* ==========================================================================
   MH TAXI - Styles
   Premium Taxi Service Website
   Aesthetic: Midnight Gold
   ========================================================================== */

/* --------------------------------------------------------------------------
   FONTS
   -------------------------------------------------------------------------- */

@font-face {
    font-family: 'Playfair Display';
    src: url('../assets/fonts/playfair-display-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../assets/fonts/playfair-display-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../assets/fonts/dm-sans-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../assets/fonts/dm-sans-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../assets/fonts/dm-sans-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */

:root {
    /* Colors - Midnight Gold Palette */
    --color-bg-primary: #0d0d0d;
    --color-bg-secondary: #1a1a1a;
    --color-bg-tertiary: #252525;
    --color-bg-elevated: #2a2a2a;
    
    --color-gold-primary: #d4a853;
    --color-gold-light: #e8c97a;
    --color-gold-dark: #b8923d;
    --color-gold-muted: rgba(212, 168, 83, 0.15);
    
    --color-text-primary: #f5f5f5;
    --color-text-secondary: #a8a8a8;
    --color-text-muted: #6b6b6b;
    
    --color-white: #ffffff;
    --color-black: #000000;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes - Mobile First (clamp for fluid typography) */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 4rem);
    --text-5xl: clamp(3rem, 2rem + 5vw, 5.5rem);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Layout */
    --container-max: 1200px;
    --container-padding: clamp(1rem, 5vw, 2rem);
    --header-height: 80px;
    
    /* Borders & Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(212, 168, 83, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

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

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

ul,
ol {
    list-style: none;
}

/* Focus Styles */
:focus {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--color-gold-primary);
    outline-offset: 3px;
}

/* Selection */
::selection {
    background-color: var(--color-gold-primary);
    color: var(--color-bg-primary);
}

/* --------------------------------------------------------------------------
   SKIP LINK (Accessibility)
   -------------------------------------------------------------------------- */

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: var(--space-sm) var(--space-lg);
    background-color: var(--color-gold-primary);
    color: var(--color-bg-primary);
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: 
        background-color var(--transition-base),
        color var(--transition-base),
        transform var(--transition-fast),
        box-shadow var(--transition-base);
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn__icon {
    flex-shrink: 0;
}

.btn--gold {
    background-color: var(--color-gold-primary);
    color: var(--color-bg-primary);
    box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
    background-color: var(--color-gold-light);
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.35);
}

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

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

.btn--large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-base);
}

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background-color: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color var(--transition-base);
}

.header--scrolled {
    background-color: rgba(13, 13, 13, 0.98);
}

.header__nav {
    height: 100%;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo-image {
    height: 32px;
    width: auto;
    transition: opacity var(--transition-base);
}

.header__logo:hover .header__logo-image {
    opacity: 0.8;
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--container-padding) var(--space-2xl);
    overflow: hidden;
}

/* Hero Background */
.hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 168, 83, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(212, 168, 83, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.85;
        background-position: 50% 20%;
    }
}

.hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.4;
    }
}

/* Light Trails (car headlights effect) */
.hero__trails {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.6;
}

.hero__trail {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold-primary), var(--color-gold-light), transparent);
    border-radius: 2px;
    filter: blur(1px);
    animation: trailMove 8s linear infinite;
}

.hero__trail--1 {
    top: 65%;
    width: 200px;
    animation-delay: 0s;
    opacity: 0.8;
}

.hero__trail--2 {
    top: 72%;
    width: 150px;
    animation-delay: -2s;
    opacity: 0.6;
}

.hero__trail--3 {
    top: 58%;
    width: 180px;
    animation-delay: -4s;
    opacity: 0.5;
}

.hero__trail--4 {
    top: 78%;
    width: 120px;
    animation-delay: -6s;
    opacity: 0.7;
}

.hero__trail--5 {
    top: 68%;
    width: 160px;
    animation-delay: -1s;
    opacity: 0.4;
}

@keyframes trailMove {
    0% {
        left: -250px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 110%;
        opacity: 0;
    }
}

/* City Skyline */
.hero__skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 150px;
    z-index: 1;
}

.hero__windows rect {
    animation: windowFlicker 4s ease-in-out infinite;
}

.hero__windows rect:nth-child(odd) {
    animation-delay: -2s;
}

.hero__windows rect:nth-child(3n) {
    animation-delay: -1s;
}

@keyframes windowFlicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Road/ground line */
.hero__road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--color-gold-muted) 20%, 
        var(--color-gold-primary) 50%, 
        var(--color-gold-muted) 80%, 
        transparent
    );
    z-index: 2;
}

/* Hero Content */
.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background-color: var(--color-gold-muted);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease-out both;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold-primary);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero__badge-text {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gold-primary);
}

/* Title */
.hero__title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__title-line {
    display: block;
}

.hero__title-line--accent {
    color: var(--color-gold-primary);
}

/* Location */
.hero__location {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out 0.15s both;
}

.hero__location-icon {
    color: var(--color-gold-primary);
    flex-shrink: 0;
}

/* Tagline */
.hero__tagline {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__tagline-emphasis {
    color: var(--color-text-primary);
    font-weight: 500;
}

/* Phone Display */
.hero__phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero__phone-label {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.hero__phone-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-gold-primary);
    letter-spacing: 0.02em;
    transition: 
        color var(--transition-base),
        text-shadow var(--transition-base);
}

.hero__phone-number:hover {
    color: var(--color-gold-light);
    text-shadow: 0 0 30px rgba(212, 168, 83, 0.5);
}

/* CTA Button */
.hero__cta {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Scroll Hint */
/* Scroll Hint Wrapper - Full width for centering */
.hero__scroll-wrapper {
    position: absolute;
    bottom: var(--space-xl);
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.hero__scroll-hint {
    display: block;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.6s both;
    cursor: pointer;
    pointer-events: auto;
}

.hero__scroll-text {
    display: block;
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero__scroll-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--color-gold-primary);
    border-radius: 50%;
    color: var(--color-gold-primary);
    animation: scrollBounce 2s ease-in-out infinite;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero__scroll-arrow svg {
    width: 20px;
    height: 20px;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.hero__scroll-hint:hover .hero__scroll-arrow {
    background-color: var(--color-gold-primary);
    color: var(--color-bg-primary);
}

.hero__scroll-hint:hover .hero__scroll-text {
    color: var(--color-gold-light);
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   ABOUT
   -------------------------------------------------------------------------- */

.about {
    position: relative;
    padding: var(--space-5xl) var(--container-padding);
    background-color: var(--color-bg-secondary);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-muted), transparent);
}

.about__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Header */
.about__header {
    margin-bottom: var(--space-3xl);
}

.about__eyebrow {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold-primary);
    margin-bottom: var(--space-md);
}

.about__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 400;
    line-height: 1.2;
}

.about__title-accent {
    color: var(--color-gold-primary);
}

/* Content */
.about__content {
    max-width: 680px;
    margin-bottom: var(--space-4xl);
}

.about__text {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.about__text--lead {
    font-size: var(--text-xl);
    color: var(--color-text-primary);
    line-height: 1.7;
}

/* Features */
.about__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
}

.about__feature {
    padding: var(--space-xl);
    background-color: var(--color-bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: 
        transform var(--transition-base),
        border-color var(--transition-base);
}

.about__feature:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold-muted);
}

.about__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-lg);
    background-color: var(--color-gold-muted);
    border-radius: var(--radius-md);
    color: var(--color-gold-primary);
}

.about__feature-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 400;
    margin-bottom: var(--space-sm);
}

.about__feature-text {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* CTA */
.about__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
}

.about__cta-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .about {
        padding: var(--space-5xl) var(--container-padding);
    }
    
    .about__features {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }
    
    .about__cta {
        flex-direction: row;
        align-items: center;
        gap: var(--space-xl);
    }
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */

.footer {
    position: relative;
    padding: var(--space-4xl) var(--container-padding) var(--space-xl);
    background-color: var(--color-bg-primary);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-muted), transparent);
}

.footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer__main {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Brand */
.footer__brand {
    text-align: center;
}

.footer__logo {
    display: inline-block;
    margin-bottom: var(--space-md);
}

.footer__logo-image {
    height: 40px;
    width: auto;
    transition: opacity var(--transition-base);
}

.footer__logo:hover .footer__logo-image {
    opacity: 0.8;
}

.footer__tagline {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.footer__location {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.footer__location-icon {
    color: var(--color-gold-primary);
    flex-shrink: 0;
}

/* Contact */
.footer__contact {
    text-align: center;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.footer__phone {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-gold-primary);
    margin-bottom: var(--space-sm);
    transition: 
        color var(--transition-base),
        text-shadow var(--transition-base);
}

.footer__phone:hover {
    color: var(--color-gold-light);
    text-shadow: 0 0 20px rgba(212, 168, 83, 0.4);
}

.footer__hours {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* Social */
.footer__social {
    text-align: center;
}

.footer__social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-text-secondary);
    background-color: var(--color-bg-secondary);
    border-radius: var(--radius-full);
    transition: 
        color var(--transition-base),
        background-color var(--transition-base),
        transform var(--transition-fast);
}

.footer__social-link:hover {
    color: var(--color-gold-primary);
    background-color: var(--color-bg-tertiary);
    transform: translateY(-2px);
}

/* Bottom */
.footer__bottom {
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer__copyright {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .footer__main {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .footer__brand,
    .footer__contact {
        text-align: left;
    }
}

/* --------------------------------------------------------------------------
   UTILITIES & ACCESSIBILITY
   -------------------------------------------------------------------------- */

/* Visually Hidden (for screen readers) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print Styles */
@media print {
    .header,
    .hero__background,
    .hero__scroll-wrapper,
    .footer__social {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .hero__phone-number,
    .footer__phone {
        color: black;
    }
}
