/* ==========================================================================
   Design System & Globals
   ========================================================================== */
:root {
    /* Harmonious Harmonized Colors */
    --color-bg-slate: #f8fafc;
    --color-bg-white: #ffffff;
    --color-text-dark: #0f172a;
    --color-text-muted: #475569;
    --color-sky-blue: #0ea5e9;
    --color-sky-blue-hover: #0284c7;
    --color-sun-orange: #f97316;
    --color-sun-orange-hover: #ea580c;
    --color-whatsapp-green: #22c55e;
    --color-whatsapp-green-hover: #16a34a;
    
    /* Typography */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
    --shadow-glow-orange: 0 10px 30px rgba(249, 115, 22, 0.3);
    --shadow-glow-blue: 0 10px 30px rgba(14, 165, 233, 0.3);
    --shadow-glow-green: 0 10px 30px rgba(34, 197, 94, 0.3);

    /* Transitions & Borders */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-slate);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button, input, select, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

/* Common Section Container Layout */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.section-sub {
    font-family: var(--font-headings);
    color: var(--color-sky-blue);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

.accent-highlight {
    color: var(--color-sky-blue);
    position: relative;
    display: inline-block;
}

.badge-tag {
    background: rgba(14, 165, 233, 0.1);
    color: var(--color-sky-blue);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

/* Dynamic Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1rem;
    padding: 0 28px;
    height: 52px; /* Large mobile-friendly touch target */
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    cursor: pointer;
    white-space: nowrap;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Header & Sticky Navigation
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1200px;
    height: 80px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--color-sky-blue);
}

.logo-text {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

.accent-text {
    color: var(--color-sky-blue);
}

.desktop-nav {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-sky-blue);
    transition: var(--transition-smooth);
}

.nav-item:hover {
    color: var(--color-sky-blue);
}

.nav-item:hover::after {
    width: 100%;
}

.header-cta .header-btn {
    background-color: var(--color-whatsapp-green);
    color: white;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    height: 48px;
    padding: 0 20px;
}

.header-cta .header-btn:hover {
    background-color: var(--color-whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-green);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    cursor: pointer;
    z-index: 1100;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-text-dark);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* Mobile Nav Drawer Open animations */
