/* =========================================
   SEA PLANE PAGE STYLES - UNIQUE CLASSES
   ========================================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Playfair Display", serif;
    margin: 0;
    padding: 0;
}

.seaplane-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   BREADCRUMBS
   ========================================= */
.seaplane-breadcrumbs {
    display: flex;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 5px;
}

.seaplane-crumb {
    position: relative;
    background: #4dd0e1;
    color: #2c2c2c;
    padding: 8px 20px 8px 30px;
    font-size: 0.9rem;
    text-decoration: none;
    margin-right: 5px;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
    transition: opacity 0.3s ease;
}

.seaplane-crumb:hover {
    opacity: 0.85;
}

.seaplane-crumb-home {
    padding-left: 20px;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}

.seaplane-crumb-current {
    background: #4dd0e1;
    opacity: 0.8;
    cursor: default;
}

/* =========================================
   HERO SECTION (MAIN CONTENT)
   ========================================= */
.seaplane-hero-section {
    padding: 40px 0 60px;
    background: #f5f5f5;
}

.seaplane-main-title {
    font-size: 2.8rem;
    color: #7ec850;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: 3px;
}

.seaplane-section-title {
    font-size: 2.2rem;
    color: #696969;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 2px;
}

.seaplane-content-wrapper {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
}

.seaplane-hero-heading {
    font-size: 2rem;
    color: #6ec1e4;
    margin-bottom: 30px;
    font-weight: 600;
}

.seaplane-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}

.seaplane-hero-text {
    padding: 0;
}

.seaplane-hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
}

.seaplane-hero-description:last-child {
    margin-bottom: 0;
}

.seaplane-bottom-description {
    margin-top: 30px;
    width: 100%;
}

.seaplane-description-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
}

.seaplane-description-text:last-of-type {
    margin-bottom: 30px;
}

.seaplane-enquire-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.seaplane-enquire-btn {
    display: inline-block;
    background: #ec3335;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(236, 51, 53, 0.3);
}

.seaplane-enquire-btn:hover {
    background: #d02c2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 51, 53, 0.4);
}

.seaplane-enquire-btn-large {
    font-size: 1.2rem;
    padding: 15px 40px;
}

/* =========================================
   SLIDESHOW COMPONENTS
   ========================================= */
.seaplane-hero-slider {
    width: 100%;
    position: relative;
}

.seaplane-slideshow-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.seaplane-hero-slider .seaplane-slideshow-wrapper {
    height: 450px;
}

.seaplane-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.seaplane-slide-active {
    opacity: 1;
}

.seaplane-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.seaplane-dot {
    width: 12px;
    height: 12px;
    background: #cccccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.seaplane-dot:hover {
    background: #999999;
}

.seaplane-dot-active {
    background: #555555;
    transform: scale(1.2);
}

/* =========================================
   DESCRIPTION SECTION
   ========================================= */
.seaplane-description-section {
    padding: 50px 0;
    background: #f9f9f9;
}

.seaplane-description-content {
    max-width: 900px;
    margin: 0 auto;
}

.seaplane-description-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
}

.seaplane-description-text:last-child {
    margin-bottom: 0;
}

/* =========================================
   COMBINED SECTION (MAP + VIDEO SIDE BY SIDE)
   ========================================= */
.seaplane-combined-section {
    padding: 60px 0;
    background: #ffffff;
}

.seaplane-combined-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.seaplane-map-column,
.seaplane-video-column {
    width: 100%;
}

.seaplane-routes-map {
    width: 100%;
    display: flex;
    justify-content: center;
}

.seaplane-map-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.seaplane-video-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.seaplane-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================================
   TABLET STYLES (768px - 1024px)
   ========================================= */
@media (max-width: 1024px) {
    .seaplane-page-container {
        padding: 0 30px;
    }

    .seaplane-breadcrumbs {
        margin-top: 90px;
    }

    .seaplane-main-title {
        font-size: 2.3rem;
    }

    .seaplane-section-title {
        font-size: 2rem;
    }

    .seaplane-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .seaplane-content-wrapper {
        padding: 30px;
    }

    .seaplane-hero-slider .seaplane-slideshow-wrapper {
        height: 400px;
    }

    .seaplane-routes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .seaplane-combined-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .seaplane-routes-enquire {
        justify-content: center;
    }
}

/* =========================================
   MOBILE STYLES (max-width: 767px)
   ========================================= */
@media (max-width: 767px) {
    .seaplane-page-container {
        padding: 0 15px;
    }

    .seaplane-breadcrumbs {
        margin-top: 80px;
        margin-bottom: 15px;
    }

    .seaplane-crumb {
        font-size: 0.75rem;
        padding: 6px 15px 6px 20px;
    }

    .seaplane-crumb-home {
        padding-left: 15px;
    }

    .seaplane-hero-section {
        padding: 30px 0 40px;
    }

    .seaplane-content-wrapper {
        padding: 20px;
    }

    .seaplane-main-title {
        font-size: 2rem;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }

    .seaplane-section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    .seaplane-hero-slider .seaplane-slideshow-wrapper {
        height: 300px;
    }

    .seaplane-hero-text {
        padding: 0;
    }

    .seaplane-hero-heading {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .seaplane-hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .seaplane-description-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .seaplane-combined-section {
        padding: 40px 0;
    }

    .seaplane-enquire-wrapper {
        justify-content: center;
    }

    .seaplane-map-img {
        max-width: 100%;
    }

    .seaplane-enquire-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .seaplane-enquire-btn-large {
        padding: 12px 30px;
        font-size: 1.1rem;
    }

    .seaplane-slider-dots {
        gap: 8px;
        margin-top: 15px;
    }

    .seaplane-dot {
        width: 10px;
        height: 10px;
    }
}

/* =========================================
   SMALL MOBILE (max-width: 480px)
   ========================================= */
@media (max-width: 480px) {
    .seaplane-main-title {
        font-size: 1.7rem;
    }

    .seaplane-section-title {
        font-size: 1.5rem;
    }

    .seaplane-hero-slider .seaplane-slideshow-wrapper {
        height: 250px;
    }

    .seaplane-hero-heading {
        font-size: 1.4rem;
    }

    .seaplane-hero-description {
        font-size: 0.95rem;
    }

    .seaplane-description-text {
        font-size: 0.9rem;
    }

    .seaplane-enquire-btn {
        padding: 8px 20px;
        font-size: 0.95rem;
    }

    .seaplane-enquire-btn-large {
        padding: 10px 25px;
        font-size: 1rem;
    }
}