/* Tour Page Specific Styles */

.tour-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 12rem 2rem 6rem 2rem;
    color: #ffffff !important;
}

.tour-hero-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0.8;
}

.tour-hero-title {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.tour-hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff !important;
    opacity: 0.95;
    line-height: 1.5;
}

.tour-layout-section {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

.tour-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.tour-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tour-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-secondary);
}

.tour-description p {
    margin-bottom: 1.5rem;
}

.tour-action-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.tour-action-card h3 {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.tour-action-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* Sidebar Cards */
.tour-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
}

.tour-details-card,
.tour-booking-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.tour-details-card h3,
.tour-booking-card h3 {
    font-family: var(--font-headings);
    font-size: 1.35rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.tour-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.tour-details-list li {
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-secondary);
}

.tour-details-list li i {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
}

.tour-details-list li strong {
    color: var(--color-secondary);
    display: block;
}

/* Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.form-group input {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background-color: var(--color-light);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-secondary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 42, 139, 0.1);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .tour-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .tour-sidebar {
        position: static;
    }

    .tour-hero {
        padding: 10rem 1rem 5rem 1rem;
    }

    .tour-hero-title {
        font-size: 2.5rem;
    }
}

/* Offshore fishing page — mirrors the original three-part composition while
   staying inside the static site's Outfit / Plus Jakarta Sans system. */
.offshore-page {
    background: #fff;
    color: var(--color-text-dark);
}

.offshore-page h1,
.offshore-page h2,
.offshore-page p {
    margin-top: 0;
}

.offshore-container {
    width: min(1320px, calc(100% - 3rem));
    margin-inline: auto;
}

.offshore-hero {
    min-height: 368px;
    display: grid;
    place-items: center;
    padding: 2rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.offshore-hero h1 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(2.35rem, 4vw, 3.45rem);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.08;
    text-align: center;
    text-shadow: 0 2px 12px rgb(0 0 0 / 25%);
}

.offshore-intro {
    padding: 76px 0 86px;
    background: #fff;
}

.offshore-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(3rem, 5vw, 5.25rem);
    align-items: center;
}

.offshore-copy h2 {
    margin-bottom: 1.15rem;
    color: var(--color-primary);
    font-size: clamp(2rem, 3vw, 2.65rem);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.08;
}

.offshore-copy p {
    max-width: 39rem;
    color: #111;
    font-size: 1rem;
    line-height: 1.8;
}

.offshore-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 60px;
    overflow: hidden;
    background: #07182f;
}

.offshore-video iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.offshore-guided {
    min-height: 508px;
    padding: 100px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.offshore-guided-panel {
    min-height: 326px;
    padding: 48px 1.35rem 42px;
    border-radius: 20px;
    background: rgb(0 32 83 / 57%);
    color: #fff;
    text-align: center;
}

.offshore-guided-panel h2 {
    margin-bottom: 2.25rem;
    color: #fff;
    font-size: clamp(2rem, 3vw, 2.65rem);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.1;
}

.offshore-guided-copy {
    max-width: 77rem;
    margin-inline: auto;
}

.offshore-guided-copy p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.85;
}

.offshore-guided-copy p + p {
    margin-top: 1.8rem;
}

@media (max-width: 800px) {
    .offshore-container {
        width: min(100% - 2.25rem, 1320px);
    }

    .offshore-hero {
        min-height: 270px;
    }

    .offshore-intro {
        padding: 4rem 0 4.5rem;
    }

    .offshore-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offshore-video {
        margin-top: 0;
    }

    .offshore-guided {
        min-height: 0;
        padding: 4.5rem 0;
    }

    .offshore-guided-panel {
        min-height: 0;
        padding: 2.25rem 1.2rem 2.5rem;
    }
}

/* ATV — the original page's editorial tour sequence. */
.atv-page {
    background: #fff;
}

.atv-page .atv-hero {
    min-height: clamp(300px, 27vw, 425px);
    display: grid;
    place-items: center;
    padding: 2rem;
    background-position: center;
}

.atv-page .atv-hero .tour-hero-title {
    margin: 0;
    color: #fff;
    font-size: clamp(2.75rem, 5vw, 4.6rem);
    font-weight: 600;
    letter-spacing: -.035em;
    text-shadow: 0 2px 14px rgb(0 0 0 / 24%);
}

.atv-page .atv-intro-section {
    padding: 4.5rem 0 4.25rem;
    background: #fff;
}

.atv-page .tour-intro-grid {
    max-width: 1180px;
    margin-inline: auto;
    gap: clamp(3rem, 6vw, 5.5rem);
}

.atv-page .tour-intro-text {
    padding-bottom: 4rem;
}

.atv-page .section-title-blue {
    color: var(--color-primary);
    font-size: clamp(2rem, 3.1vw, 3rem);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.02;
    text-transform: uppercase;
}

.atv-page .tour-intro-text p,
.atv-page .text-block p {
    color: #1d2735;
    font-size: 1rem;
    line-height: 1.85;
}

.atv-page .tour-intro-video {
    align-self: center;
}

