/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px; /* adjust to your header height */
}

/* HEADER */
.header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 80px;
}

/* NAV */
.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 4px;
}

/* UNDERLINE */
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0%;
    height: 2px;
    background: #063b74;

    transition: width 0.4s ease;
}

/* HOVER EFFECT */
.nav-menu a:hover::after {
    width: 100%;
    color: #1e5aa5;
}

/* HAMBURGER BASE */
/* HIDE CHECKBOX */
#menuToggleInput {
    display: none;
}

/* TOGGLE WRAPPER */
.menu-toggle {
    display: none;
}

/* LABEL (clickable area) */
.menu-toggle label {
    position: relative;
    display: block;
    width: 32px;
    height: 24px;
    cursor: pointer;
}

/* MAIN LINE */
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 100%;
    height: 3px;
    background: #063b74;
    position: absolute;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* CENTER LINE */
.menu-toggle span {
    top: 50%;
    transform: translateY(-50%);
}

/* TOP LINE */
.menu-toggle span::before {
    content: "";
    top: -8px;
}

/* BOTTOM LINE */
.menu-toggle span::after {
    content: "";
    top: 8px;
}

/* ANIMATION → CROSS */
#menuToggleInput:checked + span {
    background: transparent;
}

#menuToggleInput:checked + span::before {
    top: 0;
    transform: rotate(45deg);
}

#menuToggleInput:checked + span::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {

    /* LOGO */
    .logo img {
    height: 60px;
    }

    .nav-menu {
        position: absolute;
        top: 100%; /* PERFECT alignment below header */
        left: 0;
        width: 100%;
        background: #fff;

        flex-direction: column;
        align-items: flex-start;

        padding: 20px;

        /* Smooth animation */
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;

        transition: all 0.35s ease;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .nav-menu.active {
        opacity: 0.9;
        transform: translateY(0);
        pointer-events: auto;
        background-color: #063b74;
    }

    .nav-menu a {
        width: 100%;
        padding: 5px 0;
        font-size: 14px;
        color: #fff;
        border-bottom: 1px solid #eee;
    }

    .nav-menu a:hover::after {
    color: #a6d50d;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: block;
    }
}

.header-call {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 8px 14px;
    border-radius: 6px;

    background: #063b74;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;

    transition: 0.3s ease;
}

.header-call span {
    font-size: 18px;
}

