html, body {
    margin: 0;
    padding: 0;
}
/* ================= BASE ================= */

*{margin:0;padding:0;box-sizing:border-box;font-family:Arial, sans-serif;}
body{color:#1a1a1a;line-height:1.6;background:#fff;}
a{text-decoration:none;}
.container{width:90%;max-width:1100px;margin:auto;}

/* ================= HEADER ================= */
.main-header {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    background: #0a2540;
    color: white;
    padding: 10px 20px;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.title h1 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.2;
     word-break: break-word;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.menu a:hover {
    color: #ff7a00;
}

.cta {
    justify-self: end;
}

.btn {
    background: #f59e0b;
    color: #000;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}
/* ================= HERO ================= */
.hero {
    position: relative;
    overflow: hidden;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    height: var(--hero-height, 90vh);
    text-align: center;
    padding: 20px;
    background-color: #000;

    background-image: var(--hero-image);
}

/* Overlay */
.hero-overlay {
    position: absolute;
    left: 50%;
    top: var(--hero-overlay-top, 25%);
    bottom: var(--hero-overlay-bottom, auto);

    transform: translateX(-50%);

    background: rgba(0, 0, 0, 0.45);
    padding: var(--hero-overlay-padding, 20px 30px);
    border-radius: 12px;
    color: white;

    max-width: var(--hero-overlay-max-width, 700px);
    width: calc(100% - 40px);
}

/* Typography */
.hero h2 {
    font-size: var(--hero-h2-size, 35px);
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: -1px -1px 1px rgba(0,0,0,0.3),
                 1px 1px 1px rgba(0,0,0,0.3),
                 0 0 10px #000;
}

.hero p {
    font-size: var(--hero-p-size, 18px);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .hero {
        height: var(--hero-height-mobile, 500px);
        background-image: var(--hero-image-mobile, var(--hero-image));
    }

    .hero-overlay {
        top: var(--hero-overlay-top-mobile, 23%);
        bottom: auto;
        padding: var(--hero-overlay-padding-mobile, 12px 16px);
        max-width: var(--hero-overlay-max-width-mobile, 90%);
    }

    .hero h2 {
        font-size: var(--hero-h2-size-mobile, 20px);
    }

    .hero p {
        font-size: var(--hero-p-size-mobile, 13px);
    }
}

/* ================= SECTIONS ================= */
.section {
    padding: 20px 0;
}

.section h2 {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.section p {
    margin-bottom: 8px;
    line-height: 1.6;
}
.center-section {
    text-align: center;
}

.center-section p {
    max-width: 700px;
    margin: 0 auto 10px auto;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .section {
        padding: 30px 0;
    }

    .section h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }
}

/* ================= CARDS ================= */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:15px;}
.card{
    background:#f7f7f7;
    padding:15px;
    border-radius:10px;
}
.card strong{display:block;margin-bottom:5px;}

/* ================= CTA BOX ================= */
.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: auto;
}

.cta-box h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.cta-sub {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    font-size: 14px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

/* PRIMARY BUTTON */
.cta-primary {
    background: #f59e0b;
    color: #000;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: bold;
    display: inline-block;
}

.cta-primary:hover {
    background: #d97706;
}

/* SECONDARY BUTTON */
.cta-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    display: inline-block;
}

.cta-secondary:hover {
    background: #fff;
    color: #0f172a;
}

.cta-note {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .cta-box h2 {
        font-size: 22px;
    }

    .cta-highlights {
        flex-direction: column;
        gap: 8px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
/* ================= overview ================= */
.title-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.title-wrap h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #0077cc;
    margin: 0 auto 10px auto;
    border-radius: 5px;
}

.title-wrap p {
    font-size: 16px;
    color: #64748b;
}
.overview {
    padding: 40px 0;
    background: #f8fafc;
    text-align: center;
}

.overview-box {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.overview h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #0f172a;
}

.overview .lead {
    font-size: 16px;
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.6;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-items: center;
}

.overview-item {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 10px;
   text-align: center;
    width: 100%;
    max-width: 250px;
}

.overview-item h3 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #0f172a;
}

.overview-item p {
    font-size: 14px;
    color: #334155;
}
.price-anchor {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f1f5f9;
    border-radius: 999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.price-icon {
    font-size: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-box {
        padding: 20px;
    }

    .overview h2 {
        font-size: 22px;
    }
}

.mid-cta {
    padding: 20px 0;
    background: #f8fafc;
}

.mid-cta-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    max-width: 850px;
    margin: auto;
}

.mid-cta-box h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #0f172a;
}

.mid-cta-box p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mid-cta-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

/* Primary button */
.cta-check {
    background: #0077cc;
    color: #fff;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: bold;
    display: inline-block;
}

.cta-check:hover {
    background: #005fa3;
}

.mid-note {
    font-size: 13px;
    color: #64748b;
}

@media (max-width: 768px) {
    .mid-cta-box {
        padding: 25px;
    }

    .mid-cta-box h2 {
        font-size: 20px;
    }
}
/* ================= experience ================= */
.experience {
    padding: 40px 0;
    background: #ffffff;
    text-align: center;
}

