@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css') (display-mode: swap);


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

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Base typography: fast, legible, Italian-friendly */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Heading typography */
h2 {
    font-family: 'Lobster', Georgia, serif;
    font-weight: 700;
    color: #01243F;
    letter-spacing: 0.3px;
    margin: 0 0 24px;
    font-size: 32px;
    padding-top: 0;
}

h3 {
    font-family: inherit;
    font-weight: 700;
    color: #01243F;
    letter-spacing: 0.3px;
    margin: 0 0 24px;
    font-size: 32px;
}

.navbar {
    background-color: rgba(104, 234, 231, 0.4) !important;
    padding: 10px 30px;
    border-radius: 20px;
    margin: 30px 30px 0 30px;
    min-height: 100px;
    height: auto;
    z-index: 1055 !important;
    transition: background-color 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-clip: padding-box;
    border: 1px solid rgba(46, 19, 125, 0.3);
}

.navbar .container-fluid,
.navbar-collapse,
.navbar a,
.navbar button {
    position: relative;
    z-index: 1056;
}

.navbar.bg-light {
    background-color: rgba(246, 244, 250, 0.4) !important;
}

.navbar.navbar-light {
    background-color: rgba(248, 248, 248, 0.4) !important;
}

.navbar-light .navbar-brand {
    color: inherit !important;
}

.navbar.scrolled {
    background-color: #02AB93 !important;
}

.navbar-brand img {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.943));
    transition: filter 0.3s ease;
}

.navbar-brand img:hover {
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.911));
}

@media (min-width: 1025px) {
    .navbar .container-fluid {
        display: flex;
        align-items: center;
        gap: 18px;
        min-height: 78px;
    }

    .navbar-brand {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 78px;
        line-height: 0;
    }

    .navbar-brand img {
        display: block;
    }

    .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex: 1 1 auto;
        gap: 0;
        width: auto;
        margin-top: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
    }

    .navbar-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1 1 auto;
        margin: 0 auto;
    }

    .navbar-language {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        margin-left: auto;
        white-space: nowrap;
    }

}