/* HOVER */
.header-call:hover {
    background: #042a52;
    transform: translateY(-2px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* HERO */
.hero {
    padding-top: 90px;
    position: relative;
    min-height: 100vh;
    background: url('images/ska-atlantis-hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.6) 35%,
        rgba(255, 255, 255, 0.3) 60%,
        rgba(255, 255, 255, 0) 100%
    );
}

/* CONTAINER */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT SIDE */
.hero-left {
    max-width: 50%;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.hero-left h1 span {
    color: #1e5aa5; /* blue highlight */
}

.hero-left p {
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* BUTTON */
.btn-outline-dark {
    padding: 10px 22px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline-dark:hover {
    background: #000;
    color: #fff;
}

/* FORM */
.hero-form {
    opacity: 0.9;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-form h3 {
    margin-bottom: 15px;
    color: #1e5aa5;
}

/* INPUTS */
.hero-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

/* BUTTON */
.hero-form button {
    width: 100%;
    padding: 12px;
    background: #143f63;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.hero-form button:hover {
    background: #0d2c45;
}

@media (max-width: 768px) {

    /* HERO SPACING */
    .hero {
        padding-top: 110px;
        min-height: auto;
        padding-bottom: 40px;
    }

    /* CONTAINER */
    .hero-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px; /* more width, less squeeze */
    }

    /* TEXT WIDTH FIX */
    .hero-left {
        max-width: 100%;
    }

    /* HEADING */
    .hero-left h1 {
        font-size: 28px;
        line-height: 1.3;
        max-width: 95%;
        margin: 0 auto 15px;
    }

    /* PARAGRAPH */
    .hero-left p {
        font-size: 14px;
        max-width: 95%;
        margin: 0 auto 20px;
    }

    .btn-outline-dark {
    display: none;
}

    /* FORM */
    .hero-form {
        width: 100%;
        max-width: 90%;
    }
}

/* OVERVIEW SECTION */
.overview {
    padding: 80px 20px;
    background: #f9fbfd;
}

.overview-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* LEFT TEXT */
.overview-text {
    flex: 1;
}

.overview-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111;
}

.overview-text p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* RIGHT BOX */
.overview-highlights {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ITEMS */
.highlight-item span {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

.highlight-item strong {
    font-size: 15px;
    color: #111;
}

@media (max-width: 768px) {

    .overview-container {
        flex-direction: column;
    }

    .overview-highlights {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .overview-text {
        text-align: center;
    }
}

/* SECTION */
.highlights {
    padding: 100px 20px;
    background: #f7f9fc;
}

/* CONTAINER */
.highlights-container {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: start;
}

/* VERTICAL TITLE */
.section-title h2 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #111;
    opacity: 0.8;
}

/* WRAPPER */
.highlights-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 30px;
}

/* FEATURED CARD */
.highlight-featured {
    background: linear-gradient(135deg, #1e5aa5, #0d2c45);
    color: #fff;
    padding: 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-featured .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.highlight-featured h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.highlight-featured p {
    font-size: 15px;
    line-height: 1.6;
}

/* GRID */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */
.highlight-card {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.highlight-card .icon {
    font-size: 26px;
    color: #1e5aa5;
    margin-bottom: 10px;
}

.highlight-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #111;
}

.highlight-card p {
    font-size: 13.5px;
    color: #555;
}

/* HOVER */
.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {

    .highlights-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        text-align: center;
        margin-bottom: 20px;
    }

    .section-title h2 {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 26px;
    }

    .highlights-wrapper {
        grid-template-columns: 1fr;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }
}

/* FLEX STRUCTURE */
.price-flex {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.price-left {
    flex: 1;
}

.price-left h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.price-left p {
    color: #555;
    max-width: 320px;
}

/* RIGHT GRID */
.price-right {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.price-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.price-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.price-card h3 {
    font-size: 18px;
    margin: 12px 0 5px;
}

.price-card p {
    color: #666;
    margin-bottom: 12px;
}

/* BUTTON */
.price-card button {
    margin-bottom: 15px;
    padding: 10px 18px;
    background: #063b74;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.price-card button:hover {
    background: #042a52;
}

/* HOVER EFFECT */
.price-card:hover {
    transform: translateY(-6px);
}

/* MOST POPULAR TAG */
.highlight-plan {
    border: 2px solid #063b74;
}

.highlight-plan .tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #063b74;
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 20px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .price-flex {
        flex-direction: column;
    }

    .price-left {
        text-align: left;
        margin-bottom: 20px;
    }

    .price-right {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .price-card img {
        height: 200px;
    }
}

/* ── AMENITIES ─────────────────────────────────────────── */
.amenities {
    padding: 100px 20px;
    background: #f7f9fc;
}

.amenities-inner {
    max-width: 1200px;
    margin: auto;
}

.amenities-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
}

.amenities-title-desc h2 {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.amenities-title-desc p {
    font-size: 15px;
    color: #555;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.amenity-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    transition: 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: #d0dff0;
}

.amenity-card .material-symbols-outlined {
    font-size: 32px;
    color: #1e5aa5;
    line-height: 1;
}

.amenity-card h4 {
    font-size: 13.5px;
    font-weight: 500;
    color: #222;
    margin: 0;
}

/* ── AMENITIES MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {

    .amenities {
        padding: 70px 15px;
    }

    .amenities-header {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }

    /* Hide vertical side title on mobile */
    .amenities-title-side {
        display: none;
    }

    .amenities-title-desc h2 {
        font-size: 24px;
    }

    .amenities-title-desc p {
        font-size: 14px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .amenity-card {
        padding: 22px 14px;
        gap: 10px;
    }

    .amenity-card .material-symbols-outlined {
        font-size: 28px;
    }

    .amenity-card h4 {
        font-size: 13px;
    }
}



/* SECTION */
.walkthrough {
    padding: 100px 20px;
    background: #f9fbfd;
}

/* HEADER */
.walkthrough-header {
    text-align: center;
    margin-bottom: 40px;
}

.walkthrough-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.walkthrough-header p {
    color: #666;
}

/* VIDEO WRAPPER */
.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: auto;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;

    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

/* IMAGE */
.video-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* OVERLAY GRADIENT */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.2),
        rgba(0,0,0,0)
    );
}

/* PLAY BUTTON */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    color: #063b74;

    transition: 0.3s;
}

/* PULSE EFFECT */
.play-button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    animation: pulse 2s infinite;
}

/* TEXT */
.video-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

.video-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.video-text p {
    font-size: 13px;
    opacity: 0.9;
}

/* HOVER EFFECT */
.video-wrapper:hover {
    transform: translateY(-6px) scale(1.01);
}

.video-wrapper:hover .play-button {
    background: #063b74;
    color: #fff;
}

/* PULSE ANIMATION */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .walkthrough {
        padding: 70px 15px;
    }

    .walkthrough-header h2 {
        display: none;
    }

    .walkthrough-header p{
        display: none;
    }

    .video-wrapper {
        border-radius: 12px;
    }

    .play-button {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .video-text h3 {
        font-size: 16px;
    }

    .video-text p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {

    /* REMOVE OVERLAY ELEMENTS */
    .video-overlay {
        display: none;
    }

    .video-text {
        position: static;
        padding: 15px;
        background: #fff;
        color: #000;
        text-align: center;
    }

    .video-text h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .video-text p {
        font-size: 13px;
        color: #555;
    }

    /* OPTIONAL: Reduce shadow for cleaner mobile look */
    .video-wrapper {
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    /* Slight spacing between image and text */
    .video-wrapper img {
        border-bottom: 1px solid #eee;
    }
}


/* SECTION */
.location {
    padding: 100px 20px;
    background: #f9fbfd;
}

/* LAYOUT */
.location-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* LEFT */
.location-content {
    flex: 1;
}

.location-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.location-content p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* POINTS */
.location-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ITEM */
.loc-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* ICON */
.loc-item span {
    font-size: 24px;
    color: #1e5aa5;
}

/* TEXT */
.loc-item h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.loc-item p {
    font-size: 14px;
    color: #666;
}

/* MAP */
.location-map {
    flex: 1;
}

.map-ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.map-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {

    .location-container {
        flex-direction: column;
        gap: 30px;
    }

    /* ❌ remove center alignment */
    .location-content {
        text-align: left;
    }

    /* spacing fix */
    .location-content h2 {
        font-size: 24px;
    }

    .location-content p {
        font-size: 14px;
    }

    /* tighten items */
    .location-points {
        gap: 14px;
    }

    .loc-item {
        align-items: flex-start;
    }

    .loc-item span {
        font-size: 22px;
        margin-top: 2px;
    }

    /* REMOVE THIS (important) */
    .location-map {
        width: 100%;
        height: auto; /* ✅ remove fixed height */
    }
}


/* SECTION */
.gallery {
    padding: 100px 20px;
    background: #fff;
}

/* HEADER */
.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.gallery-header p {
    color: #666;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* ITEM */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* OVERLAY */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.2),
        transparent
    );
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* HOVER EFFECT */
.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* VARIATIONS */
.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .gallery {
        padding: 70px 15px;
    }

    /* HEADER ON TOP */
    .gallery-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .gallery-header h2 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #111;
    opacity: 0.8;
    text-transform: uppercase;
    }

    .gallery-header p {
        display: none;
    }

    /* GRID */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* RESET fancy layout */
    .gallery-item,
    .gallery-item.tall,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* KEEP overlay visible (important for mobile UX) */
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(0,0,0,0.6),
            transparent
        );
    }

    .gallery-overlay span {
        font-size: 13px;
    }
}

/* SECTION */
.faq {
    padding: 100px 20px;
    background: #f9fbfd;
}

/* HEADER */
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header-mobile{
    display: none;
}

.faq-header h2 {
    font-size: 32px;
}

/* LIST */
.faq-list {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ITEM */
.faq-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: 0.3s;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 16px;
}

/* ICON */
.faq-question span {
    font-size: 22px;
    transition: 0.3s;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.4s ease;
}

.faq-answer p {
    font-size: 14px;
    color: #555;
    padding-bottom: 15px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 10px;
}

/* ROTATE ICON */
.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* HOVER */
.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {

    .faq-header h2 {
        display: none;
    }

    .faq-header-mobile{
    display: block;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #111;
    opacity: 0.5;
    }

    .faq-question span {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13.5px;
    }

}

/* FOOTER */
.footer {
    background: #0d1b2a;
    color: #ccc;
    padding-top: 60px;
}

/* GRID */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* HEADINGS */
.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

/* LINKS */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* CONTACT LINKS */
.footer-col a {
    color: #ccc;
    text-decoration: none;
}

.footer-col a:hover {
    color: #fff;
}

/* BUTTON */
.footer-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: #a51e56;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-btn:hover {
    background: #14437d;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: #aaa;
}