.experience h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.experience .sub {
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 15px;
    line-height: 1.6;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    justify-items: center;
    align-items: stretch;
    margin-top: 20px;
}

.exp-card {
    background: #f8fafc;
    padding: 22px;
    border-radius: 14px;
    text-align: center;
    max-width: 320px;
    width: 100%;
    transition: all 0.25s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    border: 1px solid transparent;
}

.exp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
    border: 1px solid #e2e8f0;
}

.exp-card:hover .icon {
    transform: scale(1.15);
}

.icon {
    font-size: 30px;
    margin-bottom: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.exp-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #0f172a;
}

.exp-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

/* ===== PHOTO CARD VERSION ONLY ===== */

.experience-photo .exp-card {
    padding: 0;
    overflow: hidden;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.experience-photo .exp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* IMAGE */
.experience-photo .exp-icon {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.experience-photo .exp-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* IMAGE ZOOM */
.experience-photo .exp-card:hover .exp-icon img {
    transform: scale(1.08);
}

/* TEXT */
.experience-photo .exp-card h3,
.experience-photo .exp-card p {
    padding-left: 18px;
    padding-right: 18px;
}

.experience-photo .exp-card h3 {
    margin-top: 15px;
    font-size: 18px;
}

.experience-photo .exp-card p {
    margin-bottom: 18px;
    font-size: 14px;
    color: #475569;
}
.experience-photo .exp-card::after {
    content: "";
    display: block;
    height: 3px;
    background: #0077cc;
    width: 40px;
    margin: 0 18px 18px 18px;
    border-radius: 2px;
}
.experience-photo .exp-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.08);
}

.experience-photo .exp-icon {
    position: relative;
}
/* MOBILE */
@media (max-width: 900px) {
    .exp-grid {
        grid-template-columns: 1fr;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .exp-card {
        text-align: center;
    }
    .experience-photo .exp-icon {
        height: 160px;
}
}
/* altbox */
.alt-tour {
    padding: 20px 0;
    background: #f8fafc;
}

.alt-box {
    text-align: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    max-width: 800px;
    margin: auto;
}

.alt-box h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0f172a;
}

.alt-box p {
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.6;
}

.alt-btn {
    display: inline-block;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid #0077cc;
    color: #0077cc;
    border-radius: 10px;
    font-weight: bold;
}

.alt-btn:hover {
    background: #0077cc;
    color: #fff;
}
/* ================= expect ================= */
.expect-section {
    padding: 50px 0;
    background: #f8fafc; /* light gray so it separates from CTA + FAQ */
}

.expect-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.expect-box h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #0f172a;
    text-align: center;
}

.expect-box p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 14px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
    .expect-box {
        padding: 22px;
    }

    .expect-box h2 {
        font-size: 20px;
    }
}

/* ================= FAQ ================= */

.faq {
    padding: 60px 20px;
    background: #f5f7fa;
    text-align: center;
}

.faq h2 {
    margin-bottom: 30px;
    color: #0a2540;
}

/* ITEM */
.faq-item {
    max-width: 800px;
    margin: 10px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: left;
}

/* QUESTION BUTTON */
.faq-question {
    width: 100%;
    padding: 15px 20px;
    border: none;
    background: none;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    color: #0a2540;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    margin: 10px 0 15px;
    font-size: 14px;
    color: #555;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ICON (optional visual cue) */
.faq-question::after {
    content: "+";
    font-size: 18px;
    transition: 0.3s;
}

.faq-item.active .faq-question::after {
    content: "−";
}


/* ================= FOOTER ================= */
.footer {
    background: #2c2f36;
    color: #ddd;
}

.footer-top {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 21px;
    font-weight: bold;
    padding: 15px;
    border-bottom: 1px solid #444;
    flex-wrap: wrap;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.footer-col {
    max-width: 300px;
    text-align: center;
    line-height: 1.6;
}

.footer-col h3 {
    margin-bottom: 10px;
        margin-top: 10px;
}

.footer-col:nth-child(1) h3 { color: #ff5c7a; }
.footer-col:nth-child(2) h3 { color: #ffc107; }
.footer-col:nth-child(3) h3 { color: #00d084; }

.footer-col a {
    color: #4da3ff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #444;
    font-size: 13px;
}
.social {
    display: inline-flex;
    width: 26px;
    height: 26px;
    margin: 0 6px;
}

.social img {
    width: 100%;
    height: 100%;
    display: block;
        filter: brightness(0) invert(1);
}

/* ================= MOBILE HEADER ================= */

@media (max-width: 900px) {
    .main-header {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo hamburger"
            "title title"
            "cta cta";
    }

    .logo { grid-area: logo; }
    .title { grid-area: title; text-align: center; }
    .cta { grid-area: cta; justify-self: center; }

    .hamburger {
        display: block;
        grid-area: hamburger;
        justify-self: end;
    }

    .menu {
        display: none;
        flex-direction: column;
        grid-column: 1 / -1;
        background: #0a2540;
        padding: 10px 0;
        text-align: center;
    }

    .menu.show {
        display: flex;
    }

        .cta {
        grid-area: cta;
        justify-self: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }

}

/* ================= MOBILE FOOTER ================= */
@media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-col {
        width: 100%;
        max-width: 320px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
}