/* =============================================
   GOCRUZY — MAIN STYLESHEET
   4-Vertical Travel Site: Flights · Hotels · Cruises · Cars
   ============================================= */

/* ---- VARIABLES ---- */
:root {
    --navy:      #082C6C;
    --blue:      #003C9E;
    --blue-light:#e6f0ff;
    --orange:    #FF6A00;
    --orange-dark:#e05c00;
    --white:     #ffffff;
    --gray-50:   #f8f9fa;
    --gray-100:  #f0f2f5;
    --gray-200:  #e4e7eb;
    --gray-400:  #9aa5b4;
    --gray-600:  #627282;
    --gray-800:  #2d3748;
    --text:      #1a202c;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
    --shadow:    0 4px 16px rgba(0,0,0,.10);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
    --radius:    12px;
    --radius-sm: 8px;
    --transition: .2s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 14px; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.section-header p { font-size: 17px; color: var(--gray-600); }

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,.10);
    transition: background .3s ease, box-shadow .3s ease;
}
.header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,.12);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; gap: 20px;
}

/* Logo */
.logo { font-size: 26px; font-weight: 900; letter-spacing: -0.5px; display: flex; align-items: center; }
.logo-img {
    height: 64px; width: auto; object-fit: contain; display: block;
}
.logo-img-footer {
    width: 220px; height: auto; object-fit: contain; display: block;
}
.logo-fallback { display: none; align-items: center; }
.logo-go { color: var(--orange); }
.logo-cruzy { color: var(--white); transition: color .3s; }
.header.scrolled .logo-cruzy { color: var(--navy); }
.logo-footer .logo-cruzy { color: var(--navy); }

/* Nav */
.nav-list { display: flex; gap: 4px; align-items: center; }
.nav-link {
    display: flex; align-items: center; gap: 5px;
    padding: 6px 10px; border-radius: 7px;
    font-size: 13.5px; font-weight: 600; color: var(--navy);
    transition: var(--transition);
}
.nav-link i { font-size: 12px; }
.nav-link:hover { background: var(--blue-light); color: var(--blue); }
.header.scrolled .nav-link { color: var(--navy); }
.header.scrolled .nav-link:hover { background: var(--blue-light); color: var(--blue); }

/* Call button */
.btn-call {
    display: flex; align-items: center; gap: 7px;
    padding: 8px 16px; border-radius: 50px;
    background: var(--orange); color: var(--white);
    font-size: 13.5px; font-weight: 700;
    transition: var(--transition); white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255,106,0,.35);
}
.btn-call:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    width: 32px; padding: 4px;
}
.nav-toggle span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.header.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative; min-height: 88vh;
    display: flex; align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, #021b4e 0%, #082C6C 40%, #003C9E 75%, #0057c8 100%);
}

.hero-bg { position: absolute; inset: 0; opacity: .07; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

/* Subtle decorative pattern overlay */
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(255,106,0,.18) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(0,174,239,.15) 0%, transparent 50%);
}

.hero-content {
    position: relative; z-index: 2;
    width: 100%; padding: 110px 0 60px;
}

.hero-title {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900; color: #ffffff;
    line-height: 1.1; margin-bottom: 14px;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-subtitle {
    font-size: clamp(15px, 2vw, 19px);
    color: rgba(255,255,255,.85);
    margin-bottom: 36px; font-weight: 400;
    letter-spacing: 2px; text-transform: uppercase;
}

/* ---- SEARCH WIDGET ---- */
.search-widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 1000px;
}

/* Vertical tabs */
.search-tabs {
    display: flex;
    background: var(--navy);
}
.search-tab {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 8px; font-size: 14px; font-weight: 600;
    color: rgba(255,255,255,.7); transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.search-tab i { font-size: 16px; }
.search-tab:hover { color: var(--white); background: rgba(255,255,255,.08); }
.search-tab.active { color: var(--white); border-bottom-color: var(--orange); background: rgba(255,255,255,.12); }

/* Search forms */
.search-form { display: none; padding: 24px; }
.search-form.active { display: block; }

.trip-type-row, .same-loc-row {
    display: flex; gap: 20px; margin-bottom: 16px; flex-wrap: wrap;
}
.radio-label {
    display: flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 500; color: var(--gray-800); cursor: pointer;
}
.radio-label input { accent-color: var(--blue); }

.form-row {
    display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end;
}
.form-group {
    display: flex; flex-direction: column; gap: 6px;
    flex: 1; min-width: 130px;
}
.form-group.form-group-sm { flex: 0 0 120px; min-width: 100px; }
.form-group.form-group-lg { flex: 2; min-width: 200px; }
.form-group label {
    font-size: 12px; font-weight: 600; color: var(--gray-600);
    text-transform: uppercase; letter-spacing: .5px;
    display: flex; align-items: center; gap: 5px;
}
.form-group label i { color: var(--blue); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 10px 12px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 14px; color: var(--text);
    background: var(--white);
    transition: border-color .2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,113,194,.1); }