@media (max-width: 1024px) {
    .navbar {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 15px 20px;
        margin: 15px 15px 0 15px;
        height: auto;
        background-color: #02AB93 !important;
    }
    
    .navbar-brand {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .navbar .container-fluid {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
    }

    .navbar-toggler {
        order: 2;
        margin-left: auto;
    }

    .navbar-language {
        order: 4;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        margin-top: 12px;
        white-space: nowrap;
    }

    .navbar-collapse {
        order: 3;
        flex-basis: 100%;
        background-color: #f8f8f85b;
        width: 100%;
        margin-top: 12px;
        padding: 15px 20px;
        border-radius: 20px;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }

    .navbar-collapse:not(.show):not(.collapsing) {
        display: none !important;
    }

    .nav-link {
        color: #ffffff9a !important;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #02AB93 !important;
    }

}

.navbar-language__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    text-decoration: none;
    font-size: 20px;
    line-height: 1;
    border-radius: 999px;
    opacity: 0.72;
    background: rgba(1, 36, 63, 0.08);
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.navbar-language__link:hover {
    opacity: 1;
    transform: translateY(-1px);
    background: rgba(1, 36, 63, 0.14);
}

.navbar-language__link--active {
    opacity: 1;
    background: rgba(2, 171, 147, 0.22);
    box-shadow: 0 0 0 2px rgba(2, 171, 147, 0.25);
}

@media (max-width: 768px) {
    .navbar-collapse {
        background-color: #f9f9f9a4;
    }

    .nav-link {
        color: #ffffff !important;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #02ab92e9 !important;
    }

}

.navbar-collapse {
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    flex-wrap: nowrap;
    border-radius: 20px;
    padding: 15px 20px;
    margin-top: 10px;
}

.navbar-nav {
    justify-content: center;
    align-items: center;
    width: auto;
    flex-wrap: nowrap;
}

.navbar-nav.ms-auto {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.nav-link {
    color: #333 !important;
    font-weight: 700;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #550C15 !important;
}

.nav-link.active {
    color: #550C15 !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #550C15;
    border-radius: 2px;
}

.header {
    position: relative;
    margin-top: 0; 
    width: 100%;
    height: 600px;
    text-align: center;
    background-color: #f4f4f4;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
    z-index: 1; 
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 24px 100px;
    background:
        radial-gradient(circle at top, rgba(2, 171, 147, 0.18), transparent 40%),
        linear-gradient(180deg, #f8fdff 0%, #eef8f6 100%);
}

.error-page__card {
    max-width: 760px;
    width: 100%;
    text-align: center;
    padding: 48px 32px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 60px rgba(1, 36, 63, 0.12);
    border: 1px solid rgba(2, 171, 147, 0.16);
}

.error-page__code {
    margin: 0;
    font-size: clamp(72px, 12vw, 140px);
    line-height: 0.9;
    color: #02AB93;
    font-weight: 800;
}

.error-page__title {
    margin: 16px 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    color: #01243F;
}

.error-page__text {
    max-width: 560px;
    margin: 0 auto;
    color: #31475b;
    font-size: 18px;
}

.error-page__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.error-page__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.error-page__button:hover {
    transform: translateY(-1px);
}

.error-page__button--primary {
    background: #02AB93;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(2, 171, 147, 0.28);
}

.error-page__button--secondary {
    background: transparent;
    color: #01243F;
    border: 1px solid rgba(1, 36, 63, 0.18);
}

@media (max-width: 768px) {
    .error-page {
        padding: 150px 16px 80px;
    }

    .error-page__card {
        padding: 36px 24px;
        border-radius: 24px;
    }

    .error-page__text {
        font-size: 16px;
    }

    .error-page__button {
        width: 100%;
    }
}

.header__video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.header__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    z-index: 2;
    text-align: center;
}
.header-img {
    margin-bottom: 5px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
    display: inline-block;
}
    
.header-img img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}
.header__title {
    font-family: Helvetica, 'Courier New', Courier, monospace;
    font-size: 55px;
    margin: 1px 0 5px 0;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.4;
}
.header__subtitle {
    font-family: Arial, sans-serif;
    font-size: 20px;
    margin: 5px 0 5px 0;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    letter-spacing: 1px;
    font-style: normal;
}
.header__button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #02AB93; 
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.header__button:hover {
    background-color: #01243F;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}
.header__button:active {
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .header {
        height: 500px;
    }
    .header__video {
        height: 500px;
    }
    .header__title {
        font-size: 28px;
        letter-spacing: 0.3px;
    }
    .header__subtitle {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    .header-img img {
        height: 180px !important;
    }
    .header__button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .header {
        height: 500px;
    }
    .header__video {
        height: 500px;
    }
    .header__title {
        font-size: 22px;
        letter-spacing: 0.2px;
    }
    .header__subtitle {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    .header-img img {
        height: 120px !important;
    }
    .header__button {
        padding: 10px 25px;
        font-size: 14px;
    }
}
.contact-hero {
    min-height: auto;
    height: 200px;
    padding: 0 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35)), url('./images/sea.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 60px;
}

.contact-hero__content {
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.info-section {
    padding: 60px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 25%;
    height: 100%;
    background-image: url('./images/omar.webp');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.info-section__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.info-section__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 200px;
}

.info-section__images .info-section__img:first-child {
    grid-column: 1;
    grid-row: 1;
    height: 142.5px;
}

.info-section__images .info-section__img:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    height: 142.5px;
}

.info-section__images .info-section__img:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / 3;
    height: 300px;
}

.info-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-section__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-section__heading {
    font-size: 32px; /* matches global */
    color: #01243F;
    margin: 0 0 24px; /* align spacing with global */
    font-weight: 700;
}

.info-section__subheading {
    font-size: 24px;
    color: #02AB93;
    margin: 0;
    font-weight: 600;
}

.info-section__description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.section__button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #02AB93; 
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    width: fit-content;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-shadow: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.section__button:hover {
    background-color: #01243F;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}
.section__button:active {
    transform: translateY(0);
}

/* Tour Details Section */
.tour-details {
    background: radial-gradient(circle at 20% 20%, rgba(2, 171, 147, 0.08), transparent 25%),
                radial-gradient(circle at 80% 10%, rgba(1, 36, 63, 0.08), transparent 22%),
                linear-gradient(135deg, #f7f9fc 0%, #e9f0f5 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.tour-details__container {
    max-width: 1000px;
    margin: 0 auto;
}

.tour-details__header {
    margin-bottom: 40px;
}

.tour-details__intro {
    text-align: center;
    font-size: 17px;
    color: #555;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.7;
}

.tour-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 30px auto 10px;
    max-width: 900px;
}

.meta-badge {
    background: white;
    color: #01243F;
    border: 1px solid #dce6ee;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.meta-badge i {
    color: #02AB93;
}

/* Introtravel-inspired layout */
.tour-hero-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 28px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    box-shadow: 0 14px 36px rgba(1, 36, 63, 0.12);
    border: 1px solid #dbe6ee;
    margin-bottom: 32px;
}

.tour-hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #02AB93;
    margin: 0 0 6px;
    font-size: 12px;
}

.tour-hero__title {
    margin: 0 0 8px;
    font-size: 28px;
    color: #01243F;
    font-weight: 800;
}

.tour-hero__text {
    margin: 0 0 14px;
    color: #3b556d;
    line-height: 1.6;
}

.tour-hero__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.meta-badge {
    background: #f7fbfc;
    color: #01243F;
    border: 1px solid #dce6ee;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.meta-badge i {
    color: #02AB93;
}

.tour-hero__cta {
    background: linear-gradient(135deg, rgba(2, 171, 147, 0.08), rgba(1, 36, 63, 0.05));
    border: 1px solid #d0e4ee;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.price-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background: #ffffff;
    border-radius: 999px;
    border: 1px solid #cfe2e9;
    font-weight: 800;
    color: #01243F;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.price-note {
    margin: 0;
    color: #2f4a61;
    line-height: 1.4;
}

.cta-subnote {
    margin: 0;
    color: #01243F;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.tour-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    margin-bottom: 32px;
}

.itinerary-card,
.info-card {
    background: #ffffff;
    border: 1px solid #dce6ee;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(1, 36, 63, 0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.card-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(2, 171, 147, 0.12);
    color: #01243F;
}

.itinerary-card h4,
.info-card h4 {
    margin: 0;
    color: #01243F;
    font-weight: 800;
}

.itinerary-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.itinerary-steps li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(2, 171, 147, 0.05), rgba(1, 36, 63, 0.03));
    border: 1px solid #e2ebf2;
}

