/* TYS TOURISM - Main Styles */
:root {
  --primary: #12345a;
  --secondary: #f7941d;
  --aqua: #19a9cf;
  --accent: #1f5f8b;
  --light: #f7fafc;
  --dark: #0f172a;
  --text: #334155;
  --text-light: #64748b;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Inter, sans-serif; color: var(--text); line-height: 1.6; overflow-x: hidden; background: var(--white); }
h1,h2,h3,h4 { font-family: "Playfair Display", serif; color: var(--primary); }
a { color: inherit; }
.top-bar { background: var(--primary); color: var(--white); padding: 8px 0; font-size: .85rem; }
.top-bar-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.top-bar-info { display: flex; gap: 2rem; flex-wrap: wrap; }
.top-bar-info span { display: flex; align-items: center; gap: .5rem; }
.top-bar-info i { color: var(--secondary); }
header { position: sticky; top: 0; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); z-index: 1000; box-shadow: var(--shadow); }
nav { max-width: 1280px; margin: 0 auto; padding: .75rem 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1.2rem; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { width: 250px; max-height: 72px; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 1.2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 700; font-size: .92rem; transition: color .3s; position: relative; }
.nav-links a::after { content: ""; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--secondary); transition: width .3s; }
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: .8rem; }
.language-switcher { display: flex; align-items: center; gap: .35rem; background: #eef2f7; padding: .35rem; border-radius: 999px; }
.language-switcher button { border: none; background: transparent; min-width: 44px; padding: .35rem .48rem; border-radius: 999px; font-weight: 800; cursor: pointer; color: var(--text); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .08rem; line-height: 1; transition: .25s; }
.language-switcher button.active { background: var(--primary); color: var(--white); box-shadow: 0 6px 14px rgba(18,52,90,.18); }
.language-switcher .flag { font-size: 1.05rem; display: block; line-height: 1; }
.language-switcher .lang-code { font-size: .68rem; letter-spacing: .4px; display: block; line-height: 1; }
.language-switcher button:hover { background: rgba(18,52,90,.08); }
.language-switcher button.active:hover { background: var(--primary); }

.btn-primary { background: linear-gradient(135deg, var(--secondary), #d87512); color: var(--white); padding: .78rem 1.35rem; border-radius: 8px; text-decoration: none; font-weight: 800; border: none; cursor: pointer; display: inline-block; text-align: center; transition: .25s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(247,148,29,.3); }
.btn-outline { border: 2px solid var(--white); color: var(--white); padding: .75rem 1.5rem; border-radius: 8px; text-decoration: none; font-weight: 800; display: inline-block; transition: .25s; }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }
.hero { position: relative; min-height: 760px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 7rem 2rem 8rem; }
.hero-bg { position: absolute; inset: 0; background: url("https://images.unsplash.com/photo-1555993539-1732b0258235?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80") center/cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(18,52,90,.9), rgba(15,23,42,.72)); }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); max-width: 980px; animation: fadeInUp 1s ease; }
.hero-badge { display: inline-block; background: rgba(247,148,29,.18); border: 1px solid var(--secondary); color: #ffb35a; padding: .5rem 1.5rem; border-radius: 50px; font-size: .9rem; font-weight: 800; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 2px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.1rem); color: var(--white); margin-bottom: 1.5rem; line-height: 1.15; }
.hero p { font-size: 1.22rem; margin-bottom: 2.5rem; opacity: .93; font-weight: 300; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.booking-bar { background: var(--white); padding: 2rem; border-radius: 16px; box-shadow: var(--shadow-lg); max-width: 1100px; margin: -70px auto 0; position: relative; z-index: 10; }
.booking-bar h2 { margin-bottom: 1rem; font-size: 1.35rem; }
.quick-form { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; align-items: end; }
.booking-field,.form-group { display: flex; flex-direction: column; gap: .5rem; }
.booking-field label,.form-group label { font-size: .82rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: .6px; }
.booking-field input,.booking-field select,.form-group input,.form-group textarea,.form-group select { padding: .85rem 1rem; border: 2px solid #e2e8f0; border-radius: 8px; font-family: inherit; font-size: 1rem; width: 100%; background: var(--white); transition: .25s; }
.booking-field input:focus,.booking-field select:focus,.form-group input:focus,.form-group textarea:focus,.form-group select:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(247,148,29,.16); }
.section,.process-section,.features-section,.contact-section { padding: 6rem 2rem; max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.section-header p { color: var(--text-light); max-width: 760px; margin: 0 auto; font-size: 1.1rem; }
.divider { width: 64px; height: 4px; background: linear-gradient(90deg, var(--secondary), var(--aqua)); margin: 1.5rem auto; border-radius: 2px; }
.services-grid,.relocation-grid,.fleet-grid,.tours-grid,.features-grid,.process-grid { display: grid; gap: 2rem; }
.services-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.service-card,.relocation-card,.fleet-card,.process-step { background: var(--white); border-radius: 16px; box-shadow: var(--shadow); transition: .3s; overflow: hidden; }
.service-card:hover,.relocation-card:hover,.fleet-card:hover,.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-image { height: 235px; background-size: cover; background-position: center; position: relative; }
.airport-img { background-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80"); }
.hotel-img { background-image: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80"); }
.cross-img { background-image: url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80"); }
.service-badge { position: absolute; top: 1rem; right: 1rem; background: var(--secondary); color: white; padding: .5rem 1rem; border-radius: 50px; font-weight: 800; font-size: .82rem; }
.service-content { padding: 2rem; }
.service-content h3,.relocation-card h3 { font-size: 1.5rem; margin-bottom: .75rem; }
.service-content p,.relocation-card p,.fleet-card p,.process-step p,.feature-item p { color: var(--text-light); }
.service-features { list-style: none; margin: 1.3rem 0; }
.service-features li { display: flex; gap: .75rem; margin-bottom: .5rem; }
.service-features i { color: var(--secondary); margin-top: .25rem; }
.price-tag { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid #e2e8f0; }
.price { font-size: 1.08rem; font-weight: 900; color: var(--primary); }
.relocation-section,.fleet-section { background: linear-gradient(135deg,#f8fafc 0%,#eef2f7 100%); padding: 6rem 2rem; }
.relocation-container,.fleet-container,.tours-container { max-width: 1280px; margin: 0 auto; }
.relocation-grid { grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
.relocation-card { padding: 2rem; border-top: 4px solid var(--secondary); }
.relocation-icon,.fleet-icon,.feature-icon { display: flex; align-items: center; justify-content: center; color: white; background: linear-gradient(135deg,var(--primary),var(--accent)); }
.relocation-icon { width: 60px; height: 60px; border-radius: 14px; font-size: 1.5rem; margin-bottom: 1.2rem; }
.process-grid,.fleet-grid,.features-grid { grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); }
.process-step { padding: 1.8rem; border: 1px solid #e2e8f0; }
.step-number { width: 42px; height: 42px; border-radius: 50%; background: var(--secondary); color: white; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.fleet-section { padding: 6rem 2rem; }
.fleet-card,.feature-item { padding: 2rem; text-align: center; }
.fleet-icon,.feature-icon { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 1.5rem; font-size: 1.8rem; }
.tours-section { background: var(--primary); color: white; padding: 6rem 2rem; overflow: hidden; }
.tours-section h2,.tours-section p { color: white; }
.tours-grid { grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); }
.tour-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 16px; padding: 2.2rem; transition: .3s; }
.tour-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.15); }
.tour-card h3 { color: #ffb35a; font-size: 1.45rem; margin: .6rem 0 1rem; }
.tour-card p { color: rgba(255,255,255,.88); margin-bottom: 1.5rem; }
.tour-duration { display: inline-flex; align-items: center; gap: .5rem; background: rgba(247,148,29,.2); padding: .45rem .9rem; border-radius: 50px; font-size: .9rem; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; margin-top: 3rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item i { color: var(--secondary); font-size: 1.25rem; margin-top: .25rem; width: 24px; }
.contact-item h4 { font-family: Inter,sans-serif; color: var(--primary); margin-bottom: .25rem; }
.contact-item p { color: var(--text-light); }
.contact-form { background: white; padding: 2.5rem; border-radius: 16px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.3rem; }
.form-group textarea { resize: vertical; min-height: 120px; }
.full-width { width: 100%; padding: 1rem; }
.fine-print { font-size: .82rem; color: var(--text-light); margin-top: .75rem; }
.form-status { margin-top: 1rem; padding: 1rem; border-radius: 10px; display: none; font-weight: 700; }
.form-status.success { display: block; background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.85rem; z-index: 2000; box-shadow: var(--shadow-lg); text-decoration: none; transition: .25s; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
footer { background: var(--dark); color: white; padding: 4rem 2rem 2rem; }
.footer-container { max-width: 1280px; margin: 0 auto 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo { width: 230px; background: white; padding: .4rem; border-radius: 8px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: .3s; text-decoration: none; }
.social-links a:hover { background: var(--secondary); transform: translateY(-3px); }
.footer-links h4 { color: #ffb35a; font-size: 1.1rem; margin-bottom: 1.5rem; font-family: Inter,sans-serif; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: .75rem; }
.footer-links a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-links a:hover { color: #ffb35a; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,.55); font-size: .9rem; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1120px) {
  .quick-form { grid-template-columns: 1fr 1fr; }
  .quick-form button { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .nav-cta { display: none; }
}
@media (max-width: 920px) {
  nav { padding: .7rem 1rem; }
  .logo-img { width: 210px; }
  .nav-links { display: none; position: absolute; top: 82px; left: 0; right: 0; background: white; padding: 1.5rem 2rem; flex-direction: column; align-items: flex-start; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .mobile-menu-btn { display: block; }
  .language-switcher button { border: none; background: transparent; min-width: 44px; padding: .35rem .48rem; border-radius: 999px; font-weight: 800; cursor: pointer; color: var(--text); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .08rem; line-height: 1; transition: .25s; }
}
@media (max-width: 768px) {
  .top-bar-container { flex-direction: column; align-items: flex-start; padding: 0 1rem; }
  .hero { min-height: 700px; padding: 5rem 1rem 7rem; }
  .booking-bar { margin-top: -40px; }
  .quick-form,.form-row { grid-template-columns: 1fr; }
  .quick-form button { grid-column: span 1; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .logo-img { width: 170px; }
  .section,.process-section,.features-section,.contact-section,.relocation-section,.fleet-section,.tours-section,footer { padding-left: 1rem; padding-right: 1rem; }
  .booking-bar,.contact-form { padding: 1.3rem; }
  .price-tag { flex-direction: column; align-items: flex-start; }
  .nav-actions { gap: .4rem; }
}
