* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
body {
    background-color: #F0FAFA;
    color: #161616;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.header {
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.slide-header {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

nav {
    display: flex;
    padding: 15px 6%;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 999;
    border-bottom: 3px solid transparent;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
nav img {
    width: 82px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 6px rgba(254, 209, 0, 0.3));
    transition: filter 0.3s ease;
}
.nav-links {
    flex: 1;
    text-align: left;
}
.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.nav-links ul li::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #FED100;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.nav-links ul li:hover::after {
    transform: scaleX(1);
}
nav.scrolled {
    background: transparent;
    width: 90%;
    left: 5%;
    top: 15px;
    padding: 10px 4%;
    border-radius: 50px;
    border-bottom: 2px solid #00A859;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
nav.scrolled::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
    z-index: -1;
}
nav.scrolled .nav-links ul li a {
    color: #121212;
}
nav.scrolled > .fas {
    color: #121212;
}
nav.scrolled .nav-links ul li::after {
    background: #FED100;
}
.nav-links ul li a:hover {
    color: #009B3A;
}
nav .fas {
    display: none;
}

@media(max-width: 950px) {
    .nav-links ul li {
        display: block;
        margin: 10px 0;
    }
    .nav-links {
        position: fixed;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 9999;
        padding-top: 60px;
        transition: 1s;
    }
    nav .fas {
        display: block;
        color: #FED100 !important;
        margin: 10px;
        font-size: 30px;
        cursor: pointer;
    }
    nav > .fas {
        color: #FED100 !important;
        font-size: 30px;
        display: block;
    }
    nav.scrolled > .fas {
        color: #FED100 !important;
        font-size: 30px;
        display: block;
    }
    .nav-links .fa-times {
        position: absolute;
        top: 25px;
        left: 25px;
        color: #ffffff !important;
        font-size: 24px;
    }
    .nav-links ul li a {
        color: #ffffff !important;
        font-size: 18px;
        display: block;
    }
    .nav-links ul {
        padding: 30px;
    }
    .nav-links .theme-switch-wrapper {
        margin-top: 0;
        margin-left: 0;
    }
}

h1{
    font-size: 46px;
    font-weight: 600;
}
h2 {
    color: #00A859;
}
h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #FED100;
    margin: 15px auto 0;
    border-radius: 2px;
}
html.dark-mode h2 {
    color: #66bb6a;
}
p{
    color: #777;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    font-size: 28px;
}

/* Footer */

.footer{
    width: 100%;
    text-align:center;
    padding: 30px 0;
    background: #121212;
    border-top: 4px solid #00A859;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
}
.footer p{
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
}
.icons .fas,
.icons .fab {
    color: #FED100;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
    font-size: 22px;
}
.policies {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
}
.policies a{
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    flex: 1;
    text-align: center;
}


/* sub-header */

.sub-header {
    height: 50vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}

.sub-header h1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    margin: 0;
}

@media(max-width:700px){
    .sub-header h1{
        font-size: 48px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
    }
}

