/* ===== FaresCost – Global Stylesheet ===== */
:root {
    --navy:    #0a1628;
    --navy2:   #112240;
    --gold:    #c8973a;
    --gold2:   #e8b95a;
    --cream:   #f8f4ef;
    --white:   #ffffff;
    --gray:    #6b7280;
    --light:   #f1f5f9;
    --border:  #e2e8f0;
    --shadow:  0 4px 24px rgba(10,22,40,.10);
    --shadow2: 0 12px 48px rgba(10,22,40,.18);
    --radius:  10px;
    --radius2: 18px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--navy); background: var(--white); font-size: 16px; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { min-width: 1200px; margin: 0 auto; padding: 0 24px; max-width: 80%;}
.section { padding: 90px 0; }
.section-alt { background: var(--cream); }

/* Typography */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }
.section-label { font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.section-title { font-size: clamp(2rem,4vw,2.8rem); color: var(--navy); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray); max-width: 560px; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-subtitle { margin: 0 auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 6px; font-family: var(--font-body); font-size: .95rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,151,58,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy2); transform: translateY(-2px); }

/* ===== TOPBAR ===== */
.topbar { background: var(--navy2); color: rgba(255,255,255,.75); font-size: .82rem; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.topbar a:hover { color: var(--gold); }
.topbar i { margin-right: 5px; color: var(--gold); }
.sep { color: rgba(255,255,255,.2); }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 999; background: var(--white); box-shadow: 0 2px 16px rgba(10,22,40,.08); transition: var(--transition); }
.header-inner { display: flex; align-items: center; gap: 24px; padding-top: 14px; padding-bottom: 14px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 40px; height: 40px; background: var(--navy); border-radius: 8px; display: grid; place-items: center; color: var(--gold); font-size: 1.1rem; }
.logo-text { font-family: var(--font-display); font-size: 1.45rem; color: var(--navy); font-weight: 400; }
.logo-text strong { color: var(--gold); font-weight: 700; }
.logo-light .logo-icon { background: var(--gold); color: var(--navy); }
.logo-light .logo-text { color: var(--white); }
.logo-light .logo-text strong { color: var(--gold2); }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a { padding: 8px 14px; border-radius: 6px; font-size: .92rem; font-weight: 500; color: var(--navy); transition: var(--transition); }
.main-nav a:hover, .main-nav a.active { color: var(--gold); background: rgba(200,151,58,.08); }
.header-cta { margin-left: 12px; padding: 10px 22px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: var(--navy); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 60%, #0a1628 100%); }
.hero-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(200,151,58,.12) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(200,151,58,.08) 0%, transparent 40%); }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,151,58,.15); border: 1px solid rgba(200,151,58,.3); color: var(--gold); padding: 6px 16px; border-radius: 50px; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.6rem,6vw,4.2rem); color: var(--white); margin-bottom: 20px; line-height: 1.1; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.72); margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat { color: var(--white); }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1; }
.hero-stat span { font-size: .82rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.hero-phone { position: absolute; bottom: 40px; right: 0; z-index: 2; background: var(--gold); color: var(--navy); padding: 16px 28px; border-radius: 12px 0 0 12px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow2); }
.hero-phone i { font-size: 1.4rem; }
.hero-phone small { display: block; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; opacity: .7; }
.hero-phone strong { font-family: var(--font-display); font-size: 1.3rem; }

