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

:root {
    --primary: #f5f5f7;
    --secondary: #1d1d1f;
    --accent: #0a84ff;
    --text-dark: #f5f5f7;
    --text-light: #a1a1a6;
    --border: rgba(255, 255, 255, 0.1);
    --bg-primary: #000000;
    --bg-secondary: #1d1d1f;
    --nav-bg: rgba(0, 0, 0, 0.8);
    --nav-bg-scrolled: rgba(0, 0, 0, 0.95);
    --card-bg: #1d1d1f;
    --hero-gradient-start: #00a2ff;
    --hero-gradient-end: #008cff;
    --panel-highlight: rgba(255, 255, 255, 0.06);
    --texture-line: rgba(255, 255, 255, 0.035);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% -10%, rgba(10, 132, 255, 0.18), transparent 46%),
        radial-gradient(circle at 90% 8%, rgba(0, 197, 255, 0.16), transparent 40%),
        linear-gradient(180deg, #03070f 0%, #060c17 45%, #02050d 100%);
    transition: background-color 0.3s ease, color 0.3s ease;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
}

body::before {
    z-index: -2;
    background:
        repeating-linear-gradient(120deg,
            transparent 0 14px,
            var(--texture-line) 14px 15px,
            transparent 15px 30px);
    opacity: 0.55;
}

body::after {
    z-index: -1;
    background:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 3px 3px;
    opacity: 0.22;
    mix-blend-mode: soft-light;
}

body.about-page {
    background:
        radial-gradient(circle at 14% 10%, rgba(10, 132, 255, 0.22), transparent 38%),
        radial-gradient(circle at 86% 82%, rgba(0, 197, 255, 0.14), transparent 40%),
        linear-gradient(180deg, #060d1a 0%, #081528 52%, #060d1a 100%);
}

body.about-page .section-bg-primary,
body.about-page .section-bg-secondary,
body.about-page .about-section {
    background: transparent;
}

body.about-page .about-section::before {
    display: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: var(--nav-bg-scrolled);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}


.logo-img {
    margin-top: 25px;
    padding: 10px;
    height: 75px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.2s;
    letter-spacing: -0.01em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(10, 132, 255, 0), rgba(10, 132, 255, 0.9), rgba(10, 132, 255, 0));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links .book-btn::after {
    display: none;
}

.book-btn {
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 500;
    opacity: 1 !important;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(10, 132, 255, 0.4);
}

.book-btn:hover {
    background: #0a84ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 132, 255, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 30%, rgba(10, 132, 255, 0.22), transparent 45%),
        radial-gradient(circle at 82% 70%, rgba(0, 183, 255, 0.2), transparent 42%);
    z-index: 1;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slideshow img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(2, 7, 17, 0.64) 0%, rgba(2, 7, 17, 0.84) 100%);
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-50px, -50px) scale(1.1);
    }
}

.hero-content {
    margin-top: 150px;
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.1;
    padding-bottom: 0.1em;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
    z-index: 3;
    overflow: visible;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}

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

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

.hero .subtitle {
    font-size: clamp(21px, 3vw, 28px);
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: -0.01em;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.cta-primary,
.cta-secondary {
    padding: 14px 28px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
}

.cta-primary {
    background: var(--accent);
    color: white;
}

.cta-primary:hover {
    background: #0a84ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(10, 132, 255, 0.3);
}

.cta-secondary {
    background: white;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.cta-secondary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(10, 132, 255, 0.3);
}

/* About Section */
.about-section {
    padding: 120px 24px;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(10, 132, 255, 0.11), transparent 38%),
        radial-gradient(circle at 88% 80%, rgba(0, 197, 255, 0.07), transparent 42%);
    pointer-events: none;
    z-index: 0;
}

.about-section>* {
    position: relative;
    z-index: 1;
}

.section-bg-primary {
    background: var(--bg-primary);
}

.section-bg-secondary {
    background: var(--bg-secondary);
}

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

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 80px;
}

