/* ===========================================
   TODAY HOLIDAYS - Travel Website
   Sunset & Coastal Aesthetic
   =========================================== */

:root {
    --teal: #006d77;
    --teal-dark: #004d54;
    --coral: #e29578;
    --coral-dark: #d97757;
    --sunset: #ff7849;
    --cream: #fef8f1;
    --sand: #f4e3d0;
    --ink: #1a2e35;
    --text: #2c3e44;
    --muted: #6b7c83;
    --white: #ffffff;
    --line: #e8d8c4;
    --success: #06a77d;
    --shadow-sm: 0 2px 10px rgba(26, 46, 53, 0.06);
    --shadow-md: 0 8px 28px rgba(26, 46, 53, 0.10);
    --shadow-lg: 0 16px 48px rgba(26, 46, 53, 0.16);
    --radius: 14px;
    --radius-lg: 22px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===========================================
   DISCLAIMER + TOP STRIP
   =========================================== */
.disclaimer-bar {
    background: #fff4e6;
    color: #7a4e1f;
    text-align: center;
    padding: 9px 20px;
    font-size: 13px;
    border-bottom: 1px solid #f5deb3;
}
.disclaimer-bar strong { color: #b8530a; }

.top-strip {
    background: var(--teal-dark);
    color: var(--white);
    padding: 9px 0;
    font-size: 13.5px;
}
.top-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-strip a { color: var(--coral); font-weight: 600; }
.top-strip a:hover { color: var(--white); }

/* ===========================================
   HEADER / NAV
   =========================================== */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.logo {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-mark {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--coral), var(--sunset));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}
.logo span { color: var(--coral-dark); font-style: italic; font-weight: 400; }

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}
nav ul li { position: relative; }
nav ul li a {
    color: var(--ink);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}
nav ul li a:hover, nav ul li a.active { color: var(--teal); }
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: var(--transition);
}
nav ul li a:hover::after, nav ul li a.active::after { width: 100%; }

.dropdown-toggle::after { content: ' ▾'; font-size: 11px; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -10px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    min-width: 230px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    border: 1px solid var(--line);
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li { width: 100%; }
.dropdown-menu li a {
    display: block;
    padding: 11px 22px;
    font-size: 14.5px;
}
.dropdown-menu li a::after { display: none; }
.dropdown-menu li a:hover {
    background: var(--cream);
    color: var(--teal);
    padding-left: 28px;
}

.call-btn {
    background: var(--sunset);
    color: var(--white) !important;
    padding: 11px 22px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(255, 120, 73, 0.35);
}
.call-btn:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
}
.call-btn::after { display: none !important; }

.mobile-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--teal);
    background: none;
    border: none;
}

/* ===========================================
   HERO
   =========================================== */
.hero {
    position: relative;
    min-height: 620px;
    background:
        linear-gradient(135deg, rgba(0, 109, 119, 0.78), rgba(255, 120, 73, 0.55)),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&q=80') center/cover;
    color: var(--white);
    padding: 90px 0 130px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 200, 150, 0.35), transparent 70%);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 42px;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero h1 {
    color: var(--white);
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 600;
}
.hero h1 em {
    color: var(--sand);
    font-style: italic;
    font-weight: 400;
}

.hero p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* ===========================================
   FLIGHT FORM
   =========================================== */
.flight-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 1040px;
    margin: 0 auto;
    color: var(--text);
    position: relative;
    z-index: 2;
}

.form-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.form-tab {
    padding: 9px 20px;
    border: 1.5px solid var(--line);
    background: var(--white);
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    transition: var(--transition);
    color: var(--muted);
}
.form-tab.active {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 11.5px;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.8px;
    margin-bottom: 7px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    padding: 13px 15px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--ink);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(226, 149, 120, 0.18);
}

.search-btn {
    background: var(--sunset);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(255, 120, 73, 0.35);
}
.search-btn:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 120, 73, 0.45);
}

.form-note {
    text-align: center;
    margin-top: 18px;
    font-size: 13.5px;
    color: var(--muted);
}
.form-note a {
    color: var(--coral-dark);
    font-weight: 600;
}

/* ===========================================
   SECTIONS
   =========================================== */
section { padding: 90px 0; }

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-tag {
    display: inline-block;
    background: rgba(226, 149, 120, 0.18);
    color: var(--coral-dark);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 14px;
}
.section-header h2 em {
    color: var(--coral-dark);
    font-style: italic;
}

