﻿
:root {
    --primary: #073b4c;
    --primary-dark: #052d3a;
    --secondary: #f29b38;
    --secondary-dark: #dd7f20;
    --cream: #fffaf4;
    --light: #f5f9fa;
    --text: #25343b;
    --muted: #68777d;
    --white: #ffffff;
    --green: #15945b;
    --border: #e5ebed;
    --shadow: 0 15px 45px rgba(4, 44, 57, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}

/* =========================
           TOP BAR
        ========================== */

.topbar {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 9px 15px;
    font-size: 13px;
    font-weight: 600;
}

    .topbar a {
        color: #ffd08d;
    }

/* =========================
           HEADER
        ========================== */

.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.07);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 27px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

    .logo span {
        color: var(--secondary);
    }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

    .nav-menu a {
        color: var(--text);
        font-size: 14px;
        font-weight: 600;
        transition: .3s;
    }

        .nav-menu a:hover {
            color: var(--secondary);
        }

.header-btn {
    background: var(--secondary);
    color: #fff !important;
    padding: 11px 20px;
    border-radius: 6px;
    font-weight: 700 !important;
}

    .header-btn:hover {
        background: var(--secondary-dark);
    }

.mobile-menu {
    display: none;
    border: 0;
    background: transparent;
    font-size: 27px;
    color: var(--primary);
    cursor: pointer;
}

/* =========================
           HERO
        ========================== */

.hero {
    min-height: 690px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient( 90deg, rgba(2, 34, 46, .92) 0%, rgba(2, 34, 46, .76) 42%, rgba(2, 34, 46, .25) 100% ), url("Images/PackageType/Honeymoon.jpg") center center / cover no-repeat;
}

.hero-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    align-items: center;
    gap: 55px;
    padding: 80px 0;
}

.hero-content {
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,.30);
    background: rgba(255,255,255,.10);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero .h1 {
    font-family: "Playfair Display", serif;
    color: #fff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    margin-bottom: 22px;
    max-width: 750px;
}

    .hero .h1 span {
        color: #ffc773;
    }

.hero-description {
    font-size: 17px;
    max-width: 690px;
    color: rgba(255,255,255,.93);
    margin-bottom: 25px;
}

.hero-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 27px;
    font-size: 17px;
}

    .hero-price strong {
        color: #ffc773;
        font-size: 31px;
    }

.rating {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
}

.stars {
    color: #ffc107;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

.btn-primary {
    background: var(--secondary);
    color: #fff;
}

    .btn-primary:hover {
        background: var(--secondary-dark);
        transform: translateY(-2px);
    }

.btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.65);
    background: rgba(255,255,255,.08);
}

    .btn-outline:hover {
        background: #fff;
        color: var(--primary);
    }

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-point {
    padding: 8px 12px;
    border-radius: 5px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.17);
    font-size: 12px;
}

/* =========================
           PRICE CARD
        ========================== */

.hero-card {
    background: rgba(255,255,255,.97);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 25px 65px rgba(0,0,0,.24);
}

.card-label {
    color: var(--secondary);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.4px;
    margin-bottom: 7px;
}

.hero-card .h2 {
    color: var(--primary);
    font-family: "Playfair Display", serif;
    font-size: 27px;
    line-height: 1.25;
    margin-bottom: 18px;
}

.starting-text {
    color: var(--muted);
    font-size: 13px;
}

