/* ========== Fonts ========== */
@font-face {
    font-family: 'SF Pro Display';
    src: url('../../sf font/SF-Pro-Display-Bold.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../../sf font/SF-Pro-Display-Semibold.otf') format('opentype');
    font-weight: 600;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../../sf font/SF-Pro-Display-Medium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('../../sf font/SF-Pro-Text-Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('../../sf font/SF-Pro-Text-Medium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('../../sf font/SF-Pro-Text-Semibold.otf') format('opentype');
    font-weight: 600;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('../../sf font/SF-Pro-Text-Light.otf') format('opentype');
    font-weight: 300;
}

/* ========== CSS Variables ========== */
:root {
    --primary: #ff9c00;
    --primary-light: #ffb84d;
    --primary-dark: #cc7d00;
    --bg-dark: #0a0a0a;
    --bg-section: #111111;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-dark: #232323;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --corner-squircle-lg: 24px;
    --corner-squircle-md: 18px;
    --corner-squircle-sm: 12px;
    --corner-squircle-xs: 6px;
}

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

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

body {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--bg-dark);
    overflow-x: hidden;
}

/* ========== Typography ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.display-1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.display-2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
}

.display-3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 500;
}

.lead {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 300;
    color: var(--text-gray);
}

/* ========== Utility Classes ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    color: var(--primary);
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(10, 10, 10, 0);
    backdrop-filter: blur(0px) saturate(100%);
    -webkit-backdrop-filter: blur(0px) saturate(100%);
    border: 1px solid transparent;
    border-radius: var(--corner-squircle-lg);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    transition: all 0.6s var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.5rem;
    top: 1rem;
    width: calc(100% - 4rem);
    max-width: 1200px;
    border-radius: var(--corner-squircle-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.6s var(--transition-smooth);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.6s var(--transition-smooth);
}

.navbar-brand img {
    height: 80px;
    transition: all 0.6s var(--transition-smooth);
}

.navbar.scrolled .navbar-brand img {
    height: 55px;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    transition: all 0.6s var(--transition-smooth);
}

.navbar.scrolled .nav-links {
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s var(--transition-smooth);
}

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

.nav-links a:hover {
    color: var(--primary);
}

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

.nav-social {
    display: flex;
    gap: 1rem;
    transition: all 0.6s var(--transition-smooth);
}

.navbar.scrolled .nav-social {
    gap: 0.75rem;
}

.nav-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--corner-squircle-sm);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.6s var(--transition-smooth);
}

.navbar.scrolled .nav-social a {
    width: 36px;
    height: 36px;
}

.nav-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Language Switcher */
.language-switcher {
    position: relative;
    display: flex;
    gap: 0;
    padding: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--corner-squircle-md);
    margin-left: 1.5rem;
    isolation: isolate;
    transition: all 0.6s var(--transition-smooth);
}

.navbar.scrolled .language-switcher {
    margin-left: 1rem;
    padding: 3px;
}

.lang-indicator {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    background: var(--primary);
    border-radius: var(--corner-squircle-md);
    transition: all 0.6s var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 156, 0, 0.3);
    z-index: 0;
}

.lang-btn {
    position: relative;
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-gray);
    font-family: 'SF Pro Text', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: var(--corner-squircle-md);
    transition: all 0.6s var(--transition-smooth);
    z-index: 1;
    min-width: 45px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lang-btn:hover {
    color: var(--text-white);
}

.lang-btn.active {
    color: var(--bg-dark);
}

/* ========== Bottom Navigation (mobile only) ========== */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2.5rem);
    max-width: 440px;
    z-index: 999;
    background: rgba(10, 10, 10, 0.78);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--corner-squircle-lg);
    padding: 0.55rem 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 0 0 0.5px rgba(255,255,255,0.04) inset;
    align-items: center;
    justify-content: space-around;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--text-gray);
    font-family: 'SF Pro Text', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    padding: 0.4rem 0.65rem;
    border-radius: var(--corner-squircle-sm);
    transition: color 0.25s var(--transition-smooth),
        background 0.25s var(--transition-smooth);
    min-width: 52px;
    position: relative;
    letter-spacing: 0.01em;
}

.bottom-nav-item svg {
    transition: transform 0.25s var(--transition-smooth), stroke 0.25s var(--transition-smooth);
    flex-shrink: 0;
}

.bottom-nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--corner-squircle-sm);
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.25s var(--transition-smooth);
}

.bottom-nav-item.active {
    color: var(--primary);
}

.bottom-nav-item.active svg {
    transform: scale(1.1);
    stroke: var(--primary);
}

.bottom-nav-item.active::before {
    opacity: 0.12;
}

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

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 156, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 156, 0, 0.05) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--corner-squircle-md);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge span {
    color: var(--primary);
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero .lead {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    color: rgba(255, 255, 255, 0.85);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--corner-squircle-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(255, 156, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 156, 0, 0.5);
}

.btn-outline {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 156, 0, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-gray);
    border-radius: var(--corner-squircle-sm);
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: var(--corner-squircle-xs);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ========== About Section ========== */
.about {
    padding: 8rem 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 156, 0, 0.1) 0%, transparent 70%);
    filter: blur(60px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--corner-squircle-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--glass-bg) 0%, transparent 100%);
    border: 1px solid var(--glass-border);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* ========== Services Section ========== */