.section-header p {
    color: var(--muted);
    font-size: 16.5px;
    max-width: 640px;
    margin: 0 auto;
}

/* ===========================================
   DEAL CARDS
   =========================================== */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 26px;
}

.deal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--line);
}
.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--coral);
}

.deal-img {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.deal-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--sunset);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.deal-body { padding: 24px; }

.deal-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    font-weight: 600;
    color: var(--teal);
    font-size: 15.5px;
}

.deal-arrow {
    color: var(--coral);
    font-size: 20px;
}

.deal-desc {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.deal-price-label {
    font-size: 11.5px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}
.deal-price {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
}
.deal-price small {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
}

.deal-btn {
    background: var(--teal);
    color: var(--white);
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}
.deal-btn:hover { background: var(--sunset); }

/* ===========================================
   EXCLUSIVE DEALS BANNER
   =========================================== */
.exclusive-section {
    background: linear-gradient(180deg, var(--cream), var(--sand));
}

.exclusive-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 22px;
    grid-template-rows: 270px 270px;
}

.exclusive-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.exclusive-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,77,84,0.85), transparent 55%);
}
.exclusive-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}
.exclusive-card:nth-child(1) { grid-row: span 2; }

.exclusive-content {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    color: var(--white);
    z-index: 1;
}
.exclusive-content .discount {
    display: inline-block;
    background: var(--sunset);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.exclusive-content h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 6px;
}
.exclusive-content p {
    font-size: 13.5px;
    opacity: 0.92;
}

/* ===========================================
   WHY US
   =========================================== */
.why-us {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 26px;
}

.feature {
    background: var(--cream);
    padding: 34px 26px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--line);
}
.feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: var(--white);
    border-color: var(--coral);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--coral), var(--sunset));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.feature h4 {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--ink);
}
.feature p {
    color: var(--muted);
    font-size: 14.5px;
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 120, 73, 0.25), transparent 70%);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(226, 149, 120, 0.25), transparent 70%);
    border-radius: 50%;
}
.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 16px;
}
.cta-section p {
    font-size: 17.5px;
    opacity: 0.92;
    margin-bottom: 28px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background: var(--sunset);
    color: var(--white);
    padding: 17px 44px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    box-shadow: 0 10px 30px rgba(255, 120, 73, 0.4);
}
.cta-btn:hover {
    background: var(--coral-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255, 120, 73, 0.55);
}

/* ===========================================
   PAGE HEADER
   =========================================== */
.page-header {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 120, 73, 0.3), transparent 70%);
    border-radius: 50%;
}
.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 14px;
}
.page-header p {
    font-size: 17px;
    opacity: 0.92;
}

.breadcrumb {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.88;
}
.breadcrumb a { color: var(--sand); }

/* ===========================================
   CONTENT PAGES
   =========================================== */
.content-section { padding: 75px 0; }

.content-wrapper {
    max-width: 920px;
    margin: 0 auto;
    background: var(--white);
    padding: 55px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

.content-wrapper h2 {
    font-size: 28px;
    margin: 34px 0 16px;
    color: var(--teal);
}
.content-wrapper h2:first-child { margin-top: 0; }

.content-wrapper h3 {
    font-size: 21px;
    margin: 26px 0 12px;
    font-family: 'Fraunces', serif;
    color: var(--ink);
}

.content-wrapper p {
    color: var(--text);
    margin-bottom: 17px;
    font-size: 15.5px;
    line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 14px 0 22px 26px;
    color: var(--text);
}
.content-wrapper li {
    margin-bottom: 9px;
    line-height: 1.75;
}
.content-wrapper a {
    color: var(--coral-dark);
    font-weight: 500;
    text-decoration: underline;
}

.last-updated {
    background: var(--cream);
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
    border-left: 4px solid var(--coral);
}

.info-box {
    background: #fff4e6;
    border-left: 4px solid var(--sunset);
    padding: 20px 24px;
    border-radius: 10px;
    margin: 28px 0;
}
.info-box p {
    margin-bottom: 0;
    font-size: 14.5px;
}

/* ===========================================
   ABOUT PAGE
   =========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    margin-bottom: 65px;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 420px;
    background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=900&q=80') center/cover;
    position: relative;
}
.about-img::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--sunset);
    border-radius: 50%;
    opacity: 0.85;
    z-index: -1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 22px;
}
.about-text p {
    color: var(--muted);
    margin-bottom: 17px;
    font-size: 15.5px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 55px;
    padding: 45px;
    background: linear-gradient(135deg, var(--cream), var(--sand));
    border-radius: var(--radius-lg);
}

.stat { text-align: center; }
.stat-num {
    font-size: 46px;
    font-weight: 600;
    color: var(--teal);
    font-family: 'Fraunces', serif;
    line-height: 1;
}
.stat-label {
    color: var(--muted);
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
}

/* ===========================================
   AIRLINES PAGE
   =========================================== */
.airlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 22px;
    margin: 45px 0;
}