.terms-and-conditions{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.privacy-policy{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.slide-1h,.slide-2h,.slide-3h,.slide-4h {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}
.slide-1h {
    animation: fade1 15s infinite;
}
.slide-2h {
    animation: fade2 15s infinite;
}
.slide-3h {
    animation: fade3 15s infinite;
}
.slide-4h {
    animation: fade4 15s infinite;
}
@keyframes fade1 {
    0%{opacity: 1;}
    25%{opacity: 0;}
    50%{opacity: 0;}
    75%{opacity: 0;}
    100%{opacity: 1;}
}
@keyframes fade2 {
    0%{opacity: 0;}
    25%{opacity: 1;}
    50%{opacity: 0;}
    75%{opacity: 0;}
    100%{opacity: 0;}
}
@keyframes fade3 {
    0%{opacity: 0;}
    25%{opacity: 0;}
    50%{opacity: 1;}
    75%{opacity: 0;}
    100%{opacity: 0;}
}
@keyframes fade4 {
    0%{opacity: 0;}
    25%{opacity: 0;}
    50%{opacity: 0;}
    75%{opacity: 1;}
    100%{opacity: 0;}
}

/* Hero wave divider */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
    pointer-events: none;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}
.hero-wave path {
    fill: #E0F7FA;
}
html.dark-mode .hero-wave path {
    fill: #121212;
}

.theme-switch-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.theme-switch {
    display: inline-block;
    height: 40px;
    position: relative;
    width: 80px;
}

.theme-switch input {
    display: none;
}

.toggle-slider {
    background-color: #87CEEB;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    overflow: hidden;
}

/* Sun thumb */
.toggle-slider:before {
    content: '';
    background: #FFD700;
    box-shadow: 0 0 10px 4px rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    bottom: 9px;
    height: 22px;
    left: 7px;
    position: absolute;
    transition: .4s;
    width: 22px;
    z-index: 2;
}

/* Island silhouette at horizon */
.toggle-slider:after {
    content: '🏝️';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

/* Night sky track */
input:checked + .toggle-slider {
    background-color: #0d1b2a;
}

/* Crescent moon thumb — inset shadow renders crescent cleanly within the circle boundary */
input:checked + .toggle-slider:before {
    background: transparent;
    box-shadow: inset -6px 0px 0px 1px #fffde7;
    transform: translateX(44px);
}

.toggle-slider.round {
    border-radius: 40px;
}

.toggle-slider.round:before {
    border-radius: 50%;
}

/* Dark Mode Colors */

html.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

html.dark-mode body {
    background-color: #121212;
    color: #e0e0e0;
}

html.dark-mode h1,
html.dark-mode h2,
html.dark-mode h3,
html.dark-mode h4 {
    color: #ffffff;
}

html.dark-mode p {
    color: #ababab;
}

html.dark-mode .footer {
    background: #1A1A1A;
}

html.dark-mode nav.scrolled {
    background: transparent;
    border-bottom: none;
}
html.dark-mode nav.scrolled::before {
    background: rgba(18, 18, 18, 0.85);
}
html.dark-mode nav.scrolled .nav-links ul li a {
    color: #ffffff;
}
html.dark-mode nav.scrolled > .fas {
    color: #ffffff;
}
html.dark-mode .nav-links ul li a {
    color: #fff;
}
html.dark-mode nav .fas {
    color: #fff;
}
html.dark-mode nav img {
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 8px rgba(254, 209, 0, 0.4));
}

html.dark-mode .policies a {
    color: #66bb6a;
}

@media (min-width: 951px) {
    .nav-links ul {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .theme-switch-wrapper {
        margin-left: 0;
    }
}

/* --- Click-to-Call Nav Button --- */
.nav-phone-btn {
    display: inline-block;
    background: #FED100;
    color: #121212;
    padding: 9px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid #FED100;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.nav-phone-btn:hover {
    background: #009B3A;
    border-color: #009B3A;
    color: #fff;
}
nav.scrolled .nav-phone-btn {
    background: #FED100;
    color: #121212;
    border-color: #FED100;
}
nav.scrolled .nav-phone-btn:hover {
    background: #009B3A;
    border-color: #009B3A;
    color: #fff;
}
html.dark-mode nav.scrolled .nav-phone-btn {
    background: #FED100;
    color: #121212;
    border-color: #FED100;
}
html.dark-mode nav.scrolled .nav-phone-btn:hover {
    background: #009B3A;
    border-color: #009B3A;
    color: #fff;
}
@media (max-width: 950px) {
    .nav-phone-btn {
        display: none;
    }
}

/* --- Trust Badges Strip --- */
.trust-strip {
    width: 100%;
    background: #fff;
    padding: 22px 6%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 3px solid #00A859;
}
.trust-item {
    flex: 1;
    text-align: center;
    padding: 8px 15px;
    border-right: 1px solid #E9ECEF;
}
.trust-item:last-child {
    border-right: none;
}
.trust-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #161616;
}
html.dark-mode .trust-strip {
    background: #1A1A1A;
}
html.dark-mode .trust-item {
    border-right-color: #333333;
}
html.dark-mode .trust-label {
    color: #e0e0e0;
}
@media (max-width: 700px) {
    .trust-strip {
        flex-direction: column;
        padding: 20px 6%;
    }
    .trust-item {
        border-right: none;
        border-bottom: 1px solid #E9ECEF;
        padding: 14px 10px;
        width: 100%;
    }
    .trust-item:last-child {
        border-bottom: none;
    }
    html.dark-mode .trust-item {
        border-bottom-color: #333333;
    }
}

.how-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 168, 89, 0.15);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.how-icon .fas {
    color: #00A859;
    font-size: 28px;
}

.why-row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.why-card {
    flex: 1;
    min-width: 0;
    background: #fff;
    padding: 40px 20px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 168, 89, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: 0.5s;
    overflow-wrap: break-word;
    word-break: break-word;
}
.why-card p {
    padding: 0;
    line-height: 1.7;
}
.why-card:hover {
    box-shadow: 0 15px 35px rgba(0, 168, 89, 0.15);
}
.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #121212;
}
html.dark-mode .why-card {
    background: #1A1A1A;
    box-shadow: 0 0 20px 0px rgba(255, 255, 255, 0.05);
}
html.dark-mode .why-card:hover {
    box-shadow: 0 0 20px 0px rgba(255, 255, 255, 0.1);
}
html.dark-mode .why-card h3 {
    color: #ffffff;
}
@media (max-width: 950px) {
    .why-row {
        flex-wrap: wrap;
    }
    .why-card {
        flex: 1 1 calc(50% - 10px);
    }
}
@media (max-width: 700px) {
    .why-row {
        flex-direction: column;
    }
    .why-card {
        flex: 1 1 100%;
    }
}