.form-group input::placeholder { color: var(--gray-400); }

.swap-btn {
    padding: 10px; margin-bottom: 2px; align-self: flex-end;
    border-radius: 50%; width: 36px; height: 36px;
    background: var(--blue-light); color: var(--blue);
    font-size: 13px; transition: var(--transition);
    flex-shrink: 0;
}
.swap-btn:hover { background: var(--blue); color: var(--white); transform: rotate(180deg); }

.return-field { transition: var(--transition); }
.return-field.hidden { opacity: 0; pointer-events: none; flex: 0 !important; min-width: 0 !important; overflow: hidden; }

.dropoff-field { display: none; }
.dropoff-field.visible { display: flex; }

.search-btn {
    padding: 12px 22px; border-radius: var(--radius-sm);
    background: var(--orange); color: var(--white);
    font-size: 15px; font-weight: 700;
    transition: var(--transition); align-self: flex-end;
    white-space: nowrap; flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(245,166,35,.4);
}
.search-btn:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 5px 16px rgba(245,166,35,.5); }

/* Hero phone CTA */
.hero-phone-cta {
    display: flex; align-items: center; gap: 12px;
    margin-top: 20px; color: rgba(255,255,255,.8);
    font-size: 15px; flex-wrap: wrap;
}
.hero-phone-cta i { font-size: 20px; color: var(--orange); }
.hero-phone-link {
    font-size: 18px; font-weight: 800; color: #ffffff;
    background: rgba(255,255,255,.15); padding: 6px 20px;
    border-radius: 50px; border: 2px solid rgba(255,255,255,.4);
    transition: var(--transition); backdrop-filter: blur(4px);
}
.hero-phone-link:hover { background: var(--orange); border-color: var(--orange); }
.avail-badge {
    font-size: 12px; font-weight: 600; color: #4ade80;
    background: rgba(74,222,128,.15); padding: 3px 10px;
    border-radius: 50px; border: 1px solid rgba(74,222,128,.35);
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
    background: var(--navy);
    padding: 20px 0;
    border-top: 3px solid var(--orange);
}
.trust-items {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.trust-item {
    display: flex; align-items: center; gap: 14px;
    color: var(--white);
}
.trust-item i { font-size: 28px; color: var(--orange); flex-shrink: 0; }
.trust-item strong { display: block; font-size: 14px; font-weight: 700; }
.trust-item span { font-size: 12px; color: rgba(255,255,255,.7); }

/* =============================================
   VERTICALS SHOWCASE
   ============================================= */
.verticals-section { padding: 80px 0; background: var(--gray-50); }

.verticals-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.vertical-card {
    border-radius: var(--radius); overflow: hidden;
    background: var(--white); box-shadow: var(--shadow);
    cursor: pointer; transition: transform .25s, box-shadow .25s;
    display: block; text-decoration: none; color: inherit;
}
.vertical-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.vc-image {
    position: relative; height: 180px;
    display: flex; align-items: flex-end;
    background-size: cover; background-position: center;
}
.vc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,35,80,.2), rgba(0,35,80,.6));
}
.vc-icon {
    position: absolute; top: 16px; right: 16px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--orange); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.vc-label {
    position: relative; z-index: 1;
    padding: 12px 16px; font-size: 20px; font-weight: 800;
    color: var(--white);
}
.vc-body { padding: 18px; }
.vc-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.vc-body p { font-size: 13px; color: var(--gray-600); margin-bottom: 14px; line-height: 1.5; }
.vc-cta { font-size: 14px; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 6px; }
.vertical-card:hover .vc-cta { gap: 10px; }
.vc-cta i { transition: transform .2s; }
.vertical-card:hover .vc-cta i { transform: translateX(4px); }

