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

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy);
    color: var(--white);
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

:root {
    --turquoise: #1BA098;
    --deep-blue: #0A4B5C;
    --sand: #F4E8D0;
    --navy: #1A3A52;
    --white: #FFFFFF;
    --cream: #FAF7F0;
    --copper: #B87333;
    --light-blue: #E8F4F3;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.7;
    color: var(--navy);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    padding-bottom: 4rem;
    background: linear-gradient(180deg, rgba(10, 75, 92, 0.3) 0%, rgba(27, 160, 152, 0.4) 100%),
                url('/images/hero-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    z-index: 10;
    padding: 4rem 2rem 3rem 2rem;
    max-width: 900px;
    animation: fadeInDown 1s ease-out;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 3rem;
    font-style: italic;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.cta-container {
    margin-bottom: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    letter-spacing: 0.08em;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.cta-primary {
    background: var(--turquoise);
    color: var(--white);
    border: 3px solid var(--turquoise);
}

.cta-primary:hover {
    background: transparent;
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

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

.cta-secondary:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    display: none; /* Hidden to prevent overlap */
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
    opacity: 0.8;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Stops & Routes Section */
.stops-routes {
    padding: 5rem 2rem;
    background: var(--cream);
}

.stops-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stop-category {
    margin-bottom: 4rem;
}

.stop-category h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.08em;
}

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

.stop-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--turquoise);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left-width: 6px;
}

.stop-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.stop-card p {
    color: var(--deep-blue);
    font-size: 0.95rem;
}

.visit-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: var(--turquoise);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--turquoise);
}

.visit-btn:hover {
    background: var(--deep-blue);
    border-color: var(--deep-blue);
    transform: scale(1.05);
}

.hail-service {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--deep-blue) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hail-service h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
}

.hail-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.lakes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.lake-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.hail-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-top: 1.5rem;
    letter-spacing: 0.08em;
}

.hail-price strong {
    color: var(--sand);
    font-size: 2.5rem;
}

/* Gallery Slideshow Section */
.gallery-section {
    padding: 4rem 2rem 2.5rem 2rem;
    background: var(--sand);
}

.gallery-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.gallery-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--deep-blue);
    margin-bottom: 0.3rem;
    letter-spacing: 0.1em;
}

.gallery-header p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--navy);
}

.slideshow-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.2);
    background: #000;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    top: 0;
    left: 0;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

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

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.control-btn {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: white;
    padding: 10px 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* Dots */
.dots {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: var(--turquoise);
    border-color: var(--white);
    width: 30px;
    border-radius: 5px;
}

/* Speed control */
.speed-control {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 100;
}

.speed-btn {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 6px 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.speed-btn.active {
    background: var(--turquoise);
    border-color: var(--turquoise);
}

.speed-btn:hover {
    background: rgba(255, 255, 255, 0.45);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--deep-blue);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.section-header p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--navy);
    max-width: 700px;
    margin: 0 auto;
}

/* Live Tracking Section */
.live-tracking {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--cream) 100%);
}

.tracker-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--white);
    background: var(--white);
    box-shadow: 0 12px 45px rgba(10, 75, 92, 0.25);
}

.tracker-frame {
    display: block;
    width: 100%;
    height: 600px;
    border: 0;
}

@media (max-width: 768px) {
    .tracker-frame {
        height: 70vh;
        min-height: 420px;
    }
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: var(--cream);
}

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

.feature {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.feature:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--turquoise);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
}

.feature p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--navy);
}

/* How It Works */
.how-it-works {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--turquoise) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border: 4px solid var(--white);
    border-radius: 50%;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
}

.step p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Pricing Highlight */
.pricing-highlight {
    background: var(--sand);
    padding: 5rem 2rem;
    text-align: center;
}

.pricing-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--turquoise);
}

.pricing-highlight h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--deep-blue);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.price-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 6rem);
    color: var(--turquoise);
    margin: 2rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.price-tag small {
    font-size: 0.4em;
    color: var(--navy);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--light-blue);
    border-radius: 8px;
    font-size: 1.1rem;
}

.pricing-features li::before {
    content: '✓ ';
    color: var(--turquoise);
    font-weight: bold;
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

/* Social Proof */
.social-proof {
    background: var(--white);
    padding: 5rem 2rem;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial {
    background: var(--light-blue);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--turquoise);
    font-style: italic;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--deep-blue);
    font-style: normal;
    letter-spacing: 0.05em;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}

.final-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.final-cta p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.footer-sub {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-details p {
    margin: 0;
}

.footer-phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
}

.footer-link {
    font-size: 1rem;
}

footer a {
    color: var(--turquoise);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--copper);
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.6;
    margin: 0;
}

/* Site Navigation */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-nav.scrolled {
    background: rgba(26, 58, 82, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    transition: padding 0.35s ease;
}

.site-nav.scrolled .nav-inner {
    padding: 0.6rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--white);
}

.nav-logo span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.25rem 0;
    position: relative;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-cta {
    background: var(--turquoise);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 25px;
    border: 2px solid var(--turquoise);
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: transparent !important;
    border-color: var(--white);
}

/* Contact page: nav starts solid since there's no full-bleed hero image */
.contact-page-body .site-nav {
    background: rgba(26, 58, 82, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Contact Page Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--turquoise) 100%);
    color: var(--white);
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.contact-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-page {
    padding-top: 3rem;
}

/* Adjust hero for fixed nav — nav is transparent over hero, so just add enough
   top padding so the hero content starts below the nav area */
.hero {
    padding-top: 80px;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-info-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--deep-blue);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-info-item a {
    color: var(--turquoise);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--copper);
}

.contact-info-item p {
    color: var(--navy);
    font-size: 1.05rem;
}

.contact-form {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--deep-blue);
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.form-group .optional {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    color: var(--navy);
    opacity: 0.7;
    letter-spacing: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--navy);
    background: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--turquoise);
}

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

.form-success {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #d4edda;
    color: #155724;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.form-error {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8d7da;
    color: #721c24;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .slideshow-container {
        height: 300px;
    }

    .slideshow-controls {
        bottom: 20px;
        gap: 8px;
    }

    .control-btn {
        padding: 8px 18px;
        font-size: 0.95rem;
    }

    .dots {
        bottom: 65px;
        gap: 7px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 24px;
    }

    .speed-control {
        top: 15px;
        right: 15px;
        gap: 5px;
    }

    .speed-btn {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .gallery-section {
        padding: 3rem 1rem;
    }

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

    .nav-logo span {
        display: none;
    }

    .nav-links {
        gap: 1.25rem;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .nav-cta {
        padding: 0.4rem 1rem !important;
        font-size: 0.95rem !important;
    }

    .footer-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-container {
    margin-bottom: 3rem;
        flex-direction: column;
        align-items: center;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}