.footer-bottom .disclaimer {
    margin-top: 5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* ICON STYLE */
.footer-contact span {
    font-size: 18px;
    color: #1e5aa5;
    margin-top: 2px;
    flex-shrink: 0;
}

/* LINKS */
.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: #fff;
}

@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: left; /* FIX 1: stop centering everything */
        gap: 30px;
    }

    .footer-contact {
        align-items: flex-start;
        text-align: left;
        justify-content: flex-start;
    }

    .footer-col {
        text-align: left; /* FIX 2: force proper alignment */
    }

    .footer-btn {
        width: 60%;
        text-align: center;
    }
}

/* ================= POPUP ================= */
.popup {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
    overflow-y: auto;
}

.popup.active {
    display: block;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
}

.popup-content {
    position: relative;
    z-index: 2;
    max-width: 420px;
    width: 92%;
    margin: 50px auto;
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    animation: popupFade 0.35s ease;
}

@keyframes popupFade {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* CLOSE */
.popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 22px;
    cursor: pointer;
    color: #aaa;
    background: none;
    border: none;
    line-height: 1;
    transition: 0.25s;
}

.popup-close:hover {
    color: #000;
    transform: rotate(90deg);
}

/* HEADER — centered logo */
.form-header {
    text-align: center;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eef3f9;
}

