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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #041024;
}

body.nav-open {
    overflow: hidden;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    height: 70px;
    column-gap: 24px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: start;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.nav-toggle {
    display: none;
}

.nav-drawer {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 24px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    justify-self: center;
    justify-content: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu li a:hover {
    color: #007bff;
}

.nav-menu li a.nav-active {
    color: #007bff;
    font-weight: 600;
}

.quote-button {
    display: inline-block;
    justify-self: end;
    padding: 12px 24px;
    border: 1px solid #4f4f4f;
    border-radius: 4px;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    font-size: 19px;
    cursor: pointer;
    color: black;
    z-index: 1;
    text-decoration: none;
    font-weight: 600;
}

.quote-button:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.quote-button:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #007bff;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.quote-button:hover {
    color: #ffffff;
    border: 1px solid #007bff;
    text-decoration: none;
}

.quote-button:hover:before {
    top: -35%;
    background-color: #007bff;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.quote-button:hover:after {
    top: -45%;
    background-color: #007bff;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* Shared CTA style (aligned with homepage) */
.btn-fill {
    display: inline-block;
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #007bff;
    z-index: 1;
    background: #e8e8e8;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    text-decoration: none;
    cursor: pointer;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
}

.btn-fill::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #007bff;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
}

.btn-fill:hover {
    color: #e8e8e8;
    text-decoration: none;
}

.btn-fill:hover::before {
    width: 100%;
}

/* Services Intro Section */
.services-intro-section {
    padding: 120px 20px 80px;
    background-color: #041024;
    text-align: center;
}

.page-title {
    font-family: 'Merriweather', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto;
    color: #E0E0E0;
    font-family: 'Merriweather', sans-serif;
    font-size: 18px;
    line-height: 1.8;
}

.services-intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: #E0E0E0;
    font-family: 'Merriweather', sans-serif;
    font-size: 18px;
    line-height: 1.8;
}

/* Services flip cards (imported from Example layout) */
:root {
    --services-flip-card-width: 342px;
    --services-flip-radius: 16px;
    --services-flip-shadow-base: 0 4px 20px rgba(255, 255, 255, 0.15);
    --services-flip-shadow: 0 10px 40px rgba(255, 255, 255, 0.25);
}

.services-flip-section {
    padding: 24px 20px 80px;
}

.services-flip-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.services-flip-hint {
    margin: 0 0 20px;
    text-align: center;
    color: #a9b7d3;
    font-size: 15px;
}

.services-flip-grid {
    display: grid;
    grid-template-columns: repeat(3, var(--services-flip-card-width));
    gap: 50px;
    justify-content: center;
}

@media (min-width: 921px) {
    .services-flip-grid>.service-flip-card:last-child {
        grid-column: 2;
    }
}

@media (max-width: 920px) {
    .services-flip-grid {
        grid-template-columns: repeat(2, var(--services-flip-card-width));
    }
}

@media (max-width: 768px) {
    .services-flip-grid {
        grid-template-columns: var(--services-flip-card-width);
        gap: 25px;
    }
}

.service-flip-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border-radius: var(--services-flip-radius);
    overflow: hidden;
    box-shadow: var(--services-flip-shadow-base);
    transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
    perspective: 1000px;
    position: relative;
    width: var(--services-flip-card-width);
    min-height: 470px;
    height: auto;
}

.service-flip-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--services-flip-shadow);
}

.service-flip-card.is-open {
    border-color: rgba(59, 130, 246, 0.55);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12) inset, var(--services-flip-shadow);
}

.service-flip-header {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: 70% 30%;
    align-content: stretch;
    backface-visibility: hidden;
    transform: rotateY(0deg);
    transition: transform 0.45s ease;
    border-radius: var(--services-flip-radius);
    overflow: hidden;
}