.card-price {
    color: var(--primary);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.card-rating {
    font-size: 13px;
    color: var(--muted);
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.hero-features {
    list-style: none;
    padding: 15px 0;
}

    .hero-features li {
        font-size: 13px;
        color: #4c5d63;
        padding: 5px 0;
    }

        .hero-features li::before {
            content: "✓";
            color: var(--green);
            font-weight: 800;
            margin-right: 8px;
        }

.card-cta {
    width: 100%;
    display: block;
    text-align: center;
    background: var(--secondary);
    color: #fff;
    padding: 13px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
}

    .card-cta:hover {
        background: var(--secondary-dark);
    }

.card-note {
    color: #8a969a;
    font-size: 10px;
    line-height: 1.5;
    margin-top: 12px;
}

/* =========================
           COMMON SECTION
        ========================== */

section {
    padding: 85px 0;
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 45px;
}

.section-label {
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    margin-bottom: 8px;
}

.section-heading .h2 {
    font-family: "Playfair Display", serif;
    color: var(--primary);
    font-size: clamp(31px, 4vw, 43px);
    line-height: 1.2;
    margin-bottom: 13px;
}

.section-heading p {
    color: var(--muted);
    font-size: 15px;
}

/* =========================
           PACKAGE SECTION
        ========================== */

.packages-section {
    background: var(--light);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.package-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,.05);
    transition: .3s;
}

    .package-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
    }

.package-image {
    height: 210px;
    background-size: cover;
    background-position: center;
}

.package-1 {
    background-image: linear-gradient(to top, rgba(0,0,0,.35), transparent), url("https://images.unsplash.com/photo-1548013146-72479768bada?auto=format&fit=crop&w=900&q=80");
}

.package-2 {
    background-image: linear-gradient(to top, rgba(0,0,0,.35), transparent), url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80");
}

.package-3 {
    background-image: linear-gradient(to top, rgba(0,0,0,.35), transparent), url("https://images.unsplash.com/photo-1505881502353-a1986add3762?auto=format&fit=crop&w=900&q=80");
}

.package-body {
    padding: 23px;
}

    .package-body .h3 {
        color: var(--primary);
        font-family: "Playfair Display", serif;
        font-size: 23px;
        margin-bottom: 8px;
    }

.package-price {
    color: var(--secondary);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 9px;
}

.package-body p {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 16px;
}

.package-list {
    list-style: none;
    margin-bottom: 18px;
}

    .package-list li {
        color: #53646a;
        font-size: 13px;
        padding: 4px 0;
    }

        .package-list li::before {
            content: "✓";
            color: var(--green);
            margin-right: 7px;
            font-weight: 800;
        }

.package-btn {
    display: inline-block;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 9px 16px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
}

    .package-btn:hover {
        background: var(--primary);
        color: #fff;
    }

.price-disclaimer {
    text-align: center;
    color: #7c898e;
    font-size: 11px;
    margin-top: 25px;
}

/* =========================
           WHY HASTAG
        ========================== */

.why-section {
    background: #fff;
}

.why-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.why-image {
    min-height: 550px;
    border-radius: 16px;
    background: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.08)), url("https://images.unsplash.com/photo-1539367628448-4bc5c9d171c8?auto=format&fit=crop&w=1000&q=85") center / cover;
}

.why-content .section-label {
    margin-bottom: 8px;
}

.why-content .h2 {
    font-family: "Playfair Display", serif;
    color: var(--primary);
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.why-content > p {
    color: var(--muted);
    margin-bottom: 25px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.benefit {
    padding: 19px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #fff;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff1df;
    margin-bottom: 10px;
}

.benefit .h3 {
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 4px;
}

.benefit p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

/* =========================
           EXPERIENCES
        ========================== */

.experience-section {
    background: var(--cream);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.experience-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px 18px;
    border: 1px solid #f0e9e0;
    transition: .3s;
}

    .experience-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

.experience-icon {
    font-size: 30px;
    margin-bottom: 14px;
}

.experience-card .h3 {
    color: var(--primary);
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 7px;
}

.experience-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

/* =========================
           DESTINATIONS
        ========================== */

.destinations-section {
    background: #fff;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.destination-card {
    min-height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.10);
    transition: .35s;
}

    .destination-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(0,0,0,.17);
    }

.port-blair {
    background-image: linear-gradient(to top, rgba(2,35,47,.95), rgba(2,35,47,.03)), url("https://images.unsplash.com/photo-1593693411515-c20261bcad6e?auto=format&fit=crop&w=900&q=85");
}

.havelock {
    background-image: linear-gradient(to top, rgba(2,35,47,.95), rgba(2,35,47,.03)), url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=85");
}

.neil-island {
    background-image: linear-gradient(to top, rgba(2,35,47,.95), rgba(2,35,47,.03)), url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=900&q=85");
}

.ross-island {
    background-image: linear-gradient(to top, rgba(2,35,47,.95), rgba(2,35,47,.03)), url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=900&q=85");
}

.north-bay {
    background-image: linear-gradient(to top, rgba(2,35,47,.95), rgba(2,35,47,.03)), url("https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=900&q=85");
}

.destination-card:nth-child(4) {
    grid-column: span 1;
}

.destination-card:nth-child(5) {
    grid-column: span 1;
}

.destination-info {
    padding: 25px;
    width: 100%;
    color: #fff;
}

    .destination-info .h3 {
        font-family: "Playfair Display", serif;
        color: #fff;
        font-size: 25px;
        margin-bottom: 8px;
    }

    .destination-info p {
        color: rgba(255,255,255,.91);
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

.destination-btn {
    display: inline-block;
    color: #fff;
    background: var(--secondary);
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
}

/* =========================
           ACTIVITIES
        ========================== */

.activities-section {
    background: var(--light);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 17px;
}

.activity-card {
    background: #fff;
    border-radius: 10px;
    padding: 23px 18px;
    border: 1px solid var(--border);
    text-align: center;
}

.activity-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 13px;
    border-radius: 50%;
    background: #fff1df;
    font-size: 25px;
}

.activity-card .h3 {
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 6px;
}

.activity-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

/* =========================
           ITINERARY
        ========================== */

.itinerary-section {
    background: #fff;
}

.itinerary {
    max-width: 850px;
    margin: auto;
    position: relative;
}

    .itinerary::before {
        content: "";
        position: absolute;
        left: 74px;
        top: 10px;
        bottom: 10px;
        width: 2px;
        background: #e8d4bd;
    }

.itinerary-day {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    padding: 0 0 30px;
}

.day-number {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 0 0 8px #fff;
}

.itinerary-content {
    padding: 5px 0 20px;
}

    .itinerary-content .h3 {
        color: var(--primary);
        font-family: "Playfair Display", serif;
        font-size: 22px;
        margin-bottom: 4px;
    }

    .itinerary-content p {
        color: var(--muted);
        font-size: 13px;
    }

/* =========================
           CTA
        ========================== */

.cta-section {
    position: relative;
    color: #fff;
    background: linear-gradient(rgba(3,46,60,.90), rgba(3,46,60,.90)), url("https://images.unsplash.com/photo-1476673160081-cf065607f449?auto=format&fit=crop&w=2000&q=85") center / cover;
}

.cta-inner {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

    .cta-inner .h2 {
        font-family: "Playfair Display", serif;
        font-size: clamp(32px, 4vw, 48px);
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .cta-inner p {
        color: rgba(255,255,255,.88);
        max-width: 700px;
        margin: 0 auto 25px;
        font-size: 15px;
    }

/* =========================
           CONTACT FORM
        ========================== */

.contact-section {
    background: var(--light);
}

.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 45px;
    align-items: start;
}

.contact-info .h2 {
    font-family: "Playfair Display", serif;
    color: var(--primary);
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 13px;
}

.contact-info > p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.contact-point {
    display: flex;
    gap: 12px;
    margin-bottom: 17px;
}

.contact-icon {
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: #fff1df;
    border-radius: 50%;
}

.contact-point strong {
    color: var(--primary);
    font-size: 14px;
    display: block;
}

.contact-point span {
    color: var(--muted);
    font-size: 12px;
}

.form-box {
    background: #fff;
    border-radius: 13px;
    padding: 30px;
    box-shadow: var(--shadow);
}

    .form-box .h3 {
        color: var(--primary);
        font-family: "Playfair Display", serif;
        font-size: 27px;
        margin-bottom: 20px;
    }

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-group {
    margin-bottom: 2px;
}

    .form-group.full {
        grid-column: 1 / -1;
    }

    .form-group label {
        display: block;
        color: #43545b;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        border: 1px solid #dce4e6;
        border-radius: 5px;
        padding: 11px 12px;
        outline: none;
        color: var(--text);
        background: #fff;
        font-size: 13px;
    }

    .form-group textarea {
        min-height: 100px;
        resize: vertical;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--secondary);
        }

.submit-btn {
    border: 0;
    cursor: pointer;
    width: 100%;
    padding: 13px;
    border-radius: 6px;
    background: var(--secondary);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    margin-top: 15px;
}

    .submit-btn:hover {
        background: var(--secondary-dark);
    }

/* =========================
           FAQ
        ========================== */

.faq-section {
    background: #fff;
}

.faq-list {
    max-width: 850px;
    margin: auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 11px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    padding: 18px 20px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

    .faq-question span {
        font-size: 20px;
        color: var(--secondary);
        transition: .3s;
    }

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: var(--muted);
    font-size: 13px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* =========================
           FOOTER
        ========================== */

footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,.75);
}

.footer-main {
    padding: 55px 0 35px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
}

    .footer-logo span {
        color: var(--secondary);
    }

.footer-about {
    font-size: 12px;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col .h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 7px;
}

.footer-col a {
    color: rgba(255,255,255,.68);
    font-size: 12px;
}

    .footer-col a:hover {
        color: #ffc773;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.10);
    padding: 17px 0;
    text-align: center;
    font-size: 11px;
}

/* =========================
           WHATSAPP
        ========================== */

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 27px;
    box-shadow: 0 8px 25px rgba(0,0,0,.20);
    z-index: 999;
}

    .whatsapp:hover {
        transform: scale(1.08);
    }

/* =========================
           RESPONSIVE
        ========================== */

@media (max-width: 1050px) {

    .nav-menu {
        gap: 15px;
    }

    .experience-grid,
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 420px;
    }
}

@media (max-width: 850px) {

    .nav-menu {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 76px;
        background: #fff;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 10px 20px rgba(0,0,0,.08);
    }

        .nav-menu.show {
            display: flex;
        }

    .mobile-menu {
        display: block;
    }

    .header-btn.desktop-btn {
        display: none;
    }

    .why-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .why-image {
        min-height: 400px;
    }

    .package-grid,
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .container,
    .hero-container {
        width: min(100% - 30px, 1180px);
    }

    section {
        padding: 60px 0;
    }

    .topbar {
        font-size: 11px;
    }

    .logo {
        font-size: 23px;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        padding: 55px 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-price {
        display: block;
    }

        .hero-price strong {
            display: block;
            margin: 3px 0 7px;
        }

    .rating {
        margin: 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .trust-points {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .trust-point {
        font-size: 11px;
    }

    .hero-card {
        padding: 23px;
    }

    .package-grid,
    .destination-grid,
    .benefit-grid,
    .experience-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        min-height: 310px;
    }

    .why-content .h2,
    .contact-info .h2 {
        font-size: 32px;
    }

    .why-image {
        min-height: 330px;
    }

    .itinerary::before {
        left: 34px;
    }

    .itinerary-day {
        grid-template-columns: 68px 1fr;
        gap: 18px;
    }

    .day-number {
        width: 55px;
        height: 55px;
        font-size: 11px;
    }

    .itinerary-content .h3 {
        font-size: 18px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .form-box {
        padding: 22px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .whatsapp {
        width: 48px;
        height: 48px;
        right: 14px;
        bottom: 14px;
        font-size: 23px;
    }
}