.services {
    padding: 8rem 0;
    background: var(--bg-dark);
}

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

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--text-white);
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

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

.service-card {
    position: relative;
    border-radius: var(--corner-squircle-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    text-decoration: none;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.3s var(--transition-smooth);
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(255, 156, 0, 0.95) 0%, rgba(255, 156, 0, 0.3) 50%, transparent 100%);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    transform: translateY(10px);
    transition: transform 0.3s var(--transition-smooth), color 0.3s;
}

.service-card:hover h3 {
    transform: translateY(0);
    color: var(--bg-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s var(--transition-smooth);
}

.service-card:hover p {
    opacity: 1;
    transform: translateY(0);
    color: var(--bg-dark);
}

/* ========== Process Section ========== */
.process {
    padding: 8rem 0;
    background: var(--bg-section);
    position: relative;
}

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

.process-header h2 {
    margin-bottom: 1rem;
    color: var(--text-white);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.process-visual {
    position: relative;
    border-radius: var(--corner-squircle-lg);
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    height: 100%;
}

.process-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--corner-squircle-md);
    transition: all 0.3s var(--transition-smooth);
}

.process-step:hover {
    background: rgba(255, 156, 0, 0.1);
    border-color: var(--primary);
    transform: translateX(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--corner-squircle-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.step-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ========== Contact Section ========== */
.contact {
    padding: 7rem 0 4rem;
    background: var(--bg-dark);
}

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

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--corner-squircle-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s var(--transition-smooth);
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-card:hover {
    background: rgba(255, 156, 0, 0.1);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--corner-squircle-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.contact-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

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

.hours-card h4 {
    text-align: center;
}

.hours-list {
    display: grid;
    gap: 0.4rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text-white);
    font-size: 0.95rem;
}

.hours-row .day {
    font-weight: 600;
    text-transform: capitalize;
    color: var(--text-gray);
}

.hours-row .time {
    font-variant-numeric: tabular-nums;
    color: var(--text-white);
}

.hours-row.closed .time {
    color: var(--text-gray);
}

/* ========== Map & Hours Section ========== */
.map-hours {
    padding: 3.5rem 0 7rem;
    background: var(--bg-dark);
}

.map-hours-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2rem;
    align-items: stretch;
}

.map-card {
    position: relative;
    border-radius: var(--corner-squircle-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    min-height: 420px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(80%) contrast(1.1);
    transition: filter 0.3s var(--transition-smooth);
}

.map-card:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 20%, transparent 80%, var(--bg-dark) 100%);
}

/* ========== Footer ========== */
.footer {
    background: var(--bg-section);
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand img {
    height: 70px;
}


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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--corner-squircle-sm);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
}

/* ========== Legal Notice ========== */
.legal-notice {
    background: var(--bg-dark);
    padding: 2rem 0;
}

.legal-notice p {
    font-size: 0.75rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.legal-notice a {
    color: var(--primary);
    text-decoration: none;
}

.legal-notice a:hover {
    text-decoration: underline;
}

/* ========== Scroll Animations ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--corner-squircle-xs);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

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

/* ========== RESPONSIVE - Mobile First ========== */

/* Tablet and below */
@media (max-width: 992px) {
    /* Bottom nav replaces header links */
    .nav-links {
        display: none;
    }

    .bottom-nav {
        display: flex;
    }

    .nav-social {
        display: none;
    }

    .language-switcher {
        margin-left: auto;
    }

    /* Give room for the floating bottom nav */
    body {
        padding-bottom: 5.5rem;
    }

    .about-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .section-label {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:hover {
        transform: translateX(0);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .about,
    .services,
    .process {
        padding: 5rem 0;
    }

    .contact {
        padding: 4.5rem 0 3rem;
    }

    .display-1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .display-2 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

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

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .about-stats {
        gap: 2rem;
    }

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

    .section-header p {
        font-size: 1rem;
    }

    .services-grid,
    .contact-grid,
    .map-hours-grid {
        gap: 1.5rem;
    }

    .map-card {
        min-height: 340px;
    }

    .hours-row {
        font-size: 0.9rem;
    }

    .map-hours {
        padding: 3rem 0 5rem;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        aspect-ratio: 4/3;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .hours-list {
        gap: 0.35rem;
    }

    .map-card {
        min-height: 280px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-number {
        margin: 0 auto;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .navbar {
        padding: 0.75rem 1rem;
    }

    .navbar.scrolled {
        padding: 0.5rem 1rem;
        top: 0.75rem;
        width: calc(100% - 2rem);
        border-radius: var(--corner-squircle-md);
    }

    .navbar-brand img {
        height: 50px;
    }
}

@media (max-width: 992px) {
    .map-hours-grid {
        grid-template-columns: 1fr;
    }
}