.about-content .about-text {
    background: linear-gradient(150deg, rgba(10, 21, 39, 0.94), rgba(18, 32, 52, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 34px 32px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-content .about-text:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.42);
    border-color: rgba(10, 132, 255, 0.34);
}

.about-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-card {
    background: linear-gradient(150deg, rgba(10, 22, 41, 0.96), rgba(20, 36, 58, 0.86));
    border-radius: 18px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.45);
    border-color: rgba(10, 132, 255, 0.34);
}

.stat-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

/* About Page Hero */
.about-hero {
    padding: 140px 24px 84px;
    position: relative;
    overflow: hidden;
    background: #040a13;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(3, 9, 20, 0.7), rgba(4, 12, 25, 0.82)),
        url('assets/hero/pexels-mikebirdy-20212584.jpg') center/cover no-repeat;
    opacity: 0.72;
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 24%, rgba(10, 132, 255, 0.26), transparent 36%),
        radial-gradient(circle at 85% 74%, rgba(0, 197, 255, 0.18), transparent 44%);
    z-index: 0;
    pointer-events: none;
}

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

.about-hero-stats {
    margin-top: 28px;
}

.about-hero .about-stats {
    position: relative;
    z-index: 1;
}

.about-hero .hero-content {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 52px 44px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(145deg, rgba(6, 17, 33, 0.72), rgba(11, 24, 44, 0.65));
    backdrop-filter: blur(8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.about-hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.1;
    color: #f7fbff;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
}

.about-hero .subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(230, 240, 252, 0.9);
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.44);
}

/* About Text Sections */
.about-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.about-text ul {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
    margin-left: 0;
    margin-bottom: 16px;
    list-style: none;
}

.about-text ul li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.about-text ul li::before {
    content: '+';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--accent);
    font-weight: 700;
}

.about-text ul li strong {
    color: var(--text-dark);
}

/* Team Section */
.team-section {
    margin-bottom: 0;
}

