/* Central Florida Transport - Industrial/Logistics Design */
:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-light: #fed7aa;
  --secondary: #1f2937;
  --secondary-light: #374151;
  --accent: #0ea5e9;
  --gray-900: #111827;
  --gray-700: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.15), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; color: var(--gray-700); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

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

/* Header - Full Width with Border */
.header { position: fixed; top: 0; left: 0; right: 0; background: var(--white); border-bottom: 3px solid var(--primary); height: 80px; display: flex; align-items: center; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.logo { display: flex; align-items: center; gap: 14px; }
.logo-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 28px; height: 28px; color: var(--white); }
.logo-text { font-size: 18px; font-weight: 800; color: var(--secondary); line-height: 1.2; }
.logo-text span { color: var(--primary); display: block; font-size: 13px; font-weight: 600; letter-spacing: 1px; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav a { color: var(--gray-700); font-size: 15px; font-weight: 600; padding: 10px 18px; border-radius: 6px; transition: all 0.3s; }
.nav a:hover { background: var(--gray-100); color: var(--primary); }
.nav a.active { background: var(--primary); color: var(--white); }
.nav a.active:hover { background: var(--primary-dark); }

.nav-cta { background: var(--secondary); color: var(--white) !important; margin-left: 8px; }
.nav-cta:hover { background: var(--gray-900) !important; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { width: 26px; height: 3px; background: var(--secondary); border-radius: 3px; }

/* Hero - Map Route Style */
.hero { min-height: auto; padding: 120px 0 80px; display: flex; position: relative; background: var(--gray-100); }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.hero-text { padding-right: 40px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: var(--white); padding: 8px 20px; border-radius: 30px; font-size: 13px; font-weight: 700; margin-bottom: 28px; text-transform: uppercase; letter-spacing: 1px; }
.hero-title { font-size: 48px; font-weight: 900; color: var(--secondary); line-height: 1.15; margin-bottom: 24px; letter-spacing: -1px; }
.hero-title span { color: var(--primary); position: relative; }
.hero-title span::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 8px; background: var(--primary-light); opacity: 0.5; z-index: -1; }
.hero-desc { font-size: 17px; color: var(--gray-500); margin-bottom: 36px; line-height: 1.8; max-width: 500px; }

.hero-points { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.hero-point { display: flex; align-items: center; gap: 14px; }
.hero-point-icon { width: 42px; height: 42px; background: var(--secondary); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-point-icon svg { width: 20px; height: 20px; color: var(--primary); }
.hero-point-text h4 { font-size: 15px; font-weight: 700; color: var(--secondary); margin-bottom: 2px; }
.hero-point-text p { font-size: 13px; color: var(--gray-500); }

.hero-buttons { display: flex; gap: 14px; }

.hero-visual { position: relative; }
.hero-image { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image img { width: 100%; height: 340px; object-fit: cover; }
.hero-stats { position: absolute; bottom: -20px; left: -30px; background: var(--white); padding: 24px 32px; border-radius: 12px; box-shadow: var(--shadow-lg); display: flex; gap: 36px; }
.stat { text-align: center; }
.stat-number { font-size: 32px; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-label { font-size: 12px; color: var(--gray-500); margin-top: 4px; font-weight: 600; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.3s; border: none; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(249,115,22,0.35); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: var(--gray-900); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--secondary); border: 2px solid var(--secondary); }
.btn-outline:hover { background: var(--secondary); color: var(--white); }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-block { width: 100%; }

/* Sections */
.section { padding: 100px 0; }
.section-dark { background: var(--secondary); color: var(--white); }
.section-gray { background: var(--gray-100); }

.section-header { margin-bottom: 60px; }
.section-header.text-center { text-align: center; }
.section-label { display: inline-block; color: var(--primary); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.section-title { font-size: 44px; font-weight: 900; color: var(--secondary); line-height: 1.15; letter-spacing: -1px; }
.section-title span { color: var(--primary); }
.section-desc { font-size: 18px; color: var(--gray-500); margin-top: 16px; max-width: 600px; }
.section-header.text-center .section-desc { margin: 16px auto 0; }
.section-dark .section-title { color: var(--white); }
.section-dark .section-desc { color: rgba(255,255,255,0.7); }

/* Services Cards - Horizontal Style */
.services-list { display: flex; flex-direction: column; gap: 32px; }
.service-card-h { display: grid: grid-template-columns: 280px 1fr; gap: 0; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.4s; }
.service-card-h:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card-h:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 32px 40px 32px 36px; display: flex; flex-direction: column; justify-content: center; }
.service-card-body h3 { font-size: 24px; color: var(--secondary); margin-bottom: 12px; font-weight: 800; }
.service-card-body p { color: var(--gray-500); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.service-card-body ul { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.service-card-body ul li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-700); }
.service-card-body ul li::before { content: ''; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }

/* Why Choose - Bento Grid */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 24px; }
.why-card { background: var(--white); border-radius: 16px; padding: 32px; box-shadow: var(--shadow); transition: all 0.3s; }
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-card.large { grid-column: span 2; }
.why-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary-light), var(--primary)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.why-icon svg { width: 28px; height: 28px; color: var(--secondary); }
.why-card h3 { font-size: 20px; color: var(--secondary); margin-bottom: 12px; font-weight: 800; }
.why-card p { font-size: 15px; color: var(--gray-500); line-height: 1.7; }

/* Lead Section */
.lead-section { padding: 100px 0; background: linear-gradient(135deg, var(--secondary) 0%, var(--gray-900) 100%); position: relative; }
.lead-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }

.lead-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; position: relative; z-index: 1; }
.lead-info h2 { font-size: 40px; color: var(--white); margin-bottom: 20px; font-weight: 900; }
.lead-info p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 36px; line-height: 1.8; }
.lead-contacts { display: flex; flex-direction: column; gap: 20px; }
.lead-contact { display: flex; align-items: center; gap: 16px; color: var(--white); }
.lead-contact-icon { width: 48px; height: 48px; background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lead-contact-icon svg { width: 22px; height: 22px; color: var(--primary); }
.lead-contact span { font-size: 15px; }
.lead-contact a { color: var(--white); }
.lead-contact a:hover { color: var(--primary); }

.lead-form { background: var(--white); border-radius: 20px; padding: 48px; box-shadow: var(--shadow-xl); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 10px; font-weight: 700; color: var(--secondary); font-size: 14px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 16px 20px; border: 2px solid var(--gray-300); border-radius: 10px; font-size: 15px; transition: all 0.3s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(249,115,22,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-check { display: flex; gap: 12px; align-items: flex-start; }
.form-check input[type="checkbox"] { width: 22px; height: 22px; accent-color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.form-check label { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* Services Detail Page */
.page-hero { padding: 160px 0 80px; background: linear-gradient(135deg, var(--secondary) 0%, var(--gray-900) 100%); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%); border-radius: 50%; }
.page-hero h1 { font-size: 52px; color: var(--white); margin-bottom: 16px; font-weight: 900; position: relative; z-index: 1; }
.page-hero p { font-size: 20px; color: rgba(255,255,255,0.8); position: relative; z-index: 1; }

.service-block { padding: 80px 0; border-bottom: 1px solid var(--gray-300); }
.service-block:nth-child(even) { background: var(--gray-100); }
.service-block-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-block:nth-child(even) .service-block-inner { direction: rtl; }
.service-block:nth-child(even) .service-block-inner > * { direction: ltr; }
.service-block-img img { border-radius: 16px; box-shadow: var(--shadow-lg); width: 100%; height: 380px; object-fit: cover; }
.service-block-content h2 { font-size: 34px; color: var(--secondary); margin-bottom: 16px; font-weight: 900; }
.service-block-content > p { color: var(--gray-500); font-size: 16px; line-height: 1.8; margin-bottom: 28px; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-features li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--gray-700); }
.service-features li::before { content: '✓'; color: var(--white); background: var(--primary); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }

/* Gallery */
.gallery-section { padding: 80px 0 100px; background: var(--gray-100); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.gallery-card { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: var(--white); transition: all 0.4s; }
.gallery-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.gallery-card img { width: 100%; height: 220px; object-fit: cover; }
.gallery-card-body { padding: 24px; }
.gallery-card-body h4 { font-size: 18px; color: var(--secondary); margin-bottom: 8px; font-weight: 700; }
.gallery-card-body p { font-size: 14px; color: var(--gray-500); }

/* Contact Page */
.contact-section { padding: 160px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; }
.contact-info h2 { font-size: 34px; color: var(--secondary); margin-bottom: 16px; font-weight: 900; }
.contact-info > p { color: var(--gray-500); margin-bottom: 36px; font-size: 16px; }
.contact-details { margin-bottom: 36px; }
.contact-item { display: flex; gap: 18px; margin-bottom: 28px; }
.contact-item-icon { width: 52px; height: 52px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 26px; height: 26px; color: var(--white); }
.contact-item-text h4 { font-size: 16px; color: var(--secondary); margin-bottom: 4px; font-weight: 700; }
.contact-item-text p, .contact-item-text a { font-size: 15px; color: var(--gray-500); }
.contact-item-text a:hover { color: var(--primary); }

.hours-card { background: var(--gray-100); border-radius: 14px; padding: 28px; }
.hours-card h4 { font-size: 18px; color: var(--secondary); margin-bottom: 20px; font-weight: 700; }
.hours-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--gray-300); font-size: 15px; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--gray-500); }
.hours-row span:last-child { font-weight: 700; color: var(--secondary); }

.contact-form-wrap { background: var(--gray-100); border-radius: 20px; padding: 48px; }
.map-wrap { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); margin-top: 60px; }
.map-wrap iframe { width: 100%; height: 400px; border: none; display: block; }