.mobile-nav-toggle.open .bar-1 {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-nav-toggle.open .bar-2 {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-nav-toggle.open .bar-3 {
    transform: rotate(-45deg) translate(6px, -7px);
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-bg-white);
    z-index: 1050;
    padding: 120px 40px 40px;
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-drawer.open {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-item {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding-bottom: 12px;
}

.mobile-nav-item:hover {
    color: var(--color-sky-blue);
    padding-left: 8px;
}

.mobile-cta-btn {
    background-color: var(--color-whatsapp-green);
    color: white;
    width: 100%;
    height: 52px;
    margin-top: 24px;
}

.mobile-cta-btn:hover {
    background-color: var(--color-whatsapp-green-hover);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    z-index: -1;
    transform: scale(1.02);
    animation: zoomHero 20s ease-out infinite alternate;
}

@keyframes zoomHero {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

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

.hero-content {
    max-width: 720px;
    color: white;
}

.hero-content .badge-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-sky-blue);
    border-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 0 2px 6px rgba(15, 23, 42, 0.3);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-ctas .primary-btn {
    background-color: var(--color-sun-orange);
    color: white;
}

.hero-ctas .primary-btn:hover {
    background-color: var(--color-sun-orange-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-orange);
}

.hero-ctas .secondary-btn {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-ctas .secondary-btn:hover {
    background-color: var(--color-sky-blue);
    border-color: var(--color-sky-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-blue);
}

/* ==========================================================================
   Interactive Packages (JS Filter Grid)
   ========================================================================== */
.packages-section {
    background-color: var(--color-bg-slate);
}

.tab-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    background: rgba(15, 23, 42, 0.04);
    padding: 6px;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    background: transparent;
    padding: 0 28px;
    height: 48px; /* Touch friendly */
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    color: var(--color-text-dark);
}

.tab-btn.active {
    background-color: var(--color-bg-white);
    color: var(--color-sky-blue);
    box-shadow: var(--shadow-sm);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.package-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

/* Touch Swipe Gallery styles */
.card-visual {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.swipe-gallery {
    position: relative;
    width: 100%;
}

.gallery-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide standard Firefox scrollbar */
}

.gallery-wrapper::-webkit-scrollbar {
    display: none; /* Hide Safari and Chrome scrollbar */
}

.gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    aspect-ratio: 16/10;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.gallery-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-dots .dot.active {
    background-color: var(--color-sky-blue);
    width: 20px;
    border-radius: var(--radius-full);
}

.price-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--color-text-dark);
    color: white;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.125rem;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.price-tag small {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: #fbbf24; /* Amber-400 */
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.package-title {
    font-family: var(--font-headings);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.package-intro {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.package-highlights {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.package-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.package-highlights svg {
    width: 18px;
    height: 18px;
    color: var(--color-sky-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.card-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-whatsapp-green);
    color: white;
    font-family: var(--font-headings);
    font-weight: 700;
    padding: 0 20px;
    height: 48px; /* Easy touch target */
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.card-book-btn:hover {
    background-color: var(--color-whatsapp-green-hover);
    box-shadow: var(--shadow-glow-green);
}

.card-book-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.card-book-btn:hover svg {
    transform: translateX(4px);
}

/* Package tab animation rules */
.package-card.fade-in {
    animation: cardFade 0.4s ease forwards;
}

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

/* ==========================================================================
   Plan Your Trip Section (Dynamic Form)
   ========================================================================== */
.form-section {
    background-color: var(--color-bg-white);
}

.form-card-wrapper {
    display: grid;
    grid-template-columns: 4fr 5fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.form-visual-panel {
    background-size: cover;
    background-position: center;
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
}

.panel-content {
    position: relative;
    z-index: 5;
}

.form-visual-panel .badge-tag.outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.panel-title {
    font-family: var(--font-headings);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}

.panel-desc {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-size: 1rem;
}

.quick-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item svg {
    width: 22px;
    height: 22px;
    color: var(--color-sky-blue);
    background: rgba(255, 255, 255, 0.15);
    padding: 3px;
    border-radius: 50%;
}

.benefit-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-form-panel {
    padding: 56px;
    background-color: var(--color-bg-white);
}

.form-title {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 32px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.input-group label .required {
    color: var(--color-sun-orange);
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    pointer-events: none;
}

.quote-form input, .quote-form select {
    width: 100%;
    height: 52px; /* Touch Target minimum */
    padding: 0 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(15, 23, 42, 0.12);
    font-size: 0.95rem;
    background-color: var(--color-bg-slate);
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.input-container input {
    padding-left: 48px;
}

.quote-form input:focus, .quote-form select:focus {
    background-color: var(--color-bg-white);
    border-color: var(--color-sky-blue);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-submit-btn {
    width: 100%;
    height: 52px; /* Easy touch target */
    background-color: var(--color-sun-orange);
    color: white;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.form-submit-btn:hover {
    background-color: var(--color-sun-orange-hover);
    box-shadow: var(--shadow-glow-orange);
    transform: translateY(-1px);
}

/* ==========================================================================
   Trust Pillars (Why Choose Us)
   ========================================================================== */
.why-us-section {
    background-color: var(--color-bg-slate);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.pillar-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

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

.pillar-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-sky-blue);
    margin-bottom: 24px;
}

.pillar-icon {
    width: 28px;
    height: 28px;
}

.pillar-title {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.pillar-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Testimonial Reviews Section
   ========================================================================== */
.reviews-section {
    background-color: var(--color-bg-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.review-card {
    background-color: var(--color-bg-slate);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: var(--transition-smooth);
}

.review-card:hover {
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-md);
    transform: scale(1.01);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-sky-blue);
}

.review-author-info {
    flex: 1;
}

.review-author {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text-dark);
}

.review-tag {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--color-sky-blue);
}

.review-card .stars {
    font-size: 0.775rem;
}

.review-body {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: var(--color-text-dark);
    color: #94a3b8; /* Slate-400 */
    font-size: 0.95rem;
    border-top: 4px solid var(--color-sky-blue);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-col-title {
    font-family: var(--font-headings);
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.brand-col .logo-link {
    margin-bottom: 20px;
}

.text-white {
    color: white;
}

.brand-desc {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--color-sky-blue);
    padding-left: 4px;
}

.contact-detail {
    margin-bottom: 14px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-detail strong {
    color: white;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 48px; /* Touch friendly */
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    transform: translateY(-3px);
}

.social-icon {
    width: 20px;
    height: 20px;
}

.social-icon-btn.whatsapp-glow:hover {
    background-color: var(--color-whatsapp-green);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.social-icon-btn.instagram-glow:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.5);
}

.social-icon-btn.facebook-glow:hover {
    background-color: #1877f2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}

.creator-accent {
    color: var(--color-sky-blue);
    font-weight: 700;
}

/* ==========================================================================
   Responsive Breakpoints & Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .form-card-wrapper {
        grid-template-columns: 1fr;
    }
    .form-visual-panel {
        padding: 40px;
    }
    .form-form-panel {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .desktop-nav {
        display: none;
    }
    .header-cta {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .hero-title {
        font-size: 2.75rem;
    }
    .hero-subtitle {
        font-size: 1.15rem;
    }
    .section-title {
        font-size: 2.15rem;
    }
    .section-container {
        padding: 60px 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-ctas {
        flex-direction: column;
    }
    .hero-ctas .cta-button {
        width: 100%;
    }
    .tab-container {
        flex-direction: column;
        width: 100%;
        border-radius: var(--radius-md);
        padding: 8px;
    }
    .tab-btn {
        width: 100%;
        height: 48px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