/* --- Welcome Intro Section --- */
.welcome-outer {
    width: 100%;
    background: linear-gradient(to bottom, #E0F7FA 0%, #F0FAFA 100%);
    padding: 80px 5%;
    box-sizing: border-box;
}
html.dark-mode .welcome-outer {
    background: linear-gradient(to bottom, #0d2a2e 0%, #121212 100%);
}
.welcome-inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.welcome-inner p {
    font-size: 19px;
    line-height: 1.8;
    padding: 0;
    margin-bottom: 16px;
    color: #555;
}
html.dark-mode .welcome-inner p {
    color: #ababab;
}

/* --- Why Choose Us Outer Wrapper --- */
.why-outer {
    width: 100%;
    background: #F0FAFA;
}
html.dark-mode .why-outer {
    background: #1A1A1A;
}
.why-inner {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0 40px;
}
.why-inner .why-card {
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* --- Section Wave Separators --- */
.section-wave-wrap {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.section-wave-wrap svg {
    display: block;
    width: 100%;
    height: 60px;
}
.wave-to-white path {
    fill: #F0FAFA;
}
html.dark-mode .wave-to-white path {
    fill: #1A1A1A;
}
html.dark-mode .wave-to-grey path {
    fill: #121212;
}
@media (max-width: 700px) {
    .welcome-inner {
        width: 90%;
        padding: 60px 0 30px;
    }
    .welcome-inner p {
        font-size: 17px;
    }
    .why-inner {
        width: 90%;
        padding: 60px 0 30px;
    }
}

/* --- About Page CTA --- */
.about-cta {
    width: 100%;
    background: #121212;
    text-align: center;
    padding: 80px 20px;
    margin-top: 80px;
    box-sizing: border-box;
}
.about-cta h1 {
    color: #fff;
    margin-bottom: 30px;
}
html.dark-mode .about-cta {
    background: #1A1A1A;
}
@media (max-width: 700px) {
    .about-cta h1 {
        font-size: 28px;
    }
}

.contact-email-link {
    color: #00A859;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: break-word;
}
.contact-email-link:hover {
    text-decoration: underline;
}
html.dark-mode .contact-email-link {
    color: #66bb6a;
}
/* --- Contact Page: Unified Industrial Layout --- */
.contact-main {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto 80px;
    display: flex;
    align-items: stretch;
    gap: 24px;
}
.contact-panel {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card {
    background: #fff;
    padding: 30px 28px;
    border-radius: 0;
    border: 1px solid rgba(0, 168, 89, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.contact-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.contact-card-icon {
    width: 56px;
    height: 56px;
    background: #00A859;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.contact-card-icon .fas,
.contact-card-icon .fab {
    color: #fff;
    font-size: 22px;
}
.contact-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.contact-card-body h3 {
    text-align: left;
    margin: 0;
    font-size: 20px;
}
.contact-card-body p {
    padding: 0;
    margin: 0;
    line-height: 1.6;
}
.contact-card-body .contact-email-link {
    font-size: 15px;
}
.contact-card-body .solid-btn {
    margin-top: 6px;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 0;
}
.contact-map {
    flex: 1;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-height: 520px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    min-height: 520px;
}
html.dark-mode .contact-card {
    background: #1A1A1A;
    border-color: #00A859;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
html.dark-mode .contact-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
html.dark-mode .contact-map {
    background-color: #1A1A1A;
    border-color: #00A859;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 800px) {
    .contact-main {
        flex-direction: column;
        margin: 40px auto 60px;
        gap: 20px;
    }
    .contact-panel {
        flex: unset;
        width: 100%;
    }
    .contact-form-panel {
        width: 100%;
    }
}
@media (max-width: 700px) {
    .contact-main {
        flex-direction: column;
        margin: 40px auto 60px;
        gap: 20px;
    }
    .contact-map {
        min-height: 300px;
    }
    .contact-map iframe {
        min-height: 300px;
    }
    .contact-card {
        padding: 20px;
    }
}

/* --- Solid Button --- */
.solid-btn {
    display: inline-block;
    background: #FED100;
    color: #121212;
    padding: 12px 34px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(254, 209, 0, 0.3);
}
.solid-btn:hover {
    background: #009B3A;
    color: #fff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}
html.dark-mode .solid-btn {
    background: #FED100;
    color: #121212;
}
html.dark-mode .solid-btn:hover {
    background: #009B3A;
    color: #fff;
}

/* ==============================================
   HOME2 — Industrial / Contact-Page Aesthetic
   ============================================== */

/* Section wrapper */
.home2-section {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}

/* 3-column flex grid */
.home2-grid-3 {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

/* Base card */
.home2-card {
    flex: 1;
    min-width: 0;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 168, 89, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 36px 28px;
    box-sizing: border-box;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home2-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 168, 89, 0.15);
}

/* Icon square */
.home2-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 168, 89, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.home2-card-icon .fa {
    color: #00A859;
    font-size: 24px;
}

/* Card typography overrides */
.home2-card h3 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 12px;
    color: #121212;
}
.home2-card p {
    padding: 0;
    line-height: 1.6;
}

/* Star row in testimonial cards */
.home2-stars {
    margin-bottom: 14px;
}
.home2-stars .fas {
    color: #FED100;
    font-size: 16px;
    margin-right: 1px;
}

/* Testimonial attribution */
.home2-testimonial-attr {
    margin-top: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #161616;
    padding: 0;
}
html.dark-mode .home2-testimonial-attr {
    color: #e0e0e0;
}

/* Hero text box */
.home2-text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    color: #fff;
    text-align: center;
    padding: 44px 48px;
    box-sizing: border-box;
}
.home2-text-box h1 {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.home2-text-box p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    padding: 0;
    margin: 0 0 30px;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
html.dark-mode .home2-text-box p {
    color: rgba(255, 255, 255, 0.9);
}

/* Industrial High-Contrast Buttons */
.home2-btn {
    display: inline-block;
    background: #FED100;
    color: #121212;
    padding: 14px 38px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(254, 209, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.home2-btn:hover {
    background: #009B3A;
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-trust-badges span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0;
    line-height: 1.4;
}

/* Dark mode */
html.dark-mode .home2-card {
    background-color: #1A1A1A;
    border-color: #00A859;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
html.dark-mode .home2-card:hover {
    box-shadow: 0 15px 35px rgba(0, 168, 89, 0.15);
}
html.dark-mode .home2-card h3 {
    color: #ffffff;
}
/* Dark Mode Buttons */
html.dark-mode .home2-btn {
    background: #FED100;
    color: #121212;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
html.dark-mode .home2-btn:hover {
    background: #009B3A;
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* Responsive */
@media (max-width: 950px) {
    .home2-grid-3 {
        flex-direction: column;
    }
}
@media (max-width: 700px) {
    .home2-section {
        padding: 60px 0;
    }
    .home2-grid-3 {
        flex-direction: column;
    }
    .home2-text-box {
        width: 92%;
        left: 50%;
        padding: 24px 20px;
        transform: translate(-50%, -50%);
    }
    .home2-text-box h1 {
        font-size: 48px;
    }
}

/* --- Tour Cards Asymmetric Grid --- */
.tours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
    text-align: left;
}
.destination-hub {
    padding: 80px 5%;
    background: #F0FAFA;
    box-sizing: border-box;
    text-align: center;
}
.destination-hub > p {
    color: #777;
    font-size: 18px;
    padding: 0;
    margin-bottom: 0;
}
html.dark-mode .destination-hub {
    background: #1A1A1A;
}
.tour-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #121212;
    border-radius: 12px;
    border-bottom: 4px solid #FED100;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    aspect-ratio: 3 / 2;
}
.tour-card-large {
    grid-row: span 2;
    aspect-ratio: unset;
}
.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.tour-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    border-color: #009B3A;
}
.tour-card:hover img {
    transform: scale(1.05);
}
.tour-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 24px 24px;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    box-sizing: border-box;
}
.tour-card-info h3 {
    color: #fff;
    text-align: left;
    margin: 0 0 10px;
    font-size: 22px;
}
.tour-details-link {
    display: inline-block;
    color: #00A859;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.tour-card:hover .tour-details-link {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 700px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
    .tour-card-large {
        grid-row: span 1;
        aspect-ratio: 3 / 2;
    }
    .tour-card {
        aspect-ratio: 3 / 2;
    }
}

/* --- Tours Page: Destination Filter Bar --- */
.destination-filter {
    position: sticky;
    top: 70px;
    z-index: 900;
    background: #ffffff;
    border-bottom: 2px solid rgba(0, 168, 89, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    padding: 14px 5%;
    box-sizing: border-box;
}
.destination-filter-inner {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}
.dest-pill {
    display: inline-block;
    background: #ffffff;
    color: #00A859;
    border: 2px solid #00A859;
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease;
}
.dest-pill:hover {
    background: #00A859;
    color: #ffffff;
}
.dest-pill-special {
    background: #FED100;
    color: #121212;
    border-color: #FED100;
}
.dest-pill-special:hover {
    background: #121212;
    color: #FED100;
    border-color: #121212;
}
html.dark-mode .destination-filter {
    background: #1A1A1A;
    border-bottom-color: rgba(0, 168, 89, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
html.dark-mode .dest-pill {
    background: #1A1A1A;
    color: #00A859;
    border-color: #00A859;
}
html.dark-mode .dest-pill:hover {
    background: #00A859;
    color: #ffffff;
}
html.dark-mode .dest-pill-special {
    background: #FED100;
    color: #121212;
    border-color: #FED100;
}
html.dark-mode .dest-pill-special:hover {
    background: #e6be00;
    color: #121212;
}
@media (max-width: 700px) {
    .destination-filter {
        top: 0;
        padding: 12px 4%;
    }
    .dest-pill {
        font-size: 13px;
        padding: 6px 14px;
    }
}

/* --- Tours Page: Section Layout --- */
.tours-section {
    padding: 80px 5%;
    box-sizing: border-box;
    scroll-margin-top: 140px;
}
.tours-section-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}
.tours-section h1 {
    margin-bottom: 8px;
}
.tours-section-inner > p {
    margin-bottom: 0;
    padding: 0;
}
.tours-section-white {
    background: #ffffff;
}
.tours-section-mint {
    background: #F0FAFA;
}
.tours-section-special {
    background: #F4F6F6;
    border-top: 4px solid #FED100;
}
html.dark-mode .tours-section-white {
    background: #1A1A1A;
}
html.dark-mode .tours-section-mint {
    background: #121212;
}
html.dark-mode .tours-section-special {
    background: #1A1A1A;
    border-top-color: #FED100;
}
@media (max-width: 700px) {
    .tours-section {
        padding: 60px 5%;
    }
}

/* --- Tours Page: Full Grid & Card Overrides --- */
.full-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
    text-align: left;
}
.full-tours-grid .tour-card {
    height: 380px;
}
@media (max-width: 950px) {
    .full-tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .full-tours-grid {
        grid-template-columns: 1fr;
    }
    .full-tours-grid .tour-card {
        height: 300px;
    }
}

/* --- Tour Price Badge --- */
.tour-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FED100;
    color: #121212;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}
.tour-price-badge.contact-pricing {
    background: #00A859;
    color: #ffffff;
}

/* --- Tour Card Subtitle (Special Packages) --- */
.tour-card-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 300;
    margin: 0 0 8px;
    padding: 0;
    line-height: 1.4;
}

/* --- Special Packages Section Header --- */
.special-pkg-header {
    margin-bottom: 10px;
}
.special-pkg-star {
    font-size: 28px;
    color: #FED100;
    margin-bottom: 12px;
    display: block;
}

/* --- Booking Section --- */
.booking-section {
    width: 100%;
    padding: 80px 0 100px;
    background: #F0FAFA;
}
html.dark-mode .booking-section {
    background: #1A1A1A;
}
.booking-inner {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}
.booking-inner h1 {
    margin-bottom: 16px;
}
.booking-inner > p {
    max-width: 620px;
    margin: 0 auto 48px;
    padding: 0;
}
#fareharbor-booking-widget {
    min-height: 500px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}
html.dark-mode #fareharbor-booking-widget {
    background: #1A1A1A;
    border-color: #00A859;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 700px) {
    .booking-section {
        padding: 60px 0 80px;
    }
    .booking-inner {
        width: 90%;
    }
    #fareharbor-booking-widget {
        min-height: 400px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
}

/* --- Certification Strip --- */
.certification-outer {
    width: 100%;
    background: #ffffff;
    padding: 60px 5%;
    box-sizing: border-box;
    text-align: center;
    border-top: 1px solid rgba(0, 168, 89, 0.1);
}
html.dark-mode .certification-outer {
    background: #1A1A1A;
    border-top-color: rgba(0, 168, 89, 0.2);
}
.certification-strip {
    max-width: 900px;
    margin: 0 auto;
}
.certification-strip h2 {
    margin-bottom: 40px;
}
.certification-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.certification-item img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}
.certification-item img:hover {
    opacity: 0.85;
}
.certification-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #555;
}
html.dark-mode .certification-item span {
    color: #ababab;
}
@media (max-width: 700px) {
    .certification-outer {
        padding: 50px 5%;
    }
    .certification-logos {
        gap: 40px;
    }
    .certification-item img {
        height: 60px;
    }
}

/* --- FAQ Section --- */
.faq-section {
    width: 100%;
    background: #F0FAFA;
    padding: 80px 5%;
    box-sizing: border-box;
}
html.dark-mode .faq-section {
    background: #1A1A1A;
}
.faq-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.faq-inner h1 {
    margin-bottom: 40px;
}
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 168, 89, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, border-left-width 0.3s ease;
    overflow: hidden;
}
.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.faq-item[open] {
    box-shadow: 0 8px 30px rgba(0, 168, 89, 0.14);
    border-color: rgba(0, 168, 89, 0.4);
    border-left: 3px solid #00A859;
}
.faq-question {
    padding: 20px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #121212;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #00A859;
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.3s ease;
}
.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 24px 20px;
    animation: faqFadeIn 0.25s ease forwards;
}
.faq-answer p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 10px 0;
}
.faq-answer p:last-child {
    margin-bottom: 0;
}
@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
}
html.dark-mode .faq-item {
    background: #242424;
    border-color: rgba(0, 168, 89, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
html.dark-mode .faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
html.dark-mode .faq-item[open] {
    border-color: rgba(0, 168, 89, 0.45);
    border-left: 3px solid #00A859;
    box-shadow: 0 8px 30px rgba(0, 168, 89, 0.14);
}
html.dark-mode .faq-question {
    color: #ffffff;
}
html.dark-mode .faq-answer p {
    color: #c0c0c0;
}
@media (max-width: 700px) {
    .faq-section {
        padding: 60px 5%;
    }
    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }
    .faq-answer {
        padding: 0 20px 18px;
    }
    .faq-answer p {
        font-size: 15px;
    }
}

/* --- How to Book Section --- */
.how-to-book {
    width: 100%;
    background: #F4F6F6;
    padding: 80px 5%;
    box-sizing: border-box;
    text-align: center;
}
.how-to-book h1 {
    margin-bottom: 50px;
}
.how-to-book-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
}
.how-to-book-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 0;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.how-to-book-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}
.htb-badge {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #FED100;
    color: #121212;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 4px 14px rgba(254, 209, 0, 0.45);
}
.how-to-book-card h3 {
    font-size: 17px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #121212;
    margin-bottom: 12px;
}
.how-to-book-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
}
html.dark-mode .how-to-book {
    background: #121212;
}
html.dark-mode .how-to-book-card {
    background: #1A1A1A;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
html.dark-mode .how-to-book-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
html.dark-mode .how-to-book-card h3 {
    color: #ffffff;
}
html.dark-mode .how-to-book-card p {
    color: #ababab;
}
@media (max-width: 950px) {
    .how-to-book-row {
        flex-wrap: wrap;
    }
    .how-to-book-card {
        flex: 1 1 calc(50% - 12px);
    }
}
@media (max-width: 580px) {
    .how-to-book-row {
        flex-direction: column;
    }
    .how-to-book-card {
        flex: 1 1 100%;
    }
}

/* --- About Page: Certification Cards --- */
.about-cert-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.about-cert-card {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 40px 28px;
}
.about-cert-gold {
    border-top: 4px solid #FED100;
}
.about-cert-green {
    border-top: 4px solid #00A859;
}
.about-cert-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}
html.dark-mode .about-cert-card {
    background: #1A1A1A;
}
@media (max-width: 700px) {
    .about-cert-row {
        flex-direction: column;
        max-width: 100%;
    }
}