/* Legal Pages */
.legal-page { padding: 160px 0 100px; }
.legal-content { max-width: 880px; margin: 0 auto; }
.legal-content h1 { font-size: 40px; color: var(--secondary); margin-bottom: 36px; font-weight: 900; }
.legal-content h2 { font-size: 26px; color: var(--secondary); margin: 40px 0 18px; font-weight: 800; }
.legal-content p { color: var(--gray-500); margin-bottom: 18px; line-height: 1.9; font-size: 16px; }
.legal-content ul { margin: 18px 0 28px 24px; }
.legal-content ul li { color: var(--gray-500); margin-bottom: 12px; position: relative; padding-left: 24px; }
.legal-content ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }

/* Sitemap */
.sitemap-page { padding: 160px 0 100px; }
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.sitemap-card { background: var(--white); border-radius: 16px; padding: 36px; box-shadow: var(--shadow); }
.sitemap-card h3 { font-size: 22px; color: var(--secondary); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 3px solid var(--primary); font-weight: 800; }
.sitemap-card ul li { margin-bottom: 14px; }
.sitemap-card ul li a { color: var(--gray-500); font-size: 15px; transition: all 0.3s; display: inline-block; }
.sitemap-card ul li a:hover { color: var(--primary); transform: translateX(4px); }