.step-time {
    font-weight: 800;
    color: #01243F;
}

.step-title {
    margin: 0 0 4px;
    font-weight: 800;
    color: #01243F;
}

.step-text {
    margin: 0;
    color: #3b556d;
    line-height: 1.5;
}

.info-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #01243F;
    font-weight: 600;
}

.info-list i {
    color: #02AB93;
    margin-right: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.info-pill {
    background: #f7fbfc;
    border: 1px solid #dce6ee;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #01243F;
    font-weight: 700;
}

.info-pill i {
    color: #02AB93;
}

.pricing-content {
    text-align: center;
}

.pricing-icon {
    font-size: 60px;
    color: #02AB93;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px auto 0;
    max-width: 400px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: #02AB93;
    font-size: 18px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(2, 171, 147, 0.12), rgba(1, 36, 63, 0.08));
    border: 1px solid #d0e4ee;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 12px 28px rgba(1, 36, 63, 0.1);
}

.pricing-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #01243F;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    border: 1px solid #cfe2e9;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.pricing-chip i {
    color: #02AB93;
}

.pricing-heading {
    margin: 14px 0 8px;
    font-size: 24px;
    font-weight: 800;
    color: #01243F;
}

.pricing-body {
    color: #2f4a61;
    margin: 0 0 12px;
    line-height: 1.6;
}