.atv-page .video-responsive {
    border-radius: 0;
    box-shadow: none;
}

.atv-page .atv-featured-section {
    padding: clamp(4.5rem, 7vw, 6.5rem) 0;
    background: #050505;
}

.atv-page .atv-featured-card {
    grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
    max-width: 1180px;
    margin-inline: auto;
    border: 2px solid #cbd3dd;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgb(0 0 0 / 28%);
}

.atv-page .atv-featured-card .card-image {
    min-height: 340px;
}

.atv-page .atv-featured-card .card-content {
    padding: clamp(2rem, 4vw, 3.5rem);
}

.atv-page .atv-featured-card .section-title-blue {
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-size: clamp(1.9rem, 2.8vw, 2.65rem);
    text-transform: none;
}

.atv-page .atv-featured-card .card-content > p {
    color: #2d3747;
    font-size: 1rem;
    line-height: 1.8;
}

.atv-page .atv-featured-card .tour-quick-specs {
    margin: 1.25rem 0 1.5rem;
    padding: 0;
    border: 0;
}

.atv-page .atv-featured-card .tour-quick-specs p {
    margin: .4rem 0;
    color: #253147 !important;
    line-height: 1.6;
}

.atv-page .atv-featured-card .tour-quick-specs strong {
    color: var(--color-accent) !important;
}

.atv-page .atv-featured-card .btn {
    padding: .8rem 1.3rem;
    border-radius: 4px;
    font-size: .83rem;
    font-weight: 800;
}

.atv-page .atv-details-section {
    padding: 4.5rem 0 5.5rem;
    background: #fff;
}

.atv-page .tour-details-text-blocks {
    max-width: 1180px;
    margin-inline: auto;
    gap: 2.6rem;
}

.atv-page .text-block .section-title-blue {
    margin-bottom: .85rem;
    font-size: clamp(1.75rem, 2.5vw, 2.45rem);
}

@media (max-width: 992px) {
    .atv-page .tour-intro-text {
        padding-bottom: 0;
    }

    .atv-page .atv-featured-card {
        grid-template-columns: 1fr;
    }

    .atv-page .atv-featured-card .card-image {
        min-height: 0;
    }
}

.tour-intro-section {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

.container-small {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-small p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--color-secondary);
}

.tour-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-title-blue {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.tour-featured-card-section {
    padding: 5rem 0;
}

.bg-dark {
    background-color: #111319;
}

.tour-featured-card {
    background-color: #ffffff !important;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
    color: #1e2530 !important;
}

.tour-featured-card .card-image {
    width: 100%;
    height: 100%;
}

.tour-featured-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-featured-card .card-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-quick-specs {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}

.tour-quick-specs p {
    margin-bottom: 0.75rem;
    color: #1e2530 !important;
}

.tour-quick-specs p strong {
    color: #1e2530 !important;
}

.tour-details-section {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

.tour-details-text-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Alternating Card layout for Tortuga Island Tour */
.tour-alternating-section {
    padding: 5rem 0;
}

.tour-alt-stack {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.tour-alt-card {
    background-color: #ffffff !important;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    color: #1e2530 !important;
}

.tour-alt-card.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.tour-alt-card .card-image {
    width: 100%;
    height: 400px;
}

.tour-alt-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-alt-card .card-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-feature-list {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.tour-feature-list li {
    display: flex;
    gap: 0.65rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.tour-feature-list li::before {
    content: "";
    flex: 0 0 0.5rem;
    height: 0.5rem;
    margin-top: 0.48rem;
    border-radius: 50%;
    background: var(--color-accent);
}

.tour-highlights-summary {
    max-width: 850px;
    margin: 0 auto 4rem;
    padding: 2rem;
    border-radius: var(--radius-md);
    background: #ffffff;
}

.tour-highlights-summary > p {
    margin: 0;
    color: var(--color-text-dark);
    font-size: 1.08rem;
    line-height: 1.7;
}

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

.styled-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1e2530 !important;
}

.styled-list li::before {
    content: "•";
    color: var(--color-primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0.5rem;
    top: -0.25rem;
}

.lead-text {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Call to Action Banner */
.tour-cta-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 2rem;
    color: var(--color-light);
}

.tour-cta-banner h2 {
    font-family: var(--font-headings);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.tour-cta-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    color: #ffffff;
    opacity: 0.96;
    line-height: 1.7;
}

/* Responsive Custom Layout elements */
@media (max-width: 992px) {
    .tour-hero {
        min-height: 280px;
        display: grid;
        place-items: center;
        padding: 5rem 1.25rem;
        text-align: center;
    }

    .tour-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tour-featured-card,
    .tour-alt-card,
    .tour-alt-card.reverse {
        grid-template-columns: 1fr;
    }

    .tour-alt-card .card-image,
    .tour-featured-card .card-image {
        height: 250px;
    }

    .tour-alt-card.reverse .card-image {
        order: -1; /* Keep image on top in mobile */
    }

    .tour-featured-card .card-content,
    .tour-alt-card .card-content {
        padding: 1.5rem;
    }

    .tour-cta-banner h2 {
        font-size: 2rem;
    }
}