.airline-card {
    background: var(--white);
    padding: 28px 22px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--line);
    transition: var(--transition);
}
.airline-card:hover {
    border-color: var(--coral);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.airline-logo {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
    font-family: 'Fraunces', serif;
}

.airline-name {
    font-weight: 600;
    color: var(--ink);
    font-size: 16px;
    margin-bottom: 6px;
}
.airline-deal {
    color: var(--coral-dark);
    font-size: 14px;
    font-weight: 600;
}

.seo-content {
    margin-top: 70px;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}
.seo-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--teal);
}
.seo-content h3 {
    font-size: 20px;
    color: var(--ink);
    margin: 26px 0 12px;
    font-family: 'Fraunces', serif;
}
.seo-content p {
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 15.5px;
}
.seo-content ul { margin: 12px 0 20px 24px; }
.seo-content li { margin-bottom: 8px; }
.seo-content strong { color: var(--ink); }

/* ===========================================
   FOOTER
   =========================================== */
footer {
    background: var(--ink);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 44px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 20px;
    font-family: 'Fraunces', serif;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 2px;
    background: var(--coral);
}

.footer-col p {
    font-size: 14px;
    opacity: 0.78;
    line-height: 1.8;
    margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}
.footer-col ul li a:hover {
    color: var(--coral);
    padding-left: 6px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 14px;
}
.footer-contact a {
    color: var(--coral);
    font-weight: 600;
}

.disclaimer-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 22px;
    border-radius: 12px;
    font-size: 12.5px;
    line-height: 1.75;
    opacity: 0.88;
    margin-top: 32px;
    border-left: 3px solid var(--sunset);
}
.disclaimer-box strong { color: var(--coral); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    opacity: 0.72;
}
.footer-bottom a { color: var(--coral); }

/* ===========================================
   FLOATING CALL
   =========================================== */
.floating-call {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--sunset);
    color: var(--white);
    padding: 15px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 120, 73, 0.45);
    z-index: 999;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 9px;
    animation: pulse 2s infinite;
}
.floating-call:hover {
    background: var(--coral-dark);
    transform: scale(1.06);
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(255, 120, 73, 0.4); }
    50% { box-shadow: 0 8px 36px rgba(255, 120, 73, 0.7); }
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 980px) {
    .mobile-toggle { display: block; }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 22px;
        gap: 0;
        box-shadow: var(--shadow-md);
    }
    nav ul.active { display: flex; }
    nav ul li {
        width: 100%;
        border-bottom: 1px solid var(--line);
    }
    nav ul li a { padding: 14px 0; display: block; }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 16px;
        display: none;
        border: none;
    }
    .dropdown.active .dropdown-menu { display: block; }

    .hero h1 { font-size: 38px; }
    .section-header h2 { font-size: 30px; }
    .form-row { grid-template-columns: 1fr 1fr; }
    .search-btn { grid-column: span 2; padding: 15px; }

    .exclusive-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 230px);
    }
    .exclusive-card:nth-child(1) { grid-row: auto; }

    .about-grid { grid-template-columns: 1fr; }
    .about-img { height: 300px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .content-wrapper { padding: 32px 24px; }
    .page-header h1 { font-size: 34px; }
    .cta-section h2 { font-size: 30px; }
    .seo-content { padding: 32px 24px; }
}

@media (max-width: 580px) {
    .form-row { grid-template-columns: 1fr; }
    .search-btn { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { padding: 55px 0 85px; min-height: auto; }
    .hero h1 { font-size: 30px; }
    .stats-row { grid-template-columns: 1fr; }
    .floating-call span { display: none; }
    .floating-call { padding: 15px; }
    .content-wrapper { padding: 26px 20px; }
    section { padding: 60px 0; }
}