.pricing-card .pricing-features {
    margin-top: 12px;
    max-width: 520px;
}

.pricing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 14px;
    color: #01243F;
    font-weight: 600;
}

.pricing-meta i {
    color: #02AB93;
}

/* Accordion Styling (Mobile/Tablet) */
.tour-accordion-mobile .accordion {
    margin-bottom: 40px;
}

.tour-accordion-mobile .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tour-accordion-mobile .accordion-button {
    background-color: white;
    color: #01243F;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.tour-accordion-mobile .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #02AB93 0%, #01243F 100%);
    color: white;
    box-shadow: none;
}

.tour-accordion-mobile .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.tour-accordion-mobile .accordion-button::after {
    filter: brightness(0);
}

.tour-accordion-mobile .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.tour-accordion-mobile .accordion-button i {
    font-size: 24px;
    color: #02AB93;
}

.tour-accordion-mobile .accordion-button:not(.collapsed) i {
    color: white;
}

.tour-accordion-mobile .accordion-body {
    padding: 25px;
    background-color: white;
}

.tour-details__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-details__list li {
    padding: 14px 0;
    border-bottom: 1px solid #e8edf2;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tour-details__list li:last-child {
    border-bottom: none;
}

.tour-details__list li i {
    color: #02AB93;
    font-size: 18px;
    margin-top: 2px;
    min-width: 20px;
}

.tour-details__list strong {
    color: #01243F;
    font-weight: 600;
}

.tour-details__price-text {
    font-size: 19px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 0;
    color: #333;
}

.tour-details__footer {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8edf2 100%);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
}

.highlight-item i {
    font-size: 32px;
    color: #02AB93;
}

.highlight-item span {
    font-size: 15px;
    font-weight: 600;
    color: #01243F;
}

.tour-cta-button {
    font-size: 19px !important;
    padding: 18px 45px !important;
    box-shadow: 0 6px 20px rgba(2, 171, 147, 0.3) !important;
}

.tour-cta-button:hover {
    box-shadow: 0 8px 25px rgba(1, 36, 63, 0.4) !important;
}

@media screen and (max-width: 992px) {
    .tour-hero-card {
        grid-template-columns: 1fr;
    }

    .tour-layout {
        grid-template-columns: 1fr;
    }

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

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

@media screen and (max-width: 768px) {
    .tour-details {
        padding: 40px 15px;
    }

    .itinerary-steps li {
        grid-template-columns: 1fr;
    }

    .tour-hero__title {
        font-size: 24px;
    }

    .meta-badge {
        width: 100%;
        justify-content: center;
    }

    .footer-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tour-cta-button {
        font-size: 16px !important;
        padding: 15px 30px !important;
    }
}

@media screen and (max-width: 768px) {
    .info-section__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-section__img {
        height: 200px;
    }
}
/* INFO SECTION */
.info-section {
    padding: 40px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 25%;
    height: 100%;
    background-image: url('./images/omar.webp');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.info-section__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.info-section__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 300px;
}

.info-section__images .info-section__img:first-child {
    grid-column: 1;
    grid-row: 1;
    height: 142.5px;
}

.info-section__images .info-section__img:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    height: 142.5px;
}

.info-section__images .info-section__img:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / 3;
    height: 300px;
}