/* --- About Page: Meet the Team --- */
.meet-the-team {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 100px 5%;
    background: linear-gradient(to bottom, #E0F7FA 0%, #F0FAFA 100%);
    box-sizing: border-box;
}
.meet-the-team-text {
    flex: 1;
    min-width: 0;
}
.meet-the-team-text h1 {
    font-size: 40px;
    color: #121212;
    margin-bottom: 20px;
}
.meet-the-team-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    padding: 0;
    margin-bottom: 16px;
}
.meet-the-team-image {
    flex: 1;
    min-width: 0;
}
.meet-the-team-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}
html.dark-mode .meet-the-team {
    background: linear-gradient(to bottom, #0d2a2e 0%, #121212 100%);
}
html.dark-mode .meet-the-team-text h1 {
    color: #ffffff;
}
html.dark-mode .meet-the-team-text p {
    color: #ababab;
}
@media (max-width: 800px) {
    .meet-the-team {
        flex-direction: column;
        padding: 60px 5%;
    }
}
@media (max-width: 700px) {
    .meet-the-team {
        padding: 50px 5%;
    }
    .meet-the-team-text h1 {
        font-size: 32px;
    }
}

/* --- About Page: Memory Gallery --- */
.memory-gallery {
    padding: 80px 5%;
    background: #ffffff;
    box-sizing: border-box;
    text-align: center;
}
.memory-gallery h1 {
    margin-bottom: 50px;
}
html.dark-mode .memory-gallery {
    background: #1A1A1A;
}
.memory-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.memory-grid-item {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
}
.memory-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.memory-grid-item:hover img {
    transform: scale(1.03);
}
.memory-grid-item.feature {
    grid-row: 1 / 3;
    aspect-ratio: unset;
}
@media (max-width: 950px) {
    .memory-grid {
        grid-template-columns: 1fr 1fr;
    }
    .memory-grid-item {
        aspect-ratio: 4 / 3;
    }
    .memory-grid-item.feature {
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }
}
@media (max-width: 700px) {
    .memory-grid {
        grid-template-columns: 1fr;
    }
    .memory-grid-item,
    .memory-grid-item.feature {
        aspect-ratio: 4 / 3;
        grid-row: auto;
    }
}

/* --- About Page: Custom Tour CTA --- */
.custom-tour-cta {
    background: #121212;
    padding: 100px 5%;
    text-align: center;
    box-sizing: border-box;
}
.custom-tour-cta h1 {
    color: #ffffff;
    margin-bottom: 20px;
}
.custom-tour-cta p {
    color: #ababab;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.7;
    padding: 0;
}
@media (max-width: 700px) {
    .custom-tour-cta {
        padding: 70px 5%;
    }
    .custom-tour-cta h1 {
        font-size: 34px;
    }
}

/* --- Contact Page --- */
.contact-page-section {
    width: 100%;
    padding: 100px 5%;
    box-sizing: border-box;
    background: #F0FAFA;
}
html.dark-mode .contact-page-section {
    background: #121212;
}
.contact-page-section .contact-main {
    margin: 0 auto;
    align-items: flex-start;
}

/* Gold action button used on contact cards */
.contact-card-btn {
    display: inline-block;
    background: #FED100;
    color: #121212;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(254, 209, 0, 0.25);
}
.contact-card-btn .fas,
.contact-card-btn .fab {
    margin-right: 6px;
    color: #121212;
    font-size: 13px;
}
.contact-card-btn:hover {
    background: #009B3A;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.contact-card-btn:hover .fas,
.contact-card-btn:hover .fab {
    color: #fff;
}

/* Hours line inside location card */
.contact-hours {
    font-weight: 600;
    font-size: 15px !important;
    color: #00A859 !important;
    padding: 0 !important;
    margin-top: 8px;
    line-height: 1.4 !important;
}
html.dark-mode .contact-hours {
    color: #66bb6a !important;
}

/* --- Inquiry Form Panel --- */
.contact-form-panel {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    padding: 50px 44px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}
html.dark-mode .contact-form-panel {
    background: #1A1A1A;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.contact-inquiry-form h2 {
    margin-bottom: 8px;
    text-align: left;
}
.contact-inquiry-form > p {
    padding: 0;
    margin-bottom: 32px;
    color: #777;
    font-size: 16px;
    line-height: 1.5;
}
html.dark-mode .contact-inquiry-form > p {
    color: #ababab;
}

/* Form groups */
.contact-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    flex: 1;
    min-width: 0;
}
.contact-form-row {
    display: flex;
    gap: 20px;
}
.contact-form-group label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #121212;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
html.dark-mode .contact-form-group label {
    color: #e0e0e0;
}
.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #dde3e3;
    background: #F0FAFA;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #121212;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
    resize: vertical;
    border-radius: 0;
    -webkit-appearance: none;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: #00A859;
    box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.12);
    background: #ffffff;
}
html.dark-mode .contact-form-group input,
html.dark-mode .contact-form-group textarea {
    background: #121212;
    border-color: #333;
    color: #e0e0e0;
}
html.dark-mode .contact-form-group input:focus,
html.dark-mode .contact-form-group textarea:focus {
    border-color: #00A859;
    background: #1A1A1A;
    box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.15);
}
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #aaa;
    font-weight: 300;
}

