/* ================================================
   GLOBAL RESET & BASE STYLES
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary:      #003c3c;
    --primary-light:#004f4f;
    --accent:       #ffca1c;
    --accent-dark:  #e6b400;
    --accent2:      #ff6b35;
    --white:        #ffffff;
    --light-bg:     #f7f9f8;
    --border:       #e4eaea;
    --text:         #1a2e2e;
    --text-muted:   #5e7a7a;
    --shadow-sm:    0 2px 12px rgba(0,60,60,.07);
    --shadow-md:    0 6px 28px rgba(0,60,60,.10);
    --shadow-lg:    0 16px 48px rgba(0,60,60,.14);
    --radius:       14px;
    --radius-sm:    8px;
}

/* ================================================
   HEADER
   ================================================ */
.main-header {
    width: 100%;
    background: var(--primary);
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    position: relative;
    z-index: 1000;
    font-family: 'Outfit', sans-serif;
}

.logo { font-size: 24px; font-weight: 700; font-family: 'Outfit', sans-serif; }
.logo span { color: #ffdf2b; }
.logo .dot { color: #fff; font-size: 18px; }

.navbar { display: flex; gap: 32px; align-items: center; }
.navbar a { text-decoration: none; color: #fff; font-size: 15px; font-weight: 500; transition: color 0.3s; font-family: 'Outfit', sans-serif; }
.navbar a:hover, .navbar a.active { color: #ffdf2b; }

.dropdown { position: relative; }
.drop-btn { background: none; border: none; color: #fff; font-size: 15px; cursor: pointer; font-family: 'Outfit', sans-serif; }
.dropdown-menu { display: none; position: absolute; top: 25px; background: #fff; color: #000; min-width: 160px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); border-radius: 5px; padding: 10px 0; z-index: 100; }
.dropdown-menu a { padding: 8px 15px; display: block; color: #000; text-decoration: none; font-family: 'Outfit', sans-serif; }
.dropdown:hover .dropdown-menu { display: block; }

.call-box { display: flex; align-items: center; gap: 10px; font-family: 'Outfit', sans-serif; }
.call-box i { font-size: 22px; }
.call-box p { font-size: 12px; opacity: 0.7; }
.call-box strong { font-size: 14px; }

.hamburger { display: none; font-size: 26px; cursor: pointer; }

/* ================================================
   HERO — compact, form-forward
   ================================================ */
.hero {
    position: relative;
    width: 100%;
    background: url(/images/car.png) no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 20px 44px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,20,20,.82) 0%, rgba(0,50,50,.65) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 1200px;
    width: 100%;
    z-index: 10;
}

.hero-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 10px;
}

.hero-content h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 68px;
    letter-spacing: 3px;
    margin: 0 0 12px;
    text-shadow: 0 3px 16px rgba(0,0,0,.45);
    line-height: 1;
}

.hero-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,.72);
    margin: 0 auto 18px;
    white-space: nowrap;
    line-height: 1.5;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.hero-badge {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,202,28,.35);
    color: rgba(255,255,255,.9);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-badge i { color: var(--accent); font-size: 11px; }

/* ================================================
   HERO BOOKING FORM
   ================================================ */
.hero-booking-wrap {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    text-align: left;
}

/* Tabs */
.bfs-tabs { display: flex; margin-bottom: 10px; }

.bfs-tab {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 18px;
    border: 1.5px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.10);
    color: rgba(255,255,255,.75);
    cursor: pointer;
    transition: all .2s;
    border-radius: 50px;
    margin-right: 8px;
    backdrop-filter: blur(6px);
}
.bfs-tab.active { background: #fff; color: var(--primary); border-color: #fff; }

/* Alerts */
.form-alert { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 10px; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.form-alert-success { background: #edfaf2; color: #1a6636; border: 1px solid #b7e4cb; }
.form-alert-error   { background: #fef2f2; color: #7a1c1c; border: 1px solid #f5c6cb; }

/* Form card */
.booking-form {
    background: white;
    border-radius: 16px;
    padding: 18px 18px 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    border: 1.5px solid var(--border);
    font-family: 'Outfit', sans-serif;
}

/* Grid rows */
.bfs-row { display: grid; gap: 8px; margin-bottom: 8px; align-items: end; }
.bfs-row:last-child { margin-bottom: 0; }

/* ROW 1: name | email | mobile */
.bfs-row-1 { grid-template-columns: 1fr 1fr 1fr; }

/* ROW 2a: loc | pick-date | pick-time | drop-date | drop-time | btn */
.bfs-row-2-same { grid-template-columns: 2.2fr 1.3fr 0.85fr 1.3fr 0.85fr auto; }

/* ROW 2b: pick-loc | drop-loc | pick-date | pick-time | drop-date | drop-time | btn */
.bfs-row-2-diff { grid-template-columns: 1.4fr 1.4fr 1.1fr 0.75fr 1.1fr 0.75fr auto; display: none; }

.diff-mode .bfs-row-2-same { display: none; }
.diff-mode .bfs-row-2-diff { display: grid; }

/* Field */
.bfs-field { display: flex; flex-direction: column; gap: 3px; min-width: 0; }

.bfs-field label {
    font-size: 9.5px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .7px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.bfs-field label i { color: var(--primary); font-size: 9.5px; }
.required { color: #dc3545; }

/* Inputs */
.form-input {
    width: 100%;
    padding: 9px 10px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    background: #fafcfc;
    transition: all .22s;
    outline: none;
    box-sizing: border-box;
    min-width: 0;
}
.form-input:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(0,60,60,.08); }
.form-input:hover:not(:focus) { border-color: #b0c4c4; }
.form-input::placeholder { color: #aabdbd; font-weight: 400; font-size: 12px; }
.form-input.input-error { border-color: #dc3545; background: #fff5f5; }

.field-error { font-size: 10px; color: #dc3545; font-weight: 600; }

/* Icon wrap */
.input-icon-wrap { position: relative; min-width: 0; }
.input-icon-wrap i.field-icon { position: absolute; left: 9px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 11px; pointer-events: none; }
.input-icon-wrap .form-input { padding-left: 28px; }

/* Submit button */
.form-submit-btn {
    background: #e8410a;
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 9px;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    align-self: end;
    height: 40px;
}
.form-submit-btn:hover:not(:disabled) { background: #c73508; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(232,65,10,.30); }
.form-submit-btn:disabled { opacity: .65; cursor: not-allowed; }
.btn-loading { display: none; align-items: center; gap: 7px; }

/* ================================================
   SECTION UTILITIES
   ================================================ */
.sec-label { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 10px; display: block; }
.sec-title { font-family: 'Bebas Neue', cursive; font-size: 42px; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 8px; line-height: 1.05; }
.sec-sub { font-family: 'Outfit', sans-serif; font-size: 15px; color: var(--text-muted); }

/* ================================================
   INTRO STRIP
   ================================================ */
.intro-strip { background: var(--primary); padding: 44px 40px; text-align: center; border-bottom: 3px solid rgba(255,202,28,.2); }
.intro-strip p { font-family: 'Outfit', sans-serif; font-size: 15px; color: rgba(255,255,255,.72); max-width: 820px; margin: 0 auto 8px; line-height: 1.8; }
.intro-strip p:first-child { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }

/* ================================================
   SUPPORT HIGHLIGHTS
   ================================================ */
.support-highlights { background: var(--light-bg); padding: 72px 40px; }
.support-highlights .section-head { text-align: center; margin-bottom: 48px; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1160px; margin: 0 auto; }
.support-card { background: #fff; border-radius: var(--radius); padding: 36px 26px; text-align: center; box-shadow: var(--shadow-sm); border: 1.5px solid var(--border); transition: all .28s ease; font-family: 'Outfit', sans-serif; }
.support-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.support-card .s-icon { width: 64px; height: 64px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 24px; color: var(--accent); box-shadow: 0 4px 14px rgba(0,60,60,.22); }
.support-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.support-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ================================================
   FEATURES SECTION
   ================================================ */
.features-section { background: #fff; padding: 72px 40px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1160px; margin: 0 auto; }
.feature-card { border-radius: var(--radius); padding: 32px 26px; font-family: 'Outfit', sans-serif; background: var(--light-bg); border: 1.5px solid var(--border); transition: all .28s ease; position: relative; overflow: hidden; }
.feature-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.fc-icon { width: 48px; height: 48px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--accent); margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feature-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.feature-card ul { list-style: none; padding: 0; margin: 0; }
.feature-card ul li { font-size: 13px; color: var(--text-muted); padding: 3px 0 3px 18px; position: relative; }
.feature-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; font-size: 12px; }
.feature-card.dark-card { background: var(--primary); border-color: var(--primary); }
.feature-card.dark-card h3 { color: #fff; }
.feature-card.dark-card p, .feature-card.dark-card li { color: rgba(255,255,255,.70); }
.feature-card.dark-card .fc-icon { background: rgba(255,202,28,.15); color: var(--accent); }
.feature-card.dark-card::after { background: var(--accent); }

/* ================================================
   ADVANTAGE / TIPS
   ================================================ */
.bookingopro-advantage-section { background: var(--light-bg); padding: 72px 40px; border-top: 1px solid var(--border); }
.advantage-container { max-width: 1160px; margin: 0 auto; }
.advantage-container > h2 { font-family: 'Bebas Neue', cursive; text-align: center; margin-bottom: 48px; font-size: 42px; letter-spacing: 1.5px; color: var(--primary); }
.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.advantage-card { background: white; padding: 32px 22px; border-radius: var(--radius); text-align: center; transition: all .28s; border: 1.5px solid var(--border); font-family: 'Outfit', sans-serif; box-shadow: var(--shadow-sm); }
.advantage-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.advantage-icon { width: 72px; height: 72px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 28px; color: white; box-shadow: 0 4px 14px rgba(0,60,60,.22); position: relative; }
.advantage-icon::before { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 2px dashed var(--accent); opacity: 0; animation: iconRotate 8s linear infinite; }
.advantage-card:hover .advantage-icon::before { opacity: 1; }
@keyframes iconRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.advantage-card h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.advantage-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ================================================
   PARTNERS
   ================================================ */
.partners-section { background: var(--primary); padding: 56px 40px; }
.partners-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 980px; margin: 0 auto; }
.partner-pill { background: rgba(255,255,255,.07); border: 1px solid rgba(255,202,28,.2); color: rgba(255,255,255,.85); font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600; padding: 9px 20px; border-radius: 50px; transition: all .25s; cursor: default; }
.partner-pill:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); transform: translateY(-2px); }

/* ================================================
   WHY CHOOSE
   ================================================ */
.why-choose-section { position: relative; background: url(/images/car2.png) no-repeat center center/cover; padding: 80px 20px; color: #fff; text-align: center; }
.why-choose-section .overlay { position: absolute; inset: 0; background: rgba(0,20,20,.55); }
.choose-container { position: relative; z-index: 2; }
.choose-title { font-family: 'Bebas Neue', cursive; font-size: 44px; letter-spacing: 2px; margin-bottom: 6px; }
.choose-subtitle { font-family: 'Outfit', sans-serif; font-size: 15px; margin-bottom: 48px; color: rgba(255,255,255,.65); }
.choose-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.choose-card { max-width: 320px; text-align: center; color: #fff; font-family: 'Outfit', sans-serif; }
.icon-circle { width: 80px; height: 80px; background: rgba(255,255,255,.12); border: 2px solid rgba(255,202,28,.3); border-radius: 50%; margin: 0 auto 18px; display: flex; justify-content: center; align-items: center; backdrop-filter: blur(6px); }
.choose-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.choose-card p  { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,.70); }

/* ================================================
   CONTACT STRIP
   ================================================ */
.contact-strip { background: #fff; padding: 56px 40px; text-align: center; border-top: 1px solid var(--border); }
.contact-strip h2 { font-family: 'Bebas Neue', cursive; font-size: 36px; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 6px; }
.contact-strip > p { font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.contact-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.contact-item { background: var(--light-bg); border: 1.5px solid var(--border); padding: 16px 24px; border-radius: var(--radius); display: flex; align-items: center; gap: 12px; transition: all .25s; font-family: 'Outfit', sans-serif; }
.contact-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-item i { font-size: 20px; color: var(--primary); }
.ci-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.ci-value { font-size: 15px; font-weight: 700; color: var(--text); }

/* ================================================
   FOOTER SECTION
   ================================================ */
.footer-section {
    background: var(--primary);
    padding: 56px 40px 30px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

/* Newsletter */
.newsletter-box {
    text-align: center;
    margin-bottom: 52px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.newsletter-box h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 30px;
    letter-spacing: 1.5px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #fff;
}
.newsletter-box p {
    font-size: 14px;
    color: rgba(255,255,255,.60);
    margin-bottom: 22px;
}
.newsletter-input {
    display: inline-flex;
    width: 460px;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.newsletter-input input {
    flex: 1;
    padding: 13px 18px;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--text);
    outline: none;
    background: #fff;
}
.newsletter-input input::placeholder { color: #aabdbd; }
.newsletter-input button {
    background: var(--accent);
    color: var(--primary);
    padding: 13px 22px;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .25s;
    white-space: nowrap;
}
.newsletter-input button:hover { background: var(--accent-dark); }

/* Footer columns grid */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1160px;
    margin: 0 auto 48px;
    text-align: left;
}
.footer-column h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 18px;
}
.footer-column ul { list-style: none; padding: 0; }
.footer-column ul li {
    font-size: 13px;
    margin-bottom: 9px;
    color: rgba(255,255,255,.62);
    line-height: 1.5;
}
.footer-column ul li a {
    color: rgba(255,255,255,.62);
    text-decoration: none;
    transition: color .2s;
}
.footer-column ul li a:hover { color: var(--accent); }

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.10);
    padding-top: 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1160px;
    margin: 0 auto;
}

.payment-icons { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.payment-icons img { height: 28px; opacity: 0.85; transition: opacity .2s; }
.payment-icons img:hover { opacity: 1; }

.social-icons { display: flex; align-items: center; gap: 10px; }
.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.75);
    font-size: 15px;
    text-decoration: none;
    transition: all .25s;
}
.social-icons a:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); transform: translateY(-2px); }

/* If social icons are still plain <i> tags (no anchor wrap) */
.social-icons i {
    font-size: 18px;
    margin: 0;
    cursor: pointer;
    color: rgba(255,255,255,.75);
    transition: color .2s;
}
.social-icons i:hover { color: var(--accent); }

.footer-note {
    font-size: 11.5px;
    color: rgba(255,255,255,.42);
    line-height: 1.7;
    text-align: center;
    max-width: 1160px;
    margin: 22px auto 0;
}

/* ================================================
   COOKIE CONSENT
   ================================================ */
.cookie-consent-popup { position: fixed; bottom: 0; left: 0; right: 0; background: white; box-shadow: 0 -4px 20px rgba(0,0,0,.12); z-index: 99998; transform: translateY(100%); transition: transform .4s cubic-bezier(.4,0,.2,1); }
.cookie-consent-popup.show { transform: translateY(0); }
.cookie-consent-container { max-width: 1200px; margin: 0 auto; padding: 22px 28px; position: relative; }
.cookie-close { position: absolute; top: 14px; right: 18px; width: 30px; height: 30px; background: transparent; border: 1.5px solid #ddd; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 13px; color: #777; transition: all .25s; }
.cookie-close:hover { background: var(--primary); border-color: var(--primary); color: white; }
.cookie-content { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 18px; padding-right: 44px; }
.cookie-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--accent); }
.cookie-text { flex: 1; font-family: 'Outfit', sans-serif; }
.cookie-text h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.cookie-text p  { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }
.cookie-text a  { color: var(--primary); text-decoration: underline; font-weight: 600; }
.cookie-actions { display: flex; gap: 12px; justify-content: flex-end; }
.cookie-btn { padding: 10px 24px; border: none; border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .25s; display: flex; align-items: center; gap: 7px; }
.cookie-accept { background: var(--primary); color: white; }
.cookie-accept:hover { background: var(--primary-light); }
.cookie-settings { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.cookie-settings:hover { background: var(--primary); color: white; }
.cookie-settings-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; z-index: 99999; opacity: 0; visibility: hidden; transition: all .25s; }
.cookie-settings-overlay.show { opacity: 1; visibility: visible; }
.cookie-settings-container { background: white; border-radius: 16px; max-width: 560px; width: 90%; max-height: 80vh; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.cookie-settings-header { display: flex; justify-content: space-between; align-items: center; padding: 22px 28px; border-bottom: 1px solid var(--border); font-family: 'Outfit', sans-serif; }
.cookie-settings-header h3 { font-size: 20px; font-weight: 700; color: var(--text); }
.cookie-settings-body { flex: 1; overflow-y: auto; padding: 22px 28px; }
.cookie-category { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); font-family: 'Outfit', sans-serif; }
.cookie-category:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cookie-category-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.cookie-category h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cookie-category p  { font-size: 13px; color: #666; margin: 0; }
.cookie-toggle { position: relative; display: inline-block; width: 50px; height: 26px; cursor: pointer; flex-shrink: 0; }
.cookie-toggle.disabled { cursor: not-allowed; opacity: .55; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .3s; border-radius: 26px; }
.toggle-slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 4px; bottom: 4px; background-color: white; transition: .3s; border-radius: 50%; }
.cookie-toggle input:checked + .toggle-slider { background-color: var(--primary); }
.cookie-toggle input:checked + .toggle-slider:before { transform: translateX(24px); }
.cookie-settings-footer { padding: 18px 28px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; }

/* ================================================
   TRAVEL MODAL
   ================================================ */
.travel-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,20,20,.60); display: flex; align-items: center; justify-content: center; z-index: 99990; opacity: 0; visibility: hidden; transition: all .35s ease; }
.travel-modal-overlay.show { opacity: 1; visibility: visible; }
.travel-modal-container { background: white; border-radius: 20px; max-width: 620px; width: 92%; box-shadow: 0 30px 80px rgba(0,0,0,.35); position: relative; overflow: hidden; }
.travel-modal-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; background: rgba(0,0,0,.08); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #444; transition: all .2s; z-index: 10; }
.travel-modal-close:hover { background: rgba(0,0,0,.18); }
.travel-modal-content { display: flex; }
.travel-modal-left { background: var(--primary); padding: 36px 28px; display: flex; flex-direction: column; align-items: center; gap: 20px; min-width: 200px; }
.travel-modal-agent { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,.25); }
.modal-highlights { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.modal-highlight-item { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.08); padding: 10px 14px; border-radius: 10px; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9); }
.modal-highlight-item i { width: 30px; height: 30px; background: var(--accent); color: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.travel-modal-right { padding: 36px 32px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.travel-modal-logo { margin-bottom: 18px; }
.travel-modal-logo h2 { font-family: 'Bebas Neue', cursive; font-size: 28px; letter-spacing: 1px; color: var(--primary); }
.travel-modal-logo .dot { color: var(--text-muted); }
.travel-modal-logo .com { color: var(--accent-dark); }
.travel-modal-title { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.travel-modal-subtitle { font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.travel-modal-cta { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--primary); color: white; text-decoration: none; padding: 14px 24px; border-radius: 12px; font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 800; transition: all .25s; box-shadow: 0 6px 20px rgba(0,60,60,.25); }
.travel-modal-cta:hover { background: var(--primary-light); transform: translateY(-2px); color: white; }
.travel-modal-cta i { font-size: 18px; color: var(--accent); }
.travel-modal-note { font-family: 'Outfit', sans-serif; font-size: 12px; color: #8eaaaa; margin-top: 12px; text-align: center; }

/* ================================================
   PHONE DEALS POPUP
   ================================================ */
.phone-deals-popup { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(140px); z-index: 99980; opacity: 0; visibility: hidden; transition: all .45s cubic-bezier(.4,0,.2,1); pointer-events: none; width: max-content; max-width: calc(100vw - 32px); }
.phone-deals-popup.show { transform: translateX(-50%) translateY(0); opacity: 1; visibility: visible; pointer-events: all; }
.phone-deals-content { background: white; border-radius: 50px; padding: 10px 18px 10px 14px; box-shadow: 0 8px 40px rgba(0,0,0,.18); border: 1.5px solid var(--border); display: flex; flex-direction: row; align-items: center; gap: 16px; position: relative; white-space: nowrap; overflow: visible; }
.phone-deals-agent { position: relative; flex-shrink: 0; }
.phone-deals-agent img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2.5px solid var(--primary); display: block; }
.agent-online-badge { position: absolute; bottom: 2px; right: 2px; width: 13px; height: 13px; background: #22c55e; border: 2px solid white; border-radius: 50%; }
.phone-deals-text { font-family: 'Outfit', sans-serif; flex-shrink: 0; }
.phone-deals-text h4 { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 3px; line-height: 1; }
.phone-deals-promo { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.3; }
.promo-code-inline { background: var(--accent); color: var(--primary); font-weight: 800; padding: 1px 7px; border-radius: 5px; font-size: 12px; }
.phone-deals-subtitle { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.3; }
.phone-deals-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; background: #22c55e; color: white; text-decoration: none; padding: 12px 22px; border-radius: 50px; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 800; transition: all .25s; white-space: nowrap; }
.phone-deals-cta:hover { background: #16a34a; color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34,197,94,.35); }
.phone-deals-cta i { font-size: 14px; }
.phone-deals-close { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; background: #555; border: 2px solid white; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 10px; color: white; transition: all .2s; line-height: 1; }
.phone-deals-close:hover { background: #222; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
    .hamburger { display: block; }
    .call-box { display: none; }
    .navbar { position: absolute; top: 60px; left: 0; width: 100%; background: var(--primary); flex-direction: column; padding: 20px 0; gap: 20px; display: none; animation: slideDown .3s ease; text-align: center; }
    .navbar.show { display: flex; }
    .dropdown-menu { position: relative; top: 5px; background: #fff; width: 100%; box-shadow: none; border-radius: 0; }
    .dropdown:hover .dropdown-menu { display: none; }
    .dropdown.open .dropdown-menu { display: block; }
}

@media (max-width: 1100px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .support-grid  { grid-template-columns: repeat(2, 1fr); }
    .advantage-grid{ grid-template-columns: repeat(2, 1fr); }
    .footer-links  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Hero mobile */
    .hero { padding: 30px 16px 34px; }
    .hero-content h1 { font-size: 44px; letter-spacing: 1px; }
    .hero-content h4 { font-size: 10px; letter-spacing: 3px; }
    .hero-tagline { white-space: normal; font-size: 14px; }

    /* Booking form — full single column */
    .bfs-row-1,
    .bfs-row-2-same,
    .bfs-row-2-diff { grid-template-columns: 1fr !important; }
    .diff-mode .bfs-row-2-diff { grid-template-columns: 1fr !important; }
    .form-submit-btn { width: 100%; justify-content: center; height: auto; padding: 13px 20px; font-size: 15px; }
    .booking-form { padding: 14px 12px 12px; }
    .bfs-tabs { flex-wrap: wrap; }

    .features-grid, .support-grid, .advantage-grid { grid-template-columns: 1fr; }
    .intro-strip, .features-section, .support-highlights, .partners-section, .contact-strip { padding: 50px 18px; }
    .bookingopro-advantage-section { padding: 50px 18px; }
    .contact-items { flex-direction: column; align-items: stretch; }

    /* Footer mobile */
    .footer-section { padding: 44px 18px 24px; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 28px; }
    .newsletter-input { width: 100%; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 16px; }

    .cookie-content { flex-direction: column; padding-right: 0; }
    .cookie-actions { flex-direction: column; gap: 8px; }
    .cookie-btn { width: 100%; justify-content: center; }
    .cookie-settings-container { width: 95%; }
    .cookie-settings-header, .cookie-settings-body, .cookie-settings-footer { padding: 20px; }
    .cookie-category-header { flex-direction: column; align-items: flex-start; gap: 15px; }

    .travel-modal-content { flex-direction: column; }
    .travel-modal-left { padding: 24px 20px; flex-direction: row; flex-wrap: wrap; min-width: unset; }

    .phone-deals-popup { bottom: 12px; }
    .phone-deals-content { white-space: normal; border-radius: 18px; padding: 14px 16px; gap: 12px; flex-wrap: wrap; justify-content: center; max-width: calc(100vw - 24px); }
    .phone-deals-agent img { width: 46px; height: 46px; }
    .phone-deals-text { text-align: center; flex-shrink: 1; }
    .phone-deals-cta { font-size: 13px; padding: 10px 18px; width: 100%; justify-content: center; border-radius: 12px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 34px; }
    .sec-title, .advantage-container > h2, .choose-title { font-size: 32px; }
    .phone-deals-content { border-radius: 16px; padding: 12px 14px; gap: 10px; }
    .phone-deals-text h4 { font-size: 14px; }
    .footer-links { grid-template-columns: 1fr; }
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}