.info-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.section__button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #02AB93; 
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    width: fit-content;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-shadow: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.section__button:hover {
    background-color: #01243F;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}
.section__button:active {
    transform: translateY(0);
}
@media screen and (max-width: 768px) {
    .info-section__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-section__img {
        height: 200px;
    }
}

.footer {
    background: #01243F;
    color: #e8f4f8;
    width: 100%;
    margin: 0;
    padding: 50px 20px 0;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    align-items: start;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__col--brand {
    gap: 10px;
}

.footer__logo {
    height: 130px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

.footer__heading {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #a8d7ec;
}

.footer__text {
    margin: 0;
    color: #d9e8f1;
    font-size: 14px;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__link {
    color: #e8f4f8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: #8fe5d7;
}

.footer__social {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 10px;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #e8f4f8;
    text-decoration: none;
    font-size: 18px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.footer__social-link:hover {
    color: white;
    background-color: #02AB93;
    transform: translateY(-2px);
}

.footer__address {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #e8f4f8;
}

.footer__map {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer__webmaster {
    width: 100%;
    max-width: none;
    margin: 32px 0 0;
    padding: 24px 0 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__webmaster-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 18px 42px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(2, 171, 147, 0.45) 0%, rgba(2, 171, 147, 0.18) 55%, rgba(1, 36, 63, 0) 92%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer__webmaster-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.footer__webmaster-image {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 16px 0;
    }

    .footer__inner {
        gap: 22px;
    }
}

/* LEGAL SIDEBAR */
.legal-sidebar {
    position: sticky;
    top: 140px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.legal-sidebar__title {
    font-size: 18px;
    font-weight: 600;
    color: #01243F;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #02AB93;
}

.legal-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-sidebar__link {
    display: block;
    padding: 12px 16px;
    color: #01243F;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 15px;
    border-left: 3px solid transparent;
}

.legal-sidebar__link:hover {
    background: #e9ecef;
    border-left-color: #02AB93;
    padding-left: 20px;
    color: #02AB93;
}

.legal-sidebar__link--active {
    background: #02AB93;
    color: #ffffff;
    border-left-color: #01243F;
    font-weight: 500;
}

.legal-sidebar__link--active:hover {
    background: #029985;
    color: #ffffff;
}

/* CONTACT CTA SECTION */
.contact-cta {
    padding: 2px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #01243F 50%, #01243F 100%);
    border-top: none;
    border-bottom: none;
}

.contact-cta__container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #02AB93;
    padding: 30px;
    border-radius: 12px;
}

.contact-cta__title {
    font-family: 'Lobster', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.contact-cta__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.contact-cta__methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.contact-cta__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: none;
    flex: 1;
}

.contact-cta__item i {
    font-size: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-cta__item:hover {
    transform: translateY(-3px);
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-cta__item:hover i {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .contact-cta {
        padding: 40px 20px;
    }

    .contact-cta__container {
        max-width: 100%;
    }

    .contact-cta__title {
        font-size: 24px;
    }

    .contact-cta__subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .contact-cta__methods {
        flex-wrap: wrap;
        gap: 12px;
    }

    .contact-cta__item {
        padding: 10px 16px;
        font-size: 13px;
        gap: 6px;
    }

    .contact-cta__item i {
        font-size: 18px;
    }
}

/* FAQ SECTION */
.faq__header {
    text-align: center;
    margin-bottom: 40px;
}

.faq__title {
    font-family: Helvetica, 'Courier New', Courier, monospace;
    font-size: 35px;
    color: #01243F;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.faq__subtitle {
    font-size: 17px;
    color: #02AB93;
    margin: 0 0 8px; /* subtle consistent spacing */
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq__card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(2, 36, 63, 0.06);
}

.faq__card-title {
    font-size: 20px;
    color: #01243F;
    margin-bottom: 14px;
    font-weight: 700;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.faq__item {
    background: #f6fbfd;
    border: 1px solid rgba(2, 36, 63, 0.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    color: #01243F;
    font-weight: 700;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary::after {
    content: "+";
    color: #02AB93;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.faq__item[open] summary::after {
    content: "-";
}

.faq__item p {
    margin: 0;
    padding: 0 14px 12px 14px;
    font-size: 13px;
    color: #444;
    line-height: 1.6;
}

.faq__item summary:focus-visible {
    outline: 2px solid #02AB93;
    outline-offset: 2px;
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: scaleX(-1);
    transform-origin: left top;
    opacity: 0.8;
    mix-blend-mode: normal;
    pointer-events: none;
    z-index: 0;
}

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

.faq {
    padding: 60px 20px 60px 20px;
}

/* VERTICAL GALLERY SECTION */
.vertical-gallery {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f7f9fc 0%, #e9f0f5 100%);
}

.vertical-gallery__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* GALLERY CAROUSEL SECTION */
.gallery-carousel {
    padding: 60px 60px 60px 60px;
    background: #f5f7fa;
    border-radius: 12px;
    --gap: 12px;
    --per-view: 4;
    position: relative;
    overflow: hidden;
}

.gallery-carousel__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* optional decoration removed to match services cleanliness */

.gallery-carousel__viewport {
    position: relative;
}

.gallery-carousel__track {
    display: flex;
    gap: var(--gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-carousel__track::-webkit-scrollbar {
    display: none;
}

.gallery-card {
    flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(1, 36, 63, 0.1);
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
}

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

.gallery-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #01243F;
    border: 1px solid #dbe6ee;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gallery-carousel__btn--prev {
    left: 8px;
}

.gallery-carousel__btn--next {
    right: 8px;
}

.gallery-carousel__btn:hover {
    transform: translateY(-50%) scale(1.05);
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(1, 36, 63, 0.18);
}

@media (max-width: 992px) {
    .gallery-carousel { --per-view: 3; }
}

@media (max-width: 576px) {
    .gallery-carousel { --per-view: 2; }
}

.vertical-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(1, 36, 63, 0.15);
    aspect-ratio: 2/3;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(2, 171, 147, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(1, 36, 63, 0.95), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
    transform: translateY(0);
}

.gallery-item__text {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .vertical-gallery__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-item__overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(1, 36, 63, 0.8), transparent);
    }
}

@media (max-width: 768px) {
  h1 {
    font-size: 22px;
  }

  .menu {
    display: none;
  }

  .container {
    padding: 0 10px;
  }

  .card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
  }

  .btn {
    width: 100%;
  }

  .logo {
    width: 120px;
  }
}
.about-hero,
.services-hero {
    position: relative;
    width: 100%;
    min-height: 200px;
    height: 200px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35)), url('./images/sea.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0px;
}

/* Override contact-hero styles */
.contact-hero {
    position: relative;
    width: 100%;
    min-height: 200px;
    height: 200px;
    padding: 0 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35)), url('./images/sea.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 0px;
}

.contact-hero::before,
.contact-hero::after {
    display: none;
}

.about-hero::before,
.contact-hero::before,
.services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 40%),
                radial-gradient(circle at 80% 0%, rgba(2, 171, 147, 0.18), transparent 45%),
                linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0));
    opacity: 0.9;
    pointer-events: none;
}

.about-hero::after,
.contact-hero::after,
.services-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), transparent 45%);
    pointer-events: none;
}