.form-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #063b74;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.form-header p {
    font-size: 11.5px;
    color: #999;
}

/* DYNAMIC TITLE */
.popup-title {
    font-size: 15px;
    font-weight: 500;
    color: #063b74;
    margin-bottom: 16px;
}

/* FORM BODY */
.form-body {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

/* SIDE BY SIDE ROW */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* FLOATING LABEL GROUP */
.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 13.5px;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    outline: none;
    color: #111;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13.5px;
    color: #999;
    background: #fff;
    padding: 0 5px;
    pointer-events: none;
    transition: 0.22s ease;
    font-family: 'Poppins', sans-serif;
}

/* FLOAT UP */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.label-floated {
    top: -7px;
    font-size: 11px;
    color: #063b74;
    transform: none;
}

/* FOCUS RING */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #063b74;
    box-shadow: 0 0 0 2px rgba(6, 59, 116, 0.08);
}

/* READONLY */
.readonly-field {
    background: #eef3f9 !important;
    border-color: #dbe6f3 !important;
    font-weight: 600;
    color: #063b74 !important;
    cursor: default;
}

/* PHONE ROW */
.phone-row {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.country-code-wrap {
    position: relative;
    flex-shrink: 0;
    width: 115px;
}

.country-code-wrap select {
    padding: 13px 26px 13px 10px;
    font-size: 13px;
    color: #111;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    width: 100%;
    cursor: pointer;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.country-code-wrap select:focus {
    border-color: #063b74;
    box-shadow: 0 0 0 2px rgba(6, 59, 116, 0.08);
}

.select-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 13px;
    color: #aaa;
}

.phone-input-wrap {
    flex: 1;
    position: relative;
}

/* CONSENT BOX */
.form-consent {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    background: #f7fbff;
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid #dbe6f3;
}

.consent-dot {
    width: 8px;
    height: 8px;
    background: #063b74;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

.form-consent p {
    font-size: 11px;
    color: #555;
    line-height: 1.5;
}

/* SUBMIT BUTTON */
.submit-btn {
    width: 100%;
    padding: 14px;
    background: #063b74;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: 0.25s ease;
}

.submit-btn:hover {
    background: #042a52;
    transform: translateY(-2px);
}

/* SUCCESS STATE */
.popup-success {
    display: none;
    text-align: center;
    padding: 30px 10px;
}

.success-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #eef9f3;
    color: #1a7a4a;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.popup-success h3 {
    font-size: 18px;
    color: #063b74;
    margin-bottom: 6px;
}

.popup-success p {
    font-size: 13px;
    color: #666;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .popup-content {
        width: 94%;
        padding: 22px 18px;
        margin: 30px auto;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .country-code-wrap {
        width: 105px;
    }
}

/* STICKY BAR */
.mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    display: none; /* hidden on desktop */
    z-index: 9999;
}

/* BUTTONS */
.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 20px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

/* CALL */
.call-btn {
    background: #063b74;
    color: #fff;
}

/* BROCHURE */
.brochure-btn {
    background: #1e5aa5;
    color: #fff;
}

/* ICON */
.sticky-btn span {
    font-size: 18px;
}

/* HOVER (for touch feedback) */
.sticky-btn:active {
    opacity: 0.9;
}

@media (max-width: 768px) {

    .mobile-sticky {
        display: flex;
    }

    /* prevent content hiding behind buttons */
    body {
        padding-bottom: 60px;
    }
}

.mobile-sticky {
    box-shadow: 0 -5px 15px rgba(0,0,0,0.08);
}