/* Submit button */
.contact-submit-btn {
    display: block;
    width: 100%;
    background: #FED100;
    color: #121212;
    padding: 16px 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(254, 209, 0, 0.3);
    border-radius: 0;
}
.contact-submit-btn:hover {
    background: #009B3A;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* Responsive */
@media (max-width: 800px) {
    .contact-form-panel {
        padding: 40px 28px;
    }
    .contact-form-row {
        flex-direction: column;
        gap: 0;
    }
}
@media (max-width: 700px) {
    .contact-page-section {
        padding: 60px 5%;
    }
    .contact-form-panel {
        padding: 30px 20px;
    }
    .contact-form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ── Social Strip ── */
.social-strip {
    background: #ffffff;
    border-top: 3px solid #00A859;
    border-bottom: 3px solid #00A859;
    padding: 28px 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.social-strip-text {
    font-size: 17px;
    font-weight: 600;
    color: #121212;
    letter-spacing: 0.03em;
}
.social-strip-text span {
    color: #00A859;
}
.social-strip-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.social-strip-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #00A859;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease, transform 0.25s ease;
}
.social-strip-icon i {
    font-size: 24px;
    transition: transform 0.25s ease;
}
.social-strip-icon:hover {
    color: #FED100;
    transform: translateY(-2px);
}
.social-strip-icon:hover i {
    transform: scale(1.15);
}

/* Dark mode — Social Strip */
html.dark-mode .social-strip {
    background: #1A1A1A;
    border-color: #00A859;
}
html.dark-mode .social-strip-text {
    color: #e0e0e0;
}

@media (max-width: 600px) {
    .social-strip {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ── Region Showcase (ocho-rios, etc.) ── */
.region-showcase {
    background: #F0FAFA;
    box-sizing: border-box;
}
html.dark-mode .region-showcase {
    background: #121212;
}
.showcase-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}
.showcase-info {
    flex: 2;
    min-width: 0;
}

/* Display panel */
.showcase-display {
    background: #ffffff;
    border: 1px solid rgba(0, 168, 89, 0.15);
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
html.dark-mode .showcase-display {
    background: #1A1A1A;
    border-color: rgba(0, 168, 89, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.showcase-display h2 {
    color: #121212;
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 0;
}
.showcase-display h2::after {
    display: none;
}
html.dark-mode .showcase-display h2 {
    color: #ffffff;
}
.showcase-display .tour-price-badge {
    position: static;
    display: inline-block;
    margin-bottom: 20px;
}
.showcase-display > p {
    color: #555;
    font-size: 15px;
    line-height: 1.75;
    padding: 0;
    margin: 0;
}
.showcase-display .pricing-breakdown {
    margin: 0;
}
html.dark-mode .showcase-display > p {
    color: #ababab;
}

/* Tab menu */
.tour-tab-menu {
    margin-top: 20px;
    max-height: 380px;
    overflow-y: auto;
    border-radius: 12px;
    border: 1px solid rgba(0, 168, 89, 0.12);
    background: #ffffff;
}
html.dark-mode .tour-tab-menu {
    background: #1A1A1A;
    border-color: rgba(0, 168, 89, 0.2);
}
.tour-tab-menu::-webkit-scrollbar {
    width: 4px;
}
.tour-tab-menu::-webkit-scrollbar-track {
    background: transparent;
}
.tour-tab-menu::-webkit-scrollbar-thumb {
    background: #00A859;
    border-radius: 2px;
}
.tab-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    border-bottom: 1px solid rgba(0, 168, 89, 0.07);
    padding: 14px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
}
.tab-btn:last-child {
    border-bottom: none;
}
.tab-btn:hover {
    color: #00A859;
    background: rgba(0, 168, 89, 0.04);
    border-left-color: rgba(0, 168, 89, 0.35);
}
.tab-btn.active {
    color: #00A859;
    font-weight: 700;
    border-left-color: #00A859;
    background: rgba(0, 168, 89, 0.06);
}
html.dark-mode .tab-btn {
    color: #ababab;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}
html.dark-mode .tab-btn:hover {
    color: #66bb6a;
    background: rgba(0, 168, 89, 0.08);
    border-left-color: rgba(102, 187, 106, 0.4);
}
html.dark-mode .tab-btn.active {
    color: #66bb6a;
    border-left-color: #66bb6a;
    background: rgba(0, 168, 89, 0.1);
}
.tab-price {
    font-size: 12px;
    font-weight: 400;
    color: #aaa;
    white-space: nowrap;
    margin-left: 8px;
    flex-shrink: 0;
}
.tab-btn.active .tab-price {
    color: #00A859;
    font-weight: 600;
}
html.dark-mode .tab-price {
    color: #666;
}
html.dark-mode .tab-btn.active .tab-price {
    color: #66bb6a;
}

/* Image slider */
.showcase-slider {
    flex: 3;
    min-width: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
}
.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}
.slider-img.active {
    opacity: 1;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrow:hover {
    background: rgba(0, 168, 89, 0.85);
    transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 14px; }
.slider-next { right: 14px; }

/* ── Line-chasing hover animation ── */
.showcase-slider::before,
.showcase-slider::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    z-index: 20;
    pointer-events: none;
    box-sizing: border-box;
}
.showcase-slider::before {
    top: 0;
    left: 0;
    border-top: 3px solid #00A859;
    border-right: 3px solid #00A859;
    transition: width 0.25s ease 0s, height 0.25s ease 0.25s;
}
.showcase-slider::after {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid #00A859;
    border-left: 3px solid #00A859;
    transition: width 0.25s ease 0s, height 0.25s ease 0.25s;
}
.showcase-slider:hover::before,
.showcase-slider:hover::after {
    width: 100%;
    height: 100%;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}
.dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

@media (max-width: 950px) {
    .showcase-container {
        flex-direction: column;
    }
    .showcase-slider {
        order: -1;
        flex: none;
        width: 100%;
        aspect-ratio: 4 / 3;
    }
    .showcase-info {
        flex: none;
        width: 100%;
    }
    .showcase-display {
        height: auto;
    }
    .showcase-display .pricing-breakdown {
        margin: 12px 0;
    }
}
@media (max-width: 700px) {
    .showcase-container {
        padding: 60px 5%;
    }
    .showcase-display {
        padding: 28px 24px;
    }
    .showcase-display h2 {
        font-size: 22px;
    }

}
@media (max-width: 480px) {
    .showcase-container {
        padding: 40px 4%;
        gap: 20px;
    }
    .showcase-display {
        padding: 22px 18px;
    }
    .showcase-display h2 {
        font-size: 19px;
    }
    .showcase-slider {
        border-radius: 10px;
    }
    .tour-tab-menu {
        max-height: 300px;
    }
    .tab-btn {
        font-size: 13px;
        padding: 12px 16px;
    }
}

/* ── Pricing Breakdown ── */
.pricing-breakdown {
    margin: 24px 0;
    padding: 20px 24px;
    background: #F4F6F6;
    border-left: 4px solid #00A859;
    border-radius: 0 8px 8px 0;
    box-sizing: border-box;
}
html.dark-mode .pricing-breakdown {
    background: #1A1A1A;
    border-left-color: #66bb6a;
}
.pricing-breakdown h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #00A859;
    margin-bottom: 14px;
}
html.dark-mode .pricing-breakdown h4 {
    color: #66bb6a;
}
.pricing-breakdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-breakdown ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 168, 89, 0.1);
}
.pricing-breakdown ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
html.dark-mode .pricing-breakdown ul li {
    color: #ababab;
    border-bottom-color: rgba(255, 255, 255, 0.06);
}
.pricing-breakdown ul li strong {
    color: #121212;
    font-weight: 600;
}
html.dark-mode .pricing-breakdown ul li strong {
    color: #e0e0e0;
}