.about-hero__content,
.contact-hero__content,
.services-hero__content {
    position: relative;
    max-width: 100px;
    display: grid;
    gap: 14px;
    padding: 12px 18px;
    backdrop-filter: blur(2px);
}

/* Contact hero content inline */
.contact-hero__content {
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.contact-hero__content > * {
    display: inline;
    margin: 0;
}

.about-hero__title,
.contact-hero__title,
.services-hero__title {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.about-hero__subtitle,
.contact-hero__subtitle,
.services-hero__subtitle {
    font-size: 18px;
    line-height: 1.6;
    max-width: 180px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 40px 20px;
    background: #fafafa;
    position: relative;
}

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

/* Form Wrapper */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(2, 36, 63, 0.06);
}

.contact-form__title {
    font-size: 28px;
    color: #01243F;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #01243F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 1px solid rgba(2, 36, 63, 0.12);
    border-radius: 6px;
    font-size: 15px;
    color: #01243F;
    background: white;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #02AB93;
    box-shadow: 0 0 0 3px rgba(2, 171, 147, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(1, 36, 63, 0.5);
}

.form-submit {
    padding: 14px 32px;
    background: linear-gradient(135deg, #02AB93 0%, #01A88A 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    margin-top: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 171, 147, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

/* Thank You Message */
.thank-you-message {
    padding: 40px;
    background: linear-gradient(135deg, rgba(2, 171, 147, 0.1) 0%, rgba(1, 36, 63, 0.05) 100%);
    border: 2px solid #02AB93;
    border-radius: 12px;
    text-align: center;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.thank-you-title {
    font-size: 28px;
    color: #02AB93;
    font-weight: 700;
}

.thank-you-text {
    font-size: 16px;
    color: #01243F;
    line-height: 1.6;
}

.thank-you-phone {
    color: #02AB93;
    font-weight: 700;
    text-decoration: none;
}

.thank-you-phone:hover {
    text-decoration: underline;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-status {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.contact-status--error {
    color: #8b1e1e;
    background: rgba(200, 40, 40, 0.08);
    border: 1px solid rgba(200, 40, 40, 0.2);
}

.thank-you-close {
    padding: 12px 24px;
    background: #02AB93;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
    align-self: center;
    margin-top: 10px;
}

.thank-you-close:hover {
    background: #019080;
}

/* Map Wrapper */
.contact-map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contact-intro__title {
    font-size: 36px;
    color: #01243F;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-intro__text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.contact-map__title {
    font-size: 28px;
    color: #01243F;
    font-weight: 700;
}

.contact-map-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-map {
    width: 100%;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(2, 36, 63, 0.06);
}

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

.contact-details {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(2, 36, 63, 0.06);
    text-align: center;
    margin-bottom: 20px;
}

.contact-details__text {
    font-size: 16px;
    color: #01243F;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-details__phone,
.contact-details__email {
    font-size: 18px;
    color: #02AB93;
    font-weight: 700;
    margin: 10px 0;
}

.contact-details__visit {
    font-size: 16px;
    color: #333;
    margin-top: 15px;
    font-style: italic;
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(2, 36, 63, 0.06);
}

.contact-info__title {
    font-size: 20px;
    color: #01243F;
    font-weight: 700;
    margin-bottom: 18px;
}

.contact-info__item {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 16px;
}

.contact-info__item:last-child {
    margin-bottom: 0;
}

.contact-info__link {
    color: #02AB93;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-info__link:hover {
    color: #019080;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .contact-form__title,
    .contact-map__title {
        font-size: 24px;
    }

    .contact-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 16px;
    }

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

    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-form__title,
    .contact-map__title {
        font-size: 22px;
    }

    .contact-map {
        height: 300px;
    }

    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 14px;
    }

    .contact-container {
        gap: 24px;
    }

    .contact-form-wrapper {
        padding: 16px;
    }

    .contact-form__title,
    .contact-map__title {
        font-size: 20px;
    }

    .form-submit {
        padding: 12px 20px;
        font-size: 14px;
    }

    .contact-map {
        height: 250px;
    }

    .contact-info {
        padding: 16px;
    }

    .contact-info__item {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .about-hero,
    .contact-hero,
    .services-hero {
        .nav-link {
            color: #ffffff !important;  /* White text for navigation links */
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: #02AB93 !important;  /* Teal color on hover/active */
        }
        
        .form-select {
            color: #ffffff;  /* White text for language selector */
        }
        
        .form-select option {
            color: #ffffff;  /* White text for dropdown options */
        }
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 20px;
    background: #ffffff;
    margin-top: 60px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.about-intro::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 25%;
    height: 200px;
    background-image: url('./images/fish.png');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.about-intro__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-intro__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.about-intro__title {
    font-size: 36px;
    color: #01243F;
    font-weight: 700;
    margin: 0;
}

.about-intro__description {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

.about-mission {
    background: linear-gradient(135deg, rgba(2, 171, 147, 0.1) 0%, rgba(1, 36, 63, 0.05) 100%);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #02AB93;
}

.about-mission__title {
    font-size: 28px;
    color: #01243F;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.about-mission__text {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

.about-team {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-team__title {
    font-size: 32px;
    color: #01243F;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(2, 36, 63, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.team-member__photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0;
    display: block;
}

.team-member__name {
    font-size: 22px;
    color: #01243F;
    font-weight: 700;
    margin: 20px 20px 8px 20px;
}

.team-member__role {
    font-size: 16px;
    color: #02AB93;
    font-weight: 600;
    margin: 0 20px 15px 20px;
}

.team-member__bio {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 20px 20px 20px;
}

@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-intro__image {
        height: 300px;
    }

    .about-intro__title {
        font-size: 28px;
    }

    .about-intro__description,
    .about-mission__text {
        font-size: 16px;
    }

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

/* ===================================
   SERVICES CARDS SECTION
   =================================== */

.services-intro {
    padding: 30px 20px;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.services-intro__container {
    max-width: 900px;
    margin: 0 auto;
}

.services-intro__title {
    font-size: 36px;
    color: #01243F;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-intro__description {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

.services-fish-decoration {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30%;
    max-width: 300px;
    height: auto;
    opacity: 0.2;
    pointer-events: none;
}

.services-fish-decoration-right {
    position: absolute;
    top: 100px;
    right: 20px;
    width: 20%;
    max-width: 300px;
    height: auto;
    opacity: 0.2;
    pointer-events: none;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 60px 60px 60px;
    margin-top: 0;
    background: #f5f7fa;
    border-radius: 12px;
}

/* QUICK TRUST SIGNALS */
.trust-signals {
    padding: 60px 60px 60px 60px;
    background: transparent;
    border-radius: 0;
    margin: 30px auto 0;
    box-shadow: none;
}

.trust-signals__container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px 24px;
    box-shadow: 0 10px 24px rgba(1, 36, 63, 0.06);
    border: 1px solid #dbe6ee;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust-item i {
    color: #02AB93;
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #f1fbf8, #e8f6f3);
    border: 1px solid #cfe2e9;
    box-shadow: 0 4px 10px rgba(1, 36, 63, 0.08);
}

.trust-item .trust-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

.trust-text {
    color: #01243F;
    font-weight: 800;
    font-size: 16px;
    text-align: center;
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(1, 36, 63, 0.12);
    border-color: #c7dee7;
}

@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-item {
        padding: 18px 20px;
    }
    .trust-text {
        font-size: 15px;
    }
    .trust-item i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .trust-item .trust-icon {
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 576px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .trust-item {
        gap: 12px;
    }
    .trust-text {
        font-size: 14px;
    }
}

.services-container h1 {
    text-align: center;
    color: #01243F;
    margin-bottom: 10px;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.services-container > .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.services-container .card {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.services-container .card-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
}

.services-container .card-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: -50px auto 0;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 10;
}

.services-container .card h2 {
    color: #01243F;
    font-size: 1.8em;
    margin: 20px 20px 15px 20px;
    font-weight: 700;
}

.services-container .card p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    margin: 0 20px 20px 20px;
    flex-grow: 1;
}

.services-container .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .services-container {
        padding: 60px 20px;
    }

    .services-container h1 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .services-container > .cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-container .card-photo {
        height: 250px;
    }

    .services-container .card h2 {
        font-size: 1.5em;
    }

    .services-container .card p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 40px 10px;
    }

    .services-container h1 {
        font-size: 1.5em;
    }

    .services-container .card-photo {
        height: 200px;
    }

    .services-container .card h2 {
        font-size: 1.3em;
    }
}