.team-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.team-section>p {
    text-align: center;
    color: var(--text-light);
    font-size: 19px;
    max-width: 800px;
    margin: 0 auto 48px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.team-member {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

.team-member h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-member .team-role {
    color: var(--accent);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-member p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
}

/* Certifications Section */
.certifications-section {
    margin-bottom: 0;
    text-align: center;
}

.certifications-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.certifications-section>p {
    color: var(--text-light);
    font-size: 19px;
    max-width: 800px;
    margin: 0 auto 48px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.cert-card {
    background: linear-gradient(150deg, rgba(10, 22, 41, 0.95), rgba(19, 35, 56, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
    border-color: rgba(10, 132, 255, 0.34);
}

.cert-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.cert-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.cert-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Community Section */
.community-section {
    padding: 0;
    margin-bottom: 0;
}

.community-section h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.community-section>p {
    text-align: center;
    color: var(--text-light);
    font-size: 17px;
    max-width: 800px;
    margin: 0 auto 32px;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.community-item {
    background: linear-gradient(150deg, rgba(8, 19, 37, 0.94), rgba(16, 31, 51, 0.84));
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.community-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
    border-color: rgba(10, 132, 255, 0.32);
}

.community-item h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent);
}

.community-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-difference {
    margin-bottom: 0;
}

.why-difference h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.why-difference>p {
    text-align: center;
    color: var(--text-light);
    font-size: 19px;
    max-width: 800px;
    margin: 0 auto 48px;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.difference-card {
    background: linear-gradient(150deg, rgba(10, 22, 41, 0.95), rgba(19, 36, 58, 0.85));
    border-left: 4px solid var(--accent);
    padding: 28px 24px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.difference-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
    border-color: rgba(10, 132, 255, 0.32);
}

.difference-card h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.difference-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #0077ed 100%);
    border-radius: 24px;
    padding: 60px 32px;
    text-align: center;
    color: white;
    margin-bottom: 0;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cta:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 52px rgba(0, 0, 0, 0.42);
}

.about-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: white;
}

.about-cta p {
    font-size: 19px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.about-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-buttons .cta-primary {
    background: white;
    color: var(--accent);
}

.about-cta-buttons .cta-primary:hover {
    background: rgba(255, 255, 255, 0.95);
}

.about-cta-buttons .cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.about-cta-buttons .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Visit Us Section */
.visit-us {
    margin-top: 80px;
    text-align: center;
}

.visit-us h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.visit-us>p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 32px;
}

.visit-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 32px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.visit-card p {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.visit-card .contact-details {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 16px;
}

.visit-card .contact-details strong {
    color: var(--text-dark);
}

.visit-card .contact-details a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.visit-card .contact-details a:hover {
    color: #0a84ff;
}

.visit-card .hours {
    color: var(--text-light);
    font-size: 15px;
}

.visit-card .hours strong {
    color: var(--text-dark);
}

.visit-card .hours .highlight {
    color: var(--accent);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 120px 24px;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(4, 14, 30, 0.72), rgba(2, 8, 19, 0.88)),
        radial-gradient(circle at 75% 18%, rgba(10, 132, 255, 0.16), transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(0, 197, 255, 0.12), transparent 44%);
    opacity: 1;
    z-index: 0;
}

.services::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 20%, rgba(10, 132, 255, 0.22), transparent 38%),
        radial-gradient(circle at 86% 78%, rgba(0, 197, 255, 0.16), transparent 44%);
    z-index: 0;
}

.services>* {
    position: relative;
    z-index: 1;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.1;
    color: var(--text-dark);
}

.section-header p {
    font-size: 21px;
    color: var(--text-light);
    font-weight: 400;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    position: relative;
}

.service-card {
    background: linear-gradient(138deg, rgba(9, 23, 45, 0.96) 0%, rgba(14, 43, 84, 0.9) 48%, rgba(8, 22, 43, 0.96) 100%);
    background-size: 185% 185%;
    background-position: 12% 50%;
    border-radius: 18px;
    padding: 48px 32px;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(106, 175, 255, 0.28);
    cursor: pointer;
    box-sizing: border-box;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.service-card:not(.expanded):not(.modalizing) {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-position 0.6s ease;
}

.service-card:not(.expanded):not(.modalizing) {
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -60%;
    width: 130%;
    height: 140%;
    background: linear-gradient(102deg,
            rgba(255, 255, 255, 0) 15%,
            rgba(126, 202, 255, 0.26) 45%,
            rgba(10, 132, 255, 0.34) 52%,
            rgba(255, 255, 255, 0) 78%);
    opacity: 0;
    transform: translateX(-28%) skewX(-16deg);
    transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(13, 45, 88, 0.22), rgba(8, 26, 50, 0.08) 45%, rgba(7, 22, 43, 0.36) 100%);
    pointer-events: none;
    z-index: 0;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-card-placeholder {
    display: block;
    visibility: hidden;
    pointer-events: none;
    border-radius: 18px;
}

.service-card:hover:not(.expanded):not(.modalizing) {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.52);
    border-color: rgba(124, 196, 255, 0.48);
    background-position: 88% 42%;
}

.service-card.modalizing.expanded:hover {
    transform: translate(-50%, -50%) !important;
}

.service-card:hover:not(.expanded):not(.modalizing)::before {
    opacity: 1;
    transform: translateX(118%) skewX(-16deg);
}

.service-card.modalizing {
    position: fixed;
    top: var(--modal-start-top);
    left: var(--modal-start-left);
    width: var(--modal-start-width);
    max-width: none;
    margin: 0;
    z-index: 10000;
    cursor: default;
    overflow: hidden;
    transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        left 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    will-change: top, left, width, transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.service-card.modalizing.expanded {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: min(85vw, 750px);
    max-width: 750px;
    padding: 40px 36px;
    box-shadow: 0 24px 56px rgba(1, 10, 24, 0.46);
    z-index: 10000;
    overflow: hidden;
    cursor: default;
    margin: 0;
    display: flex;
    flex-direction: column;
    border-color: rgba(206, 236, 255, 0.95);
    background-position: 50% 40%;
    background: linear-gradient(140deg, rgba(52, 127, 218, 0.97) 0%, rgba(29, 88, 162, 0.98) 55%, rgba(20, 64, 124, 0.98) 100%);
}

.service-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 10, 20, 0.16);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-overlay.active {
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-overlay:not(.active) {
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card.expanded::before {
    opacity: 0;
    transform: none;
}

.service-card.modalizing.expanded::after {
    opacity: 0;
}

.service-card.expanded .service-summary,
.service-card.expanded .service-card-details ul li,
.service-card.expanded .service-note {
    color: #eef7ff;
}

.service-card.expanded h3,
.service-card.expanded .service-card-details h4 {
    color: #ffffff;
}

.service-card-header {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    width: fit-content;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    left: 0;
    right: auto;
}

.service-card.expanded .service-icon {
    transform: scale(1.1);
    position: relative;
    left: 0;
    margin-left: 0;
    font-size: 42px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    transition: font-size 0.3s ease;
}

.service-card.expanded h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.service-summary {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.service-card.expanded .service-summary {
    font-size: 17px;
    margin-bottom: 20px;
}

.service-card-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.service-card.expanded .service-card-details {
    max-height: none;
    opacity: 1;
    margin-top: 20px;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease;
    overflow: visible;
}

.service-card:not(.expanded) .service-card-details {
    transition: none;
}

.service-card-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-card-details ul {
    list-style: none;
    margin-bottom: 18px;
}

.service-card-details ul li {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.service-card-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.service-note {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
    padding: 16px;
    background: rgba(10, 132, 255, 0.05);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    margin-top: 16px;
}

.service-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.service-card.expanded .service-close-btn {
    display: flex;
}

.service-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.service-book-btn-wrapper {
    margin-top: 20px;
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.service-book-btn {
    display: inline-block;
    margin-top: 0;
}

/* Why Choose Us */
.why-choose {
    padding: 120px 24px;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(3, 10, 23, 0.82), rgba(5, 14, 30, 0.88)),
        radial-gradient(circle at 12% 20%, rgba(10, 132, 255, 0.14), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 191, 255, 0.1), transparent 42%);
    opacity: 1;
    z-index: 0;
}

.why-choose::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 16%, rgba(10, 132, 255, 0.2), transparent 36%),
        radial-gradient(circle at 84% 72%, rgba(0, 191, 255, 0.16), transparent 42%);
    z-index: 0;
}

.why-choose>* {
    position: relative;
    z-index: 1;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.feature {
    text-align: center;
    background: linear-gradient(150deg, rgba(9, 18, 33, 0.95), rgba(17, 30, 50, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 42px 32px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(10, 132, 255, 0.35);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(160deg, rgba(5, 14, 27, 0.9), rgba(9, 24, 43, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.feature:hover .feature-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.42);
}

.feature h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-light);
    font-size: 17px;
}

/* Manufacturers Banner */
.manufacturers-banner {
    padding: 28px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(90deg, rgba(2, 11, 23, 0.88) 0%, rgba(10, 20, 36, 0.94) 50%, rgba(2, 11, 23, 0.88) 100%);
}

.manufacturers-banner::before,
.manufacturers-banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.manufacturers-banner::before {
    left: 0;
    background: linear-gradient(90deg, rgba(2, 11, 23, 0.95), rgba(2, 11, 23, 0));
}

.manufacturers-banner::after {
    right: 0;
    background: linear-gradient(270deg, rgba(2, 11, 23, 0.95), rgba(2, 11, 23, 0));
}

.manufacturers-container {
    max-width: none;
    margin: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.manufacturers-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-logos var(--scroll-duration, 42s) linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.manufacturers-set {
    display: flex;
    align-items: center;
    gap: clamp(38px, 5vw, 88px);
    padding-right: clamp(38px, 5vw, 88px);
}

.manufacturer-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 62px;
    min-width: 108px;
    opacity: 0.82;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.manufacturer-logo:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.manufacturer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 156px;
    filter: drop-shadow(0 8px 14px rgba(5, 10, 20, 0.35));
    transition: filter 0.25s ease;
}

.manufacturer-logo:hover img {
    filter: drop-shadow(0 10px 18px rgba(6, 12, 24, 0.55));
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

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

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }

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

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 24%, rgba(10, 132, 255, 0.19), transparent 38%),
        radial-gradient(circle at 85% 75%, rgba(0, 197, 255, 0.13), transparent 40%);
    z-index: 0;
}

.testimonials>* {
    position: relative;
    z-index: 1;
}

.testimonials-container {
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    width: 100%;
}

.testimonials-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    animation: scroll-testimonials var(--testimonials-duration, 40s) linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    padding: 0 24px;
}

.testimonials-set {
    display: flex;
    align-items: stretch;
    gap: 32px;
    padding-right: 32px;
}

.testimonials .section-header {
    padding: 0 24px;
}

.testimonials-container:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonial-card {
    background: linear-gradient(150deg, rgba(11, 21, 38, 0.95), rgba(24, 38, 59, 0.84));
    border-radius: 18px;
    padding: 48px 40px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-sizing: border-box;
    width: 400px;
    min-width: 400px;
    z-index: 10;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.48);
    border-color: rgba(10, 132, 255, 0.32);
    z-index: 20;
}