/* Vertical background — photo + gradient overlay */
.flights-bg {
    background:
        linear-gradient(135deg, rgba(0,60,158,.65) 0%, rgba(0,174,239,.4) 100%),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=500&q=75') center/cover no-repeat;
}
.hotels-bg {
    background:
        linear-gradient(135deg, rgba(8,44,108,.65) 0%, rgba(253,184,19,.35) 100%),
        url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?auto=format&fit=crop&w=500&q=75') center/cover no-repeat;
}
.cruises-bg {
    background:
        linear-gradient(135deg, rgba(8,59,138,.65) 0%, rgba(0,174,239,.4) 100%),
        url('https://images.unsplash.com/photo-1548574505-5e239809ee19?auto=format&fit=crop&w=500&q=75') center/cover no-repeat;
}
.cars-bg {
    background:
        linear-gradient(135deg, rgba(180,60,0,.6) 0%, rgba(255,176,0,.38) 100%),
        url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=500&q=75') center/cover no-repeat;
}

/* Hero slide backgrounds — matched to SVG logo palette */
.hero-slide-flights { background: linear-gradient(135deg, #03174a 0%, #003C9E 50%, #00AEEF 100%); }
.hero-slide-hotels  { background: linear-gradient(135deg, #082C6C 0%, #083B8A 50%, #FDB813 100%); }
.hero-slide-cruises { background: linear-gradient(135deg, #03174a 0%, #083B8A 50%, #00AEEF 100%); }
.hero-slide-cars    { background: linear-gradient(135deg, #3a1500 0%, #FF6A00 60%, #FFB000 100%); }

/* =============================================
   DEALS SECTION
   ============================================= */
.deals-section { padding: 80px 0; background: var(--white); }

.deal-tabs {
    display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap;
}
.deal-tab {
    display: flex; align-items: center; gap: 7px;
    padding: 10px 22px; border-radius: 50px;
    font-size: 14px; font-weight: 600; color: var(--gray-600);
    background: var(--gray-100); transition: var(--transition);
}
.deal-tab:hover { background: var(--blue-light); color: var(--blue); }
.deal-tab.active { background: var(--navy); color: var(--white); }

.deals-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.deals-grid.active { display: grid; }

/* Deal Card */
.deal-card {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius); padding: 20px;
    position: relative; background: var(--white);
    transition: transform .2s, box-shadow .2s;
    display: flex; flex-direction: column; gap: 14px;
}
.deal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }

.deal-badge {
    position: absolute; top: -10px; right: 14px;
    padding: 4px 12px; border-radius: 50px;
    font-size: 11px; font-weight: 700; white-space: nowrap;
}
.deal-badge.hot    { background: #fff3e0; color: #e65100; }
.deal-badge.limited { background: #fce4ec; color: #c62828; }
.deal-badge.best   { background: #e8f5e9; color: #2e7d32; }

/* Route display (flights) */
.deal-route {
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px; padding: 12px 0; border-bottom: 1px solid var(--gray-100);
}
.route-point { text-align: center; }
.city-code { display: block; font-size: 22px; font-weight: 800; color: var(--navy); }
.city-name { display: block; font-size: 11px; color: var(--gray-600); }
.route-arrow { color: var(--blue); font-size: 18px; }

/* Hotel info */
.deal-hotel-info h4,
.deal-cruise-info h4,
.deal-car-info h4 {
    font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.deal-hotel-info p,
.deal-car-info p { font-size: 13px; color: var(--gray-600); }
.stars-row { color: #f5a623; font-size: 14px; margin: 4px 0; }
.cruise-line-name { font-size: 13px; color: var(--blue); font-weight: 600; margin-top: 4px; }
.cruise-line-name i { margin-right: 4px; }

.deal-meta {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.deal-meta span {
    display: flex; align-items: center; gap: 4px;
    font-size: 12px; color: var(--gray-600);
    background: var(--gray-50); padding: 3px 8px;
    border-radius: 50px;
}
.deal-meta i { color: var(--blue); font-size: 11px; }

.deal-price {
    display: flex; align-items: baseline; gap: 4px; margin-top: auto;
}
.deal-price .from { font-size: 12px; color: var(--gray-400); }
.deal-price .amount { font-size: 28px; font-weight: 900; color: var(--navy); }
.deal-price .unit { font-size: 12px; color: var(--gray-400); }

.btn-deal {
    display: block; text-align: center;
    padding: 11px; border-radius: var(--radius-sm);
    background: var(--orange); color: var(--white);
    font-size: 14px; font-weight: 700;
    transition: var(--transition);
}
.btn-deal:hover { background: var(--orange-dark); }

.deals-footer {
    margin-top: 40px; text-align: center;
    display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.deals-footer p { font-size: 13px; color: var(--gray-400); }

.btn-outline-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px;
    border: 2px solid var(--navy); color: var(--navy);
    font-size: 15px; font-weight: 700; transition: var(--transition);
}
.btn-outline-primary:hover { background: var(--navy); color: var(--white); }

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; text-align: center;
}
.stat-item { color: var(--white); }
.stat-num {
    font-size: clamp(40px, 5vw, 60px); font-weight: 900;
    line-height: 1; display: inline;
}
.stat-sfx { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--orange); }
.stat-label { display: block; font-size: 14px; color: rgba(255,255,255,.75); margin-top: 8px; font-weight: 500; }

/* =============================================
   WHY GOCRUZY
   ============================================= */
.why-section { padding: 80px 0; background: var(--gray-50); }

.why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--white); border-radius: var(--radius);
    padding: 32px 24px; text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.why-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--blue-light); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 20px;
}
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { padding: 80px 0; background: var(--white); }

.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.t-card {
    background: var(--gray-50); border-radius: var(--radius);
    padding: 28px; border: 1.5px solid var(--gray-200);
    display: flex; flex-direction: column; gap: 16px;
    transition: box-shadow .2s;
}
.t-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }
.t-stars { color: #f5a623; font-size: 16px; }
.t-card p { font-size: 14px; color: var(--gray-800); line-height: 1.65; font-style: italic; flex: 1; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--blue); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.t-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.t-info span { font-size: 12px; color: var(--gray-400); }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--blue-light) 100%);
}
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 60px; align-items: start;
}
.contact-left h2 { font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.contact-left > p { font-size: 16px; color: var(--gray-600); margin-bottom: 32px; line-height: 1.7; }

.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.c-method { display: flex; align-items: center; gap: 14px; }
.c-method-icon {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--navy); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.c-method strong { display: block; font-size: 13px; font-weight: 700; color: var(--gray-800); }
.c-method a { font-size: 15px; font-weight: 600; color: var(--blue); }
.c-method a:hover { text-decoration: underline; }

.vertical-lines h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.vertical-lines ul { display: flex; flex-direction: column; gap: 8px; }
.vertical-lines li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.vertical-lines li i { color: var(--blue); width: 16px; }
.vertical-lines li span { color: var(--gray-600); }
.vertical-lines li a { color: var(--blue); font-weight: 600; }
.vertical-lines li a:hover { text-decoration: underline; }
.phone-note { font-size: 11px; color: var(--gray-400); margin-top: 8px; font-style: italic; }

/* Quote form */
.quote-form {
    background: var(--white); border-radius: var(--radius);
    padding: 36px; box-shadow: var(--shadow);
}
.quote-form h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fg label { font-size: 12px; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: .5px; }
.fg input, .fg select, .fg textarea {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
    font-size: 14px; outline: none; transition: border-color .2s;
    color: var(--text); background: var(--white);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
    border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,113,194,.1);
}
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.btn-submit {
    width: 100%; padding: 14px;
    background: var(--orange); color: var(--white);
    border-radius: var(--radius-sm); font-size: 16px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: var(--transition); margin-top: 4px;
}
.btn-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 5px 16px rgba(245,166,35,.4); }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
    padding: 60px 0;
    background: var(--navy);
}
.newsletter-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.nl-text h2 { font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.nl-text p { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 28px; }

.nl-form {
    display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.nl-form input {
    flex: 1; min-width: 180px; padding: 12px 16px;
    border-radius: var(--radius-sm); border: none; outline: none;
    font-size: 14px; background: rgba(255,255,255,.12);
    color: var(--white); border: 1.5px solid rgba(255,255,255,.2);
}
.nl-form input::placeholder { color: rgba(255,255,255,.5); }
.nl-form input:focus { border-color: var(--orange); background: rgba(255,255,255,.18); }
.nl-form button {
    padding: 12px 24px; border-radius: var(--radius-sm);
    background: var(--orange); color: var(--white);
    font-size: 14px; font-weight: 700;
    display: flex; align-items: center; gap: 7px;
    transition: var(--transition);
}
.nl-form button:hover { background: var(--orange-dark); }
.nl-disclaimer { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 14px; }
.nl-disclaimer i { margin-right: 4px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #001f4e; padding: 60px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px; margin-bottom: 48px;
}
.f-brand p { font-size: 14px; color: rgba(255,255,255,.6); margin: 16px 0 24px; line-height: 1.7; }
.logo-footer .logo-go { color: var(--orange); }

.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; transition: var(--transition);
}
.social-links a:hover { background: var(--orange); color: var(--white); }

.f-col h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.f-col ul { display: flex; flex-direction: column; gap: 10px; }
.f-col ul li a, .f-col ul li span {
    font-size: 14px; color: rgba(255,255,255,.6); transition: var(--transition);
    display: flex; align-items: center; gap: 7px;
}
.f-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.f-col ul li i { font-size: 12px; color: var(--orange); }

.f-contact { display: flex; flex-direction: column; gap: 12px; }
.f-contact li { display: flex; align-items: flex-start; gap: 10px; }
.f-contact li i { color: var(--orange); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.f-contact li a, .f-contact li span { font-size: 14px; color: rgba(255,255,255,.7); }
.f-contact li a:hover { color: var(--orange); }

.payment-icons {
    display: flex; gap: 12px; margin-top: 24px;
    flex-wrap: wrap;
}
.payment-icons i { font-size: 28px; color: rgba(255,255,255,.5); transition: color .2s; }
.payment-icons i:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.footer-disclaimer a { color: rgba(255,255,255,.6); text-decoration: underline; }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--orange); color: var(--white);
    font-size: 16px; box-shadow: 0 4px 16px rgba(0,0,0,.2);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s;
    transform: translateY(16px);
}
.back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.will-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}
.will-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-title  { animation: fadeInUp .7s ease both; }
.hero-subtitle { animation: fadeInUp .7s .15s ease both; }
.search-widget { animation: fadeInUp .7s .3s ease both; }
.hero-phone-cta { animation: fadeInUp .7s .45s ease both; }

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
    .trust-items { grid-template-columns: repeat(2, 1fr); }
    .verticals-grid { grid-template-columns: repeat(2, 1fr); }
    .deals-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
    .nav {
        display: none; position: fixed; inset: 72px 0 0 0;
        background: var(--white); z-index: 999;
        flex-direction: column; padding: 20px;
        box-shadow: var(--shadow-lg);
    }
    .nav.open { display: flex; }
    .nav-list { flex-direction: column; gap: 4px; }
    .nav-link { color: var(--gray-800) !important; padding: 12px 16px; font-size: 16px; }
    .nav-toggle { display: flex; }
    .call-text { display: none; }
    .btn-call { padding: 9px 12px; }

    .hero-content { padding: 100px 0 40px; }
    .search-tabs { overflow-x: auto; }
    .search-tab span { display: none; }
    .search-tab { padding: 12px 16px; }
    .form-row { flex-direction: column; gap: 12px; }
    .form-group, .form-group.form-group-sm, .form-group.form-group-lg { flex: 1; min-width: 100%; }
    .swap-btn { align-self: center; transform: rotate(90deg); }
    .search-btn { width: 100%; justify-content: center; }

    .trust-items { grid-template-columns: 1fr 1fr; gap: 12px; }
    .trust-item i { font-size: 22px; }

    .verticals-grid { grid-template-columns: 1fr 1fr; }
    .deals-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .fg-row { grid-template-columns: 1fr; }
    .deal-tabs { gap: 6px; }
    .deal-tab { padding: 8px 14px; font-size: 13px; }

    .hero-phone-cta { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
    .verticals-grid { grid-template-columns: 1fr; }
    .trust-items { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .nl-form { flex-direction: column; }
    .nl-form input, .nl-form button { width: 100%; }
    .btn-call span { display: none; }
    .search-tab i { font-size: 18px; }
}