.service-flip-media {
    position: relative;
    height: 100%;
    background-color: #0f1f3b;
    background-image: url('./img/event_driver.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 14px;
}

.services-flip-grid .service-flip-card:first-child .service-flip-media {
    background-image: url('./img/event_driver.png');
    background-color: #0f1f3b;
}

.services-flip-grid .service-flip-card:nth-child(2) .service-flip-media {
    background-image: url('./img/event_porter.png');
}

.services-flip-grid .service-flip-card:nth-child(3) .service-flip-media {
    background-image: url('./img/kitchen_porter.png');
}

.services-flip-grid .service-flip-card:nth-child(4) .service-flip-media {
    background-image: url('./img/chef_assistant.png');
}

.services-flip-grid .service-flip-card:nth-child(5) .service-flip-media {
    background-image: url('./img/warehouse_porter.png');
}

.services-flip-grid .service-flip-card:nth-child(6) .service-flip-media {
    background-image: url('./img/delivery_driver.png');
}

.services-flip-grid .service-flip-card:nth-child(7) .service-flip-media {
    background-image: url('./img/team_leader.png');
}

.service-flip-title {
    font-size: 23px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.2px;
    color: #e7eefc;
}

.service-flip-body {
    padding: 12px 14px 14px;
    background-color: #08152c;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-flip-desc {
    margin: 0;
    padding-bottom: 10px;
    margin-bottom: 12px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #c3cfe6;
    font-size: 15px;
    line-height: 1.5;
}

.service-flip-cta {
    margin: 0 0 6px;
    padding: 4px 0 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #e7eefc;
    text-align: center;
}

.service-flip-panel {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: transform 0.45s ease;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02));
    border-radius: var(--services-flip-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.service-flip-panel-inner {
    padding: 14px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto 1fr;
    gap: 14px;
    height: 100%;
    overflow: visible;
    align-content: start;
}

.service-flip-panel-title {
    grid-column: 1 / -1;
    margin: 0 0 4px;
}

.service-flip-section-block h3 {
    margin: 0 0 8px;
    font-size: 13px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: rgba(231, 238, 252, 0.85);
}

.service-flip-section-block ul {
    margin: 0;
    padding-left: 18px;
    color: #a9b7d3;
    font-size: 14px;
    line-height: 1.5;
}

.service-flip-section-block li {
    margin: 6px 0;
}

.service-flip-header:focus-visible {
    outline: 3px solid rgba(59, 130, 246, 0.45);
    outline-offset: 3px;
    border-radius: calc(var(--services-flip-radius) - 2px);
}

.service-flip-card.is-open .service-flip-header {
    transform: rotateY(-180deg);
}

.service-flip-card.is-open .service-flip-panel {
    transform: rotateY(0deg);
}

/* Contact + Need Crew Section */
.section {
    padding: 80px 20px;
}

.section-content {
    color: #E0E0E0;
    font-family: 'Merriweather', sans-serif;
    font-size: 18px;
    line-height: 1.8;
}

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

.contact-info {
    text-align: center;
}

.contact-details {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.contact-details p {
    color: #ffffff;
    font-size: 18px;
}

.contact-details strong {
    color: #007bff;
}

.contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

@media (prefers-reduced-motion: reduce) {

    .service-flip-card,
    .service-flip-panel {
        transition: none !important;
    }

    .service-flip-card:hover {
        transform: none;
    }
}

/* Services Carousel Section */
:root {
    --carousel-gap: 20px;
    --carousel-card-width: 100%;
}

.services-carousel-section {
    padding: 80px 20px;
    background-color: #041024;
}

/* Quick Jump Navigation */
.carousel-quick-jump {
    max-width: 1400px;
    margin: 0 auto 40px;
}

.carousel-quick-jump-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.carousel-quick-jump-nav::-webkit-scrollbar {
    display: none;
}

.carousel-jump-btn {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 16px 24px;
    border-radius: 0;
    font-family: 'Merriweather', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    min-width: fit-content;
    text-transform: none;
}

.carousel-jump-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
}

.carousel-jump-btn.active {
    color: #007bff;
    border-bottom-color: #007bff;
    background-color: transparent;
}

.carousel-jump-btn.active:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

.carousel-jump-btn:focus {
    outline: 2px solid #007bff;
    outline-offset: -2px;
    border-radius: 2px;
}

.services-carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.services-carousel-track {
    display: flex;
    gap: var(--carousel-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    min-width: 0;
}

@media (prefers-reduced-motion: reduce) {
    .services-carousel-track {
        scroll-behavior: auto;
    }
}

.services-carousel-track::-webkit-scrollbar {
    display: none;
}

.service-card-item {
    flex: 0 0 var(--carousel-card-width);
    scroll-snap-align: start;
    background-color: #000000;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.service-card-title {
    font-family: 'Merriweather', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.service-card-overview {
    font-family: 'Merriweather', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.service-card-overview strong {
    color: #ffffff;
}

.service-card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.service-card-detail-item {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
}

.service-card-detail-heading {
    font-family: 'Merriweather', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-card-list {
    list-style: none;
    padding: 0;
}

.service-card-list li {
    font-family: 'Merriweather', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #E0E0E0;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 20px;
}

.service-card-cta {
    text-align: center;
    align-self: center;
    margin-top: auto;
}

.service-card-cta:hover {
    transform: none;
}

.service-card-cta:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.carousel-nav-btn {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #333;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav-btn:hover:not(:disabled) {
    background-color: #007bff;
    border-color: #007bff;
}

.carousel-nav-btn:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.carousel-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-nav-btn:disabled:hover {
    background-color: #000000;
    border-color: #333;
}

/* Mobile styles */
@media (max-width: 768px) {
    .carousel-quick-jump {
        margin-bottom: 30px;
    }

    .carousel-quick-jump-nav {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .carousel-jump-btn {
        padding: 14px 20px;
        font-size: 13px;
        min-width: auto;
    }

    .services-carousel-wrapper {
        gap: 10px;
    }

    .service-card-item {
        padding: 30px 20px;
    }

    .service-card-title {
        font-size: 24px;
    }

    .service-card-overview {
        font-size: 16px;
    }

    .service-card-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-detail-item {
        padding: 20px;
    }

    .service-card-detail-heading {
        font-size: 18px;
    }

    .service-card-list li {
        font-size: 15px;
    }

    .service-card-cta {
        padding: 12px 30px;
        font-size: 16px;
    }

    .carousel-nav-btn {
        padding: 10px 16px;
        font-size: 24px;
        min-width: 45px;
    }
}


/* Quick Jump Navigation */
.quick-jump-section {
    padding: 60px 20px;
    background-color: #041024;
    position: sticky;
    top: 70px;
    z-index: 100;
    border-bottom: 1px solid #333;
}

.quick-jump-title {
    font-family: 'Merriweather', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.quick-jump-nav {
    max-width: 1200px;
    margin: 0 auto;
}

.quick-jump-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.quick-jump-list li a {
    color: #E0E0E0;
    text-decoration: none;
    font-family: 'Merriweather', sans-serif;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.quick-jump-list li a:hover {
    background-color: #000000;
    color: #007bff;
}

html {
    scroll-behavior: smooth;
}

/* Service Sections */
.service-section {
    padding: 80px 20px;
    background-color: #041024;
}

.service-section:nth-of-type(even) {
    background-color: #041024;
}

.section-title {
    font-family: 'Merriweather', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.service-title {
    font-family: 'Merriweather', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.service-overview {
    font-family: 'Merriweather', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.service-overview strong {
    color: #ffffff;
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.service-detail-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
}

.service-section:nth-of-type(even) .service-detail-item {
    background-color: #000000;
}

.service-detail-heading {
    font-family: 'Merriweather', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-family: 'Merriweather', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #E0E0E0;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 20px;
}

.service-cta {
    text-align: center;
    margin-top: 30px;
}

.service-cta-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Booking Basics Section */
.booking-basics-section {
    padding: 80px 20px;
    background-color: #041024;
}

.booking-basics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-basics-item {
    background-color: #000000;
    padding: 25px;
    border-radius: 8px;
    color: #E0E0E0;
    font-family: 'Merriweather', sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.booking-basics-item strong {
    color: #ffffff;
    font-weight: 600;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 20px;
    background-color: #007bff;
    text-align: center;
}

.final-cta-heading {
    font-family: 'Merriweather', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
}

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

.final-cta-btn {
    min-width: 180px;
    text-align: center;
}

.final-cta-btn.primary {
    background: #e8e8e8;
    color: #007bff;
}

.final-cta-btn.primary:hover {
    transform: none;
}

.final-cta-btn.secondary {
    background: #e8e8e8;
    color: #007bff;
    border: none;
}

.final-cta-btn.secondary:hover {
    transform: none;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 20px;
    background-color: #041024;
}

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

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

.service-card {
    background-color: #000000;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.25);
}

.service-card h3 {
    font-family: 'Merriweather', sans-serif;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
}

.service-card p {
    color: #E0E0E0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: 'Merriweather', sans-serif;
    flex-grow: 1;
}

.service-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* CTA Strip */
.services-cta-strip {
    padding: 60px 20px;
    background-color: #000000;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Service Detail Pages */
.service-hero-strip {
    padding: 120px 20px 80px;
    background-color: #1a1a1a;
    text-align: center;
}

.service-hero-strip h1 {
    font-family: 'Merriweather', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.service-positioning {
    font-family: 'Merriweather', sans-serif;
    font-size: 20px;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.service-content-section,
.service-duties-section,
.service-when-section,
.service-faq-section {
    padding: 80px 20px;
    background-color: #000000;
}

.service-content-section h2,
.service-duties-section h2,
.service-when-section h2,
.service-faq-section h2 {
    font-family: 'Merriweather', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
}

.service-content-section p {
    font-family: 'Merriweather', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto;
}

.duties-list,
.when-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.duties-list li,
.when-list li {
    font-family: 'Merriweather', sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #E0E0E0;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.duties-list li::before,
.when-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 24px;
}

.service-faq-section {
    background-color: #1a1a1a;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    background-color: #000000;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: #000000;
    color: #ffffff;
    border: none;
    font-family: 'Merriweather', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #1a1a1a;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #007bff;
    font-weight: bold;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #E0E0E0;
    font-family: 'Merriweather', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.service-cta-block {
    padding: 80px 20px;
    background-color: #007bff;
    text-align: center;
}

.service-cta-block h2 {
    font-family: 'Merriweather', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #041024;
    padding: 60px 20px 20px;
    border-top: 1px solid #333;
}

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

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

.footer-section h3 {
    font-family: 'Merriweather', sans-serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-section p {
    color: #E0E0E0;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* Homepage footer layout + social icons */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px 40px;
    margin-bottom: 40px;
}

.footer-grid-cell:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
}

.footer-grid-cell:nth-child(2) {
    grid-row: 2;
    grid-column: 1;
}

.footer-grid-cell:nth-child(3) {
    grid-row: 1;
    grid-column: 2;
}

.footer-grid-cell:nth-child(4) {
    grid-row: 2;
    grid-column: 2;
}

.footer-grid-cell:nth-child(5) {
    grid-row: 1;
    grid-column: 3;
}

.footer-grid-cell:nth-child(6) {
    grid-row: 2;
    grid-column: 3;
}

.footer-grid-cell {
    display: flex;
    flex-direction: column;
}

.footer-title-cell {
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-title-cell h3 {
    font-family: 'Merriweather', sans-serif;
    font-size: 20px;
    color: #ffffff;
    margin: 0;
    text-align: left;
}

.footer-title-cell:nth-child(3) h3,
.footer-title-cell:nth-child(5) h3 {
    text-align: center;
    width: 100%;
}

.footer-info-cell {
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-links-cell,
.footer-social-cell {
    align-items: center;
    justify-content: center;
}

.footer-info-cell p {
    color: #E0E0E0;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-links {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wrapper {
    display: inline-flex;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    justify-content: center;
    align-items: center;
}

.wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.wrapper .icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #fff;
}

@media (max-width: 980px) {
    .navbar {
        padding: 0 12px;
    }

    .nav-container {
        grid-template-columns: 1fr auto;
        height: 70px;
        column-gap: 12px;
    }

    .logo {
        justify-self: start;
    }

    .logo-img {
        height: 42px;
        max-width: 150px;
    }

    .logo-text {
        font-size: 20px;
    }

    .nav-toggle {
        display: inline-flex;
        width: 42px;
        height: 42px;
        border: 1px solid #d3d6dc;
        border-radius: 10px;
        background: #fff;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 0;
    }

    .nav-toggle span {
        width: 18px;
        height: 2px;
        background: #222;
        border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .navbar.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .navbar.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-drawer {
        position: absolute;
        top: calc(100% + 8px);
        left: auto;
        right: 30px;
        width: min(78vw, 320px);
        max-height: calc(100vh - 90px);
        overflow: auto;
        display: none;
        grid-template-columns: 1fr;
        row-gap: 14px;
        padding: 16px;
        border: 1px solid #e1e3e8;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
    }

    .navbar.nav-open .nav-drawer {
        display: grid;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .nav-menu li a {
        display: inline-block;
        padding: 6px 0;
        font-size: 16px;
    }

    .quote-button {
        justify-self: center;
        width: auto;
        max-width: none;
        text-align: center;
        padding: 8px 14px;
        font-size: 14px;
    }

    .services-intro-section {
        padding-top: 120px;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .services-intro-section {
        padding: 120px 20px 60px;
    }

    .page-title {
        font-size: 32px;
    }

    .services-intro,
    .services-intro-text {
        font-size: 16px;
    }

    .section-content {
        font-size: 16px;
    }

    .contact-details p {
        font-size: 16px;
    }

    .contact-cta-buttons {
        gap: 14px;
        margin-top: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px;
    }


    /* Quick Jump Navigation Mobile */
    .quick-jump-section {
        padding: 40px 20px;
        position: relative;
    }

    .quick-jump-title {
        font-size: 20px;
    }

    .quick-jump-list {
        flex-direction: column;
        gap: 10px;
    }

    .quick-jump-list li a {
        display: block;
        text-align: center;
        padding: 12px;
    }

    /* Service Sections Mobile */
    .service-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .service-title {
        font-size: 28px;
    }

    .service-overview {
        font-size: 16px;
    }

    .service-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-item {
        padding: 25px;
    }

    .service-detail-heading {
        font-size: 20px;
    }

    .service-list li {
        font-size: 15px;
    }

    .service-cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    /* Booking Basics Mobile */
    .booking-basics-section {
        padding: 60px 20px;
    }

    .booking-basics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-basics-item {
        padding: 20px;
        font-size: 15px;
    }

    /* Final CTA Mobile */
    .final-cta-section {
        padding: 60px 20px;
    }

    .final-cta-heading {
        font-size: 28px;
    }

    .final-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .final-cta-btn {
        padding: 14px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }

    /* Footer — phone */
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        margin-bottom: 28px;
    }

    .footer {
        padding-top: 44px;
        padding-left: max(16px, env(safe-area-inset-left, 0px));
        padding-right: max(16px, env(safe-area-inset-right, 0px));
        padding-bottom: max(20px, env(safe-area-inset-bottom, 0px));
    }

    .footer-title-cell:nth-child(3) h3,
    .footer-title-cell:nth-child(5) h3 {
        text-align: left;
        width: 100%;
    }

    .footer-links-cell,
    .footer-social-cell {
        align-items: flex-start;
    }

    .footer-social-cell .wrapper {
        justify-content: flex-start;
        width: auto;
    }

    .footer-links {
        align-items: stretch;
        width: 100%;
    }

    .footer-links a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        padding: 6px 0;
    }

    .footer-links li {
        margin-bottom: 2px;
    }

    .footer-info-cell p {
        overflow-wrap: anywhere;
    }

    .footer-bottom {
        padding-left: max(0px, env(safe-area-inset-left, 0px));
        padding-right: max(0px, env(safe-area-inset-right, 0px));
    }
}

/* Navbar theme synced from Example */
.navbar {
    background: linear-gradient(180deg, #0b1220, #0e1a33);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

.nav-container {
    max-width: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 16px;
}


.logo {
    color: rgba(231, 238, 252, 0.95);
    justify-self: center;
}

.logo-text {
    color: rgba(231, 238, 252, 0.95);
    font-weight: 600;
}

.nav-drawer {
    display: contents;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #d49d30;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 12px;
    justify-self: center;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu li a {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    color: rgba(231, 238, 252, 0.90);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 14px;
    transition: background 0.14s ease, color 0.14s ease, box-shadow 0.14s ease, transform 0.14s ease, border-color 0.14s ease;
}

.nav-menu li a:hover {
    color: #ffffff;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.nav-menu li a.nav-active {
    color: #0b1220;
    background: #d49d30;
    border-color: rgba(0, 0, 0, 0.12);
    font-weight: 800;
    box-shadow: 0 0 0 3px rgba(212, 157, 48, 0.18) inset;
}

.quote-button {
    color: #0b1220;
    background: #d49d30;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 11px 14px;
    font-weight: 800;
    font-size: 15px;
    box-shadow: none;
    transition: transform 0.14s ease, filter 0.14s ease;
    justify-self: center;
}

.quote-button::before,
.quote-button::after {
    display: none !important;
}

.quote-button:hover {
    color: #0b1220;
    border-color: rgba(0, 0, 0, 0.12);
    text-decoration: none;
    transform: translateY(-1px);
    filter: brightness(1.04);
}

@media (max-width: 980px) {
    .nav-container {
        grid-template-columns: 1fr auto;
        height: 70px;
        column-gap: 12px;
    }

    .logo {
        justify-self: start;
    }

    .nav-toggle {
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-toggle span {
        background: rgba(231, 238, 252, 0.95);
    }

    .nav-drawer {
        position: absolute;
        top: calc(100% + 8px);
        left: auto;
        right: 30px;
        width: min(78vw, 320px);
        max-height: calc(100vh - 90px);
        overflow: auto;
        display: none;
        grid-template-columns: 1fr;
        row-gap: 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        background: linear-gradient(180deg, #0b1220, #060a13);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
        padding: 14px;
    }

    .navbar.nav-open .nav-drawer {
        display: grid;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        border: 0;
        border-radius: 0;
        background: transparent;
        padding: 0;
    }

    .quote-button {
        width: auto;
        max-width: none;
        padding: 8px 14px;
        font-size: 15px;
    }
}