/* =========================================================================
   Base Variables & Resets
   ========================================================================= */
:root {
    --primary-color: #710077; /* Purple from ARR */
    --primary-hover: #520056;
    --accent-color: #2D2D2D; /* Charcoal from HOLIDAYS */
    --accent-hover: #1A1A1A;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f9effa; /* Light purple tint */
    --border-color: #ebdcee;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 0.5em;
    font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-family: var(--font-heading); }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-family: var(--font-heading); color: var(--accent-color); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8b0091 0%, var(--primary-hover) 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(113, 0, 119, 0.3);
}

.btn-accent {
    background: linear-gradient(135deg, #444444 0%, var(--accent-color) 100%);
    color: white;
    border: none;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 45, 45, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* =========================================================================
   Navbar
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.navbar .btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('assets/images/banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding-top: 80px; /* Space for navbar */
    padding-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(50, 0, 50, 0.8) 0%, rgba(30, 30, 30, 0.6) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    color: white;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-family: 'Dancing Script', cursive;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title span {
    font-size: 0.5em;
    display: block;
    font-family: var(--font-main);
    font-weight: 300;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

.hero-highlights {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.highlight-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-package-highlight {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    display: inline-block;
    border-left: 4px solid var(--primary-color);
}

.highlight-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
    line-height: 1;
}

.highlight-per-person {
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-main);
    opacity: 0.8;
}

.hero-form {
    width: 100%;
    max-width: 420px;
    animation: fadeLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* =========================================================================
   Promo Form Card
   ========================================================================= */
.promo-form-card {
    padding: 0 !important;
    overflow: hidden;
    background: transparent !important;
}

.promo-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 25px;
    text-align: center;
}

.promo-locations {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin: 0 0 5px 0;
    color: white !important;
}

.promo-title em {
    font-style: italic;
    font-weight: 700;
}

.promo-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    margin-bottom: 0;
    color: white;
}

.promo-discount-block {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    line-height: 1;
}

.discount-left {
    text-align: right;
    font-weight: 800;
    font-size: 1rem;
    padding-right: 5px;
}

.discount-left span {
    font-size: 1.8rem;
}

.discount-amount {
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.discount-right {
    text-align: left;
    font-weight: 800;
    font-size: 1.6rem;
    padding-left: 5px;
}

.discount-right span {
    font-size: 0.75rem;
    display: block;
    line-height: 1.1;
    font-weight: 700;
}

.promo-deadline {
    font-weight: 700;
    font-size: 1rem;
}

.promo-body {
    background: white;
    padding: 30px 25px;
}

.promo-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-promo {
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-promo:hover {
    background-color: var(--primary-hover);
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.form-card h3 {
    margin-bottom: 10px;
    color: var(--accent-color);
}

.form-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(113, 0, 119, 0.1);
}

/* =========================================================================
   Section Headers
   ========================================================================= */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* =========================================================================
   Packages Section (Redesigned)
   ========================================================================= */
.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pkg-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 550px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pkg-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pkg-gradient-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.black-grad {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,0.85) 55%, rgba(0,0,0,1) 100%);
}

.navy-grad {
    background: linear-gradient(to bottom, rgba(16,28,48,0) 20%, rgba(16,28,48,0.85) 55%, rgba(16,28,48,1) 100%);
}

.pkg-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: white;
}

.pkg-badge {
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

.pkg-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-style: italic;
}

.pkg-cursive {
    font-family: 'Dancing Script', cursive;
    color: #df6ce5; /* Lighter, highly visible purple */
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
}

.pkg-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.pkg-itinerary-btn {
    border: 1px solid #df6ce5;
    color: #df6ce5;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    background: rgba(0, 0, 0, 0.3);
}

.pkg-itinerary-btn:hover {
    background: var(--primary-color);
    color: white;
}

.pkg-itinerary-wrapper {
    position: relative;
    display: inline-block;
}

.itinerary-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    right: -10px; /* Align near the right edge of button */
    width: 270px;
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.pkg-itinerary-wrapper:hover .itinerary-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.itinerary-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 40px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.itinerary-tooltip h4 {
    color: var(--primary-color);
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 15px;
    font-family: var(--font-main);
}

.itinerary-tooltip ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.itinerary-tooltip li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.2;
}

.itinerary-tooltip li:last-child {
    margin-bottom: 0;
}

.pkg-price-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    gap: 10px;
}

.price-strike-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-original {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    margin-bottom: -5px;
}

.pkg-price {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
    color: white;
}

.strike-line {
    position: absolute;
    top: 50%;
    left: -2%;
    width: 104%;
    height: 2px;
    background-color: #ff4d4d;
    transform: translateY(-50%) rotate(-5deg);
    pointer-events: none;
    z-index: 1;
}

.pkg-per-couple {
    font-size: 0.7rem;
    line-height: 1.2;
    opacity: 0.8;
}

.pkg-icons {
    margin-left: auto;
    display: flex;
    gap: 8px;
    font-size: 1.2rem;
}

.pkg-discount {
    color: #df6ce5;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

.pkg-actions {
    display: flex;
    gap: 10px;
}

.btn-deal {
    flex: 1;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-deal:hover {
    background-color: var(--primary-hover);
}

.btn-whatsapp {
    background-color: #25d366;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #1ebc59;
}

/* =========================================================================
   Itinerary Section
   ========================================================================= */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    animation: fadeIn 0.5s ease backwards;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px var(--bg-light);
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-left: 20px;
    flex-grow: 1;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.timeline-content h4 {
    margin: 0;
    color: var(--primary-color);
    min-width: 60px;
}

.timeline-content p {
    margin: 0;
    font-weight: 500;
    color: var(--text-color);
}

/* =========================================================================
   Why ARR Holidays Section
   ========================================================================= */
.why-us .grid-2-cols {
    align-items: center;
    gap: 60px;
}

.why-us-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.why-us-content .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.usp-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.usp-item {
    display: flex;
    gap: 20px;
}

.usp-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.usp-text h4 {
    margin-bottom: 5px;
    color: var(--accent-color);
}

.usp-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 992px) {
    .why-us .grid-2-cols {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .why-us-content .section-header {
        text-align: center;
    }
}

/* =========================================================================
   Testimonials Section
   ========================================================================= */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.2;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.feedback {
    flex-grow: 1;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.author h5 {
    margin-bottom: 2px;
    color: var(--accent-color);
}

.author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.swiper-pagination {
    position: relative !important;
    margin-top: 30px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* =========================================================================
   Inclusions & Exclusions Section
   ========================================================================= */
.inc-exc {
    position: relative;
    background-image: url('assets/images/inclusionbg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.inc-exc::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(113, 0, 119, 0.3); /* Subtle brand purple overlay */
    z-index: -1;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.inc-box, .exc-box {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.box-header {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.box-header h3 {
    margin: 0;
}

.check-list li, .cross-list li {
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
}

/* =========================================================================
   FAQ Section
   ========================================================================= */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    cursor: pointer;
    list-style: none; /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-family: monospace;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
    background: var(--accent-color);
    color: white;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.85rem;
}

.footer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    opacity: 1;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-color);
}

/* =========================================================================
   Floating WhatsApp Button
   ========================================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Hide on mobile since it has the sticky footer */
@media (max-width: 768px) {
    .whatsapp-float {
        display: none;
    }
}
.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    justify-content: space-between;
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.sticky-btn:last-child {
    border-right: none;
}

.sticky-btn.whatsapp-btn {
    background: #25d366;
    color: white;
}

.sticky-icon {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

/* =========================================================================
   Responsive Media Queries
   ========================================================================= */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-highlights {
        justify-content: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .package-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .grid-2-cols {
        grid-template-columns: 1fr;
    }

    .card-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .price {
        text-align: left;
    }

    .form-card {
        padding: 25px;
    }
    
    .timeline-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    /* Header modifications */
    .nav-contact {
        display: none;
    }
    
    .nav-content {
        justify-content: center;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .brand-logo {
        height: 75px !important;
    }
    
    /* Sticky footer */
    .mobile-sticky-footer {
        display: flex;
    }
    
    body {
        padding-bottom: 60px; /* Space for the sticky footer */
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-highlights {
        gap: 10px;
    }
    
    .highlight-item {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin-left: 15px;
        padding: 15px;
    }
}