/* ===== VALUE PROPS ===== */
.value-strip { background: var(--navy); padding: 0; }
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.value-item { padding: 32px 28px; border-right: 1px solid rgba(255,255,255,.08); display: flex; align-items: flex-start; gap: 16px; transition: var(--transition); }
.value-item:last-child { border-right: none; }
.value-item:hover { background: rgba(200,151,58,.07); }
.value-icon { width: 48px; height: 48px; background: rgba(200,151,58,.15); border-radius: 10px; display: grid; place-items: center; color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
.value-item h4 { color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
.value-item p { color: rgba(255,255,255,.55); font-size: .84rem; line-height: 1.5; }

/* ===== SERVICES CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card { border-radius: var(--radius2); overflow: hidden; background: var(--white); box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }
.service-card-img { height: 220px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.service-card-body { padding: 28px; }
.service-card-icon { width: 52px; height: 52px; background: var(--navy); color: var(--gold); border-radius: 12px; display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: .93rem; margin-bottom: 20px; }
.service-card a.link-arrow { color: var(--gold); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.service-card a.link-arrow i { transition: transform var(--transition); }
.service-card:hover a.link-arrow i { transform: translateX(4px); }

/* ===== DESTINATIONS GRID ===== */
.dest-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.dest-card { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.dest-card-img { height: 200px; background: var(--navy2); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; transition: transform .4s ease; overflow: hidden; }
.dest-card:hover .dest-card-img { transform: scale(1.04); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,.85) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
.dest-overlay h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.dest-overlay span { color: var(--gold); font-size: .8rem; font-weight: 600; }
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(10,22,40,.92) 0%, rgba(10,22,40,.2) 55%); }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-img-stack { position: relative; height: 500px; }
.why-img-main { width: 75%; height: 380px; object-fit: cover; border-radius: var(--radius2); box-shadow: var(--shadow2); position: absolute; top: 0; left: 0; }
.why-img-main-placeholder { width: 75%; height: 380px; background: linear-gradient(135deg,var(--navy2),#1a3a5c); border-radius: var(--radius2); position: absolute; top: 0; left: 0; display: flex; align-items: center; justify-content: center; font-size: 5rem; color: var(--gold); }
.why-img-accent { width: 55%; height: 240px; object-fit: cover; border-radius: var(--radius2); box-shadow: var(--shadow2); position: absolute; bottom: 0; right: 0; border: 4px solid var(--white); }
.why-img-accent-placeholder { width: 55%; height: 240px; background: linear-gradient(135deg,var(--gold),var(--gold2)); border-radius: var(--radius2); position: absolute; bottom: 0; right: 0; border: 4px solid var(--white); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: var(--navy); }
.why-badge { position: absolute; top: 40%; right: 0; transform: translateX(20%); background: var(--gold); color: var(--navy); padding: 16px 20px; border-radius: 12px; text-align: center; box-shadow: var(--shadow2); z-index: 2; }
.why-badge strong { display: block; font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.why-badge span { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.why-feature { display: flex; align-items: flex-start; gap: 16px; }
.why-feature-icon { width: 44px; height: 44px; background: rgba(200,151,58,.1); color: var(--gold); border-radius: 10px; display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.why-feature h4 { font-family: var(--font-body); font-weight: 600; margin-bottom: 4px; }
.why-feature p { color: var(--gray); font-size: .9rem; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--navy2) 0%, #1a3a5c 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at center, rgba(200,151,58,.12) 0%, transparent 65%); }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 32px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-phone { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.08); color: var(--white); padding: 13px 22px; border-radius: 6px; border: 1px solid rgba(255,255,255,.2); font-weight: 600; font-size: 1.1rem; transition: var(--transition); }
.cta-phone i { color: var(--gold); }
.cta-phone:hover { background: rgba(255,255,255,.14); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow); }
.contact-info-card .ci-icon { width: 48px; height: 48px; background: var(--navy); color: var(--gold); border-radius: 10px; display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-card h4 { font-family: var(--font-body); font-weight: 600; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { color: var(--gray); font-size: .92rem; }
.contact-info-card a:hover { color: var(--gold); }

.contact-form-box { background: var(--white); border-radius: var(--radius2); padding: 40px; box-shadow: var(--shadow2); border: 1px solid var(--border); }
.contact-form-box h3 { font-size: 1.6rem; margin-bottom: 6px; }
.contact-form-box p { color: var(--gray); margin-bottom: 28px; font-size: .93rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .87rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: .95rem; color: var(--navy); background: var(--light); transition: border-color var(--transition); width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: .93rem; font-weight: 500; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); padding: 80px 0 60px; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem,5vw,3rem); margin-bottom: 12px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; align-items: center; color: rgba(255,255,255,.6); font-size: .88rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: .7rem; }

/* ===== ADMIN ===== */
.admin-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.admin-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.admin-table th { background: var(--navy); color: var(--white); padding: 14px 16px; text-align: left; font-weight: 600; white-space: nowrap; }
.admin-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--cream); }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 14px; }
.badge { display: inline-block; padding: 4px 10px; border-radius: 50px; font-size: .78rem; font-weight: 600; }
.badge-bus { background: #dbeafe; color: #1e40af; }
.badge-train { background: #d1fae5; color: #065f46; }
.badge-car { background: #fef3c7; color: #92400e; }
.badge-group { background: #ede9fe; color: #5b21b6; }
.badge-general { background: #f1f5f9; color: #475569; }
.export-bar { display:flex; gap:10px; align-items:center; }

/* ===== ABOUT PAGE ===== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text .section-label { margin-top: 0; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; }
.about-stat { text-align: center; padding: 24px; background: var(--cream); border-radius: var(--radius); }
.about-stat strong { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); }
.about-stat span { font-size: .85rem; color: var(--gray); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card { background: var(--white); border-radius: var(--radius2); overflow: hidden; text-align: center; padding: 36px 24px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.team-avatar { width: 80px; height: 80px; background: var(--navy); border-radius: 50%; display: grid; place-items: center; color: var(--gold); font-size: 2rem; margin: 0 auto 16px; }
.team-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card span { color: var(--gold); font-size: .85rem; font-weight: 600; }
.team-card p { color: var(--gray); font-size: .88rem; margin-top: 10px; }

/* ===== PRIVACY / TERMS ===== */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin: 36px 0 12px; color: var(--navy); }
.legal-content h3 { font-size: 1.15rem; margin: 24px 0 8px; color: var(--navy2); }
.legal-content p, .legal-content li { color: var(--gray); font-size: .95rem; margin-bottom: 10px; }
.legal-content ul { list-style: disc; padding-left: 24px; }
.legal-content .updated { font-size: .85rem; color: var(--gray); margin-bottom: 32px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .9rem; margin: 16px 0 20px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 50%; display: grid; place-items: center; color: rgba(255,255,255,.7); font-size: .9rem; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-weight: 700; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,.55); font-size: .9rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-col ul a i { font-size: .7rem; color: var(--gold); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: .9rem; }
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.55); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.45); }
.footer-payments { display: flex; gap: 12px; font-size: 1.6rem; color: rgba(255,255,255,.4); }
.footer-payments i:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .dest-grid { grid-template-columns: repeat(2,1fr); }
    .value-grid { grid-template-columns: repeat(2,1fr); }
    .value-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .main-nav, .header-cta { display: none; }
    .hamburger { display: flex; }
    .main-nav.open { display: block; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 9999; padding: 80px 24px 40px; }
    .main-nav.open ul { flex-direction: column; gap: 0; }
    .main-nav.open a { display: block; padding: 16px 0; font-size: 1.3rem; border-bottom: 1px solid var(--border); border-radius: 0; }
    .services-grid, .about-intro, .why-grid, .contact-grid, .team-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: 1fr 1fr; }
    .value-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { min-height: 80vh; }
    .hero-stats { gap: 24px; }
    .hero-phone { display: none; }
    .topbar-left { display: none; }
    .about-stats { grid-template-columns: 1fr; }
    .why-img-stack { height: 300px; }
    .why-img-main-placeholder { width: 85%; height: 260px; }
    .why-img-accent-placeholder { width: 55%; height: 160px; }
    .why-badge { display: none; }
}
@media (max-width: 480px) {
    .dest-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .admin-table { font-size: .8rem; }
}