/* Removed carousel buttons and dots - now using auto-rotating animation */

.testimonial-rating,
.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    hyphens: auto;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Booking Section */
.booking {
    padding: 120px 24px;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(4, 14, 30, 0.84), rgba(2, 9, 22, 0.9)),
        radial-gradient(circle at 18% 20%, rgba(10, 132, 255, 0.16), transparent 40%),
        radial-gradient(circle at 82% 74%, rgba(0, 197, 255, 0.12), transparent 42%);
    opacity: 1;
    z-index: 0;
}

.booking>* {
    position: relative;
    z-index: 1;
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 52px rgba(0, 0, 0, 0.44);
}

.booking-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.booking-container>* {
    position: relative;
    z-index: 1;
}

.booking-container h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.booking-container p {
    font-size: 21px;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Integration Info */
.integration-note {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 24px;
    background: var(--bg-primary);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-light);
    border: 1px solid var(--border);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.integration-note strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
}

/* Location Section */
.location {
    padding: 120px 24px;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(3, 12, 26, 0.84), rgba(4, 13, 26, 0.92)),
        radial-gradient(circle at 10% 22%, rgba(10, 132, 255, 0.12), transparent 38%),
        radial-gradient(circle at 88% 80%, rgba(0, 197, 255, 0.1), transparent 40%);
    opacity: 1;
    z-index: 0;
}