/* Footer */
.footer { background: var(--secondary); color: var(--white); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.footer-brand address { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.8; font-style: normal; }
.footer-brand address a { color: rgba(255,255,255,0.85); }
.footer-brand address a:hover { color: var(--primary); }
.footer-col h4 { font-size: 17px; margin-bottom: 24px; color: var(--white); font-weight: 700; }
.footer-links li { margin-bottom: 14px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 15px; transition: all 0.3s; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
.footer-disclaimer { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 18px 24px; margin-bottom: 20px; }
.footer-disclaimer p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-copyright { font-size: 14px; color: rgba(255,255,255,0.5); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); padding: 24px; z-index: 9999; box-shadow: 0 -4px 30px rgba(0,0,0,0.12); display: none; }
.cookie-banner.active { display: block; }
.cookie-inner { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cookie-text h4 { font-size: 18px; color: var(--secondary); margin-bottom: 6px; }
.cookie-text p { font-size: 14px; color: var(--gray-500); }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }

.cookie-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal.active { display: flex; }
.cookie-modal-box { background: var(--white); border-radius: 16px; padding: 36px; max-width: 480px; width: 100%; }
.cookie-modal-box h3 { font-size: 26px; color: var(--secondary); margin-bottom: 12px; font-weight: 800; }
.cookie-modal-box > p { color: var(--gray-500); margin-bottom: 28px; font-size: 15px; }
.cookie-opt { padding: 16px 0; border-bottom: 1px solid var(--gray-300); }
.cookie-opt:last-of-type { border-bottom: none; }
.cookie-opt label { display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: var(--secondary); cursor: pointer; }
.cookie-opt p { color: var(--gray-500); font-size: 13px; margin-top: 8px; }
.cookie-modal-btns { display: flex; gap: 12px; margin-top: 28px; }

/* Skip Link */
.skip-link { position: absolute; top: -100px; left: 16px; background: var(--primary); color: var(--white); padding: 12px 24px; z-index: 99999; border-radius: 6px; font-weight: 600; transition: top 0.3s; }
.skip-link:focus { top: 16px; }

/* Responsive */
@media (max-width: 1024px) {
  .hero { padding: 100px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { padding-right: 0; }
  .hero-visual { order: -1; }
  .hero-image img { height: 280px; }
  .hero-stats { position: relative; bottom: 0; left: 0; margin-top: 20px; justify-content: center; gap: 32px; padding: 20px 28px; }
  .services-list { gap: 28px; }
  .service-card-h { grid-template-columns: 1fr; }
  .service-card-img { height: 200px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card.large { grid-column: span 1; }
  .lead-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-block-inner { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-block-inner { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header { height: 70px; }
  .nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 0; box-shadow: var(--shadow-lg); }
  .nav.active { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--gray-300); }
  .nav-cta { margin: 16px 0 0 0 !important; width: 100%; text-align: center; }
  .mobile-toggle { display: flex; }
  
  .hero-title { font-size: 34px; }
  .hero-desc { font-size: 15px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .hero-image img { height: 240px; }
  .hero-stats { position: relative; bottom: 0; left: 0; margin-top: 20px; flex-direction: row; justify-content: center; gap: 24px; padding: 20px 24px; }
  
  .section { padding: 60px 0; }
  .section-title { font-size: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 32px; }
  .contact-form-wrap { padding: 32px; }
  
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cookie-buttons { width: 100%; }
  .cookie-buttons .btn { flex: 1; }
}