.location>* {
    position: relative;
    z-index: 1;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.map-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.map-wrapper:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(10, 132, 255, 0.3);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    background: linear-gradient(150deg, rgba(10, 22, 41, 0.96), rgba(19, 36, 58, 0.84));
    border-radius: 18px;
    padding: 40px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.location-info:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
    border-color: rgba(10, 132, 255, 0.3);
}

.location-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-details p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.location-details strong {
    color: var(--text-dark);
    display: block;

    font-weight: 600;
}

.location-details a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.location-details a:hover {
    color: #0a84ff;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #12161d 0%, #0b1018 100%);
    color: white;
    padding: 80px 24px 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 15%, rgba(10, 132, 255, 0.14), transparent 34%),
        radial-gradient(circle at 86% 78%, rgba(0, 197, 255, 0.1), transparent 40%);
    z-index: 0;
}

footer>* {
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.footer-section {
    padding: 20px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(10, 132, 255, 0.22);
    transform: translateY(-4px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* Contact Info */
.contact-info {
    margin-top: 16px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links.active {
    display: flex;
}

/* Fixed Book Now Button for Mobile */
.mobile-book-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: var(--accent);
    color: white;
    padding: 14px 32px;
    border-radius: 980px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(10, 132, 255, 0.5);
    transition: all 0.3s ease;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.mobile-book-btn:hover,
.mobile-book-btn:active {
    background: #0a84ff;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 32px rgba(10, 132, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--nav-bg-scrolled);
        backdrop-filter: saturate(180%) blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        width: 100%;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-links .book-btn {
        margin-top: 8px;
        text-align: center;
        width: 100%;
        padding: 12px 24px;
    }

    .mobile-book-btn {
        display: block;
    }

    /* Add padding to footer to prevent content from being hidden behind button */
    footer {
        padding-bottom: 90px;
    }

    /* Add padding to last section on pages */
    .location,
    .booking,
    .about-cta,
    .accident-dropoff {
        padding-bottom: 100px;
    }

    .hero {
        padding: 120px 24px 60px;
    }

    .services-grid,
    .features-grid,
    .about-content,
    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 80px 20px;
    }

    .about-hero {
        padding: 120px 20px 64px;
    }

    .about-hero .hero-content {
        padding: 36px 24px;
    }

    .about-hero-stats {
        margin-top: 22px;
    }

    .about-content .about-text {
        padding: 28px 24px;
    }

    .about-text h2,
    .about-text h3 {
        font-size: 24px;
    }

    .stat-card {
        padding: 32px 24px;
    }

    .team-grid,
    .certifications-grid,
    .community-grid,
    .difference-grid {
        grid-template-columns: 1fr;
    }

    .about-cta {
        padding: 40px 24px;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-cta-buttons .cta-primary,
    .about-cta-buttons .cta-secondary {
        width: 100%;
    }

    .service-card.modalizing.expanded {
        width: 90%;
        max-height: 85vh;
        padding: 32px 20px;
    }

    .service-card.modalizing.expanded h3 {
        font-size: 24px;
    }

    .service-card-details h4 {
        font-size: 20px;
    }

    .service-close-btn {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 28px;
    }

    .booking-container {
        padding: 48px 24px;
    }

    .location-container {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        height: 400px;
    }

    .testimonials-container {
        padding: 0;
    }

    .testimonials-track {
        padding: 0 16px;
    }

    .testimonials-set {
        gap: 24px;
        padding-right: 24px;
    }

    .testimonials .section-header {
        padding: 0 20px;
    }

    .testimonial-card {
        padding: 32px 24px;
        width: 320px;
        min-width: 320px;
    }

    .manufacturer-logo {
        height: 56px;
        min-width: 92px;
    }

    .manufacturer-logo img {
        max-width: 126px;
    }

    .manufacturers-set {
        gap: 50px;
        padding-right: 50px;
    }

    .manufacturers-banner::before,
    .manufacturers-banner::after {
        width: 72px;
    }

    .hero {
        padding-bottom: 70px;
    }

    .hero-content {
        margin-top: 100px;
    }

    .hero h1 {
        font-size: clamp(36px, 8vw, 64px);
    }

    .hero .subtitle {
        font-size: clamp(18px, 3vw, 24px);
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: clamp(32px, 6vw, 48px);
    }

    .section-header p {
        font-size: clamp(16px, 2.5vw, 20px);
    }

    .service-card {
        padding: 32px 24px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-summary {
        font-size: 15px;
    }

    .feature h3 {
        font-size: 19px;
    }

    .feature p {
        font-size: 15px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .booking-container {
        padding: 40px 20px;
    }

    .booking-container h2 {
        font-size: clamp(28px, 5vw, 40px);
    }

    .booking-container p {
        font-size: clamp(16px, 2.5vw, 19px);
    }

    .location-info {
        padding: 32px 24px;
    }

    .location-details p {
        font-size: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .about-hero h1 {
        font-size: clamp(32px, 6vw, 56px);
    }

    .about-hero .subtitle {
        font-size: clamp(16px, 2.5vw, 22px);
    }

    .about-text h2 {
        font-size: clamp(24px, 4vw, 32px);
    }

    .about-text p {
        font-size: 15px;
    }

    .team-section h2 {
        font-size: clamp(28px, 5vw, 40px);
    }

    .certifications-section h2 {
        font-size: clamp(28px, 5vw, 40px);
    }

    .why-difference h2 {
        font-size: clamp(28px, 5vw, 40px);
    }

    .about-cta h2 {
        font-size: clamp(24px, 4vw, 36px);
    }

    .about-cta p {
        font-size: 17px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Fade-in animation removed - content displays immediately */

/* Setmore Booking Button Styling */
#Setmore_button_iframe {
    display: inline-block;
    vertical-align: middle;
}

#Setmore_button_iframe a.setmore-book-btn {
    display: inline-block;
    text-decoration: none;
    border: none;
    float: none !important;
    background: var(--accent);
    color: white;
    padding: 14px 28px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 400;
    transition: all 0.2s;
    letter-spacing: -0.01em;
    cursor: pointer;
}

#Setmore_button_iframe a.setmore-book-btn:hover {
    background: #0a84ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(10, 132, 255, 0.3);
}

#Setmore_button_iframe img {
    display: none !important;
}

/* Fix Setmore Popup Positioning */
#Setmore_button_iframe+iframe,
iframe[src*="setmore.com"],
iframe[src*="chrisovct.setmore.com"] {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 9999 !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
}

/* Setmore popup overlay/backdrop */
body>div[style*="position: fixed"][style*="z-index"]:has(iframe[src*="setmore.com"]),
body>div[style*="position: fixed"][style*="z-index"]:has(iframe[src*="chrisovct.setmore.com"]) {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 9998 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Alternative selector for Setmore popup container */
div[id*="setmore"],
div[class*="setmore"],
div[style*="setmore"] {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9998 !important;
    background: rgba(0, 0, 0, 0.7) !important;
}

div[id*="setmore"] iframe,
div[class*="setmore"] iframe,
div[style*="setmore"] iframe {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
}

/* Accident Drop Off Page */
.accident-dropoff {
    padding: 120px 24px;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.accident-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.accident-info h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.info-steps {
    margin-bottom: 48px;
}

.info-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.step-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.important-info {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 32px;
    border: 1px solid var(--border);
    margin-bottom: 32px;
}

.important-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.important-info ul {
    list-style: none;
}

.important-info ul li {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.important-info ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 20px;
    line-height: 1;
}

.location-reminder {
    background: rgba(10, 132, 255, 0.05);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 24px;
}

.location-reminder p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.location-reminder strong {
    color: var(--text-dark);
    font-weight: 600;
}

.accident-form-container {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid var(--border);
}

.accident-form-container h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.form-subtitle {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 32px;
}

.accident-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-dark);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--accent);
}

.form-submit-btn {
    margin-top: 8px;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    width: 100%;
}

.form-success {
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid var(--accent);
    border-radius: 18px;
    padding: 40px;
    text-align: center;
}

.form-success h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.form-success p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

@media (max-width: 968px) {
    .accident-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .accident-form-container {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Additional Mobile Improvements */
@media (max-width: 768px) {

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Improve touch targets */
    .nav-links a,
    .mobile-book-btn,
    .cta-primary,
    .cta-secondary {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Better spacing for mobile */
    .section-header {
        margin-bottom: 48px;
    }

    .services,
    .why-choose,
    .testimonials,
    .booking,
    .location {
        padding: 80px 20px;
    }

    .testimonials {
        padding: 80px 0;
    }

    /* Improve form inputs on mobile */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    /* Better button spacing */
    .about-cta-buttons .cta-primary,
    .about-cta-buttons .cta-secondary {
        margin-bottom: 12px;
    }

    /* Improve logo visibility on mobile */
    .logo-img {
        height: 60px;
        margin-top: 5px;
    }

    /* Better hero spacing */
    .hero-content {
        padding: 0 16px;
    }

    /* Improve card readability */
    .service-card,
    .testimonial-card,
    .feature {
        padding: 24px 20px;
    }

    /* Better map display */
    .map-wrapper {
        height: 350px;
    }

    /* Improve footer spacing */
    footer {
        padding: 60px 20px 30px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero .subtitle {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .about-hero {
        padding: 108px 16px 52px;
    }

    .about-hero .hero-content {
        padding: 30px 18px;
        border-radius: 18px;
    }

    .about-hero-stats {
        margin-top: 18px;
    }

    .manufacturer-logo {
        height: 48px;
        min-width: 82px;
    }

    .manufacturer-logo img {
        max-width: 112px;
    }

    .manufacturers-set {
        gap: 36px;
        padding-right: 36px;
    }

    .manufacturers-banner {
        padding: 20px 0;
    }

    .mobile-book-btn {
        bottom: 16px;
        padding: 12px 28px;
        font-size: 15px;
    }

    .nav-container {
        padding: 0 16px;
    }
}
