/*
Theme Name: Sorex Transport Theme
Theme URI: https://www.sorex.sk
Author: Sorex s.r.o.
Author URI: https://www.sorex.sk
Description: Professional transport & towing company theme for Sorex s.r.o. Features video hero, fleet showcase, services, reviews, and multilingual support (SK/EN).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: Private
Text Domain: sorex
Tags: transport, towing, fleet, multilingual, full-width-template, custom-menu, featured-images
*/

/* === BASE RESET & VARIABLES === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #D62828;
  --red-dark:   #A01E1E;
  --red-glow:   rgba(214,40,40,0.35);
  --black:      #0A0A0A;
  --black-mid:  #111111;
  --black-card: #161616;
  --black-glass:#1a1a1a;
  --white:      #F5F5F5;
  --white-dim:  rgba(245,245,245,0.75);
  --grey:       #888888;
  --grey-light: #CCCCCC;
  --border:     rgba(255,255,255,0.08);
  --glass-bg:   rgba(10,10,10,0.55);
  --glass-border: rgba(255,255,255,0.12);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --section-pad: clamp(60px, 8vw, 120px);
  --container:   1240px;
  --radius:      6px;
  --radius-lg:   14px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }

h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; text-transform: uppercase; }
h1 { font-size: clamp(2.8rem, 7vw, 6.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p  { font-size: clamp(0.95rem, 1.2vw, 1.05rem); color: var(--white-dim); }

.section-label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
.section-title { margin-bottom: 16px; }
.section-title span { color: var(--red); }
.section-subtitle { font-size: 1.05rem; color: var(--grey); max-width: 560px; line-height: 1.7; margin-bottom: 48px; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--radius); transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--red); color: #fff; border: 2px solid var(--red); box-shadow: 0 0 24px var(--red-glow); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 4px 32px var(--red-glow); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn-call { background: var(--red); color: #fff; border: 2px solid var(--red); border-radius: 40px; padding: 12px 28px; font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); box-shadow: 0 0 20px var(--red-glow); animation: pulse-btn 2.5s infinite; }
.btn-call:hover { background: var(--red-dark); transform: scale(1.04); }
@keyframes pulse-btn { 0%,100% { box-shadow: 0 0 20px var(--red-glow); } 50% { box-shadow: 0 0 40px rgba(214,40,40,0.6); } }

/* NAV */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition); }
#site-header.scrolled { background: rgba(10,10,10,0.92); backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4); box-shadow: 0 1px 0 var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.nav-logo { flex-shrink: 0; display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--white); }
.nav-logo-text span { color: var(--red); }
.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-menu a { font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-light); padding: 8px 14px; border-radius: 4px; transition: var(--transition); position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: center; transition: transform var(--transition); }
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lang-switcher { display: flex; align-items: center; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.lang-switcher button { padding: 6px 14px; font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; color: var(--grey); transition: var(--transition); }
.lang-switcher button.active { background: var(--red); color: #fff; border-radius: 20px; }
.lang-switcher button:hover:not(.active) { color: var(--white); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--black); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white-dim); transition: var(--transition); }
.mobile-menu a:hover { color: var(--red); }
.mobile-menu-close { position: absolute; top: 24px; right: 24px; font-size: 2rem; color: var(--white); background: none; border: none; cursor: pointer; }

/* HERO */
#hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.5) 50%, rgba(10,10,10,0.85) 100%); }
.hero-contact-card { position: relative; z-index: 2; text-align: center; background: rgba(10,10,10,0.42); backdrop-filter: blur(28px) saturate(1.6); -webkit-backdrop-filter: blur(28px) saturate(1.6); border: 1px solid rgba(255,255,255,0.14); border-radius: 24px; padding: clamp(32px, 5vw, 60px) clamp(32px, 6vw, 80px); box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset, 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(214,40,40,0.08); max-width: 680px; width: 90%; animation: fadeInUp 0.8s ease both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }
.hero-contact-card h1 { margin-bottom: 8px; }
.hero-tagline { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--white-dim); margin-bottom: 32px; }
.hero-phone-number { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: 0.05em; color: var(--white); display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 8px; }
.hero-phone-number .phone-icon { width: 36px; height: 36px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; animation: ring 3s infinite; }
@keyframes ring { 0%,90%,100% { transform: rotate(0); } 92% { transform: rotate(-20deg); } 96% { transform: rotate(20deg); } 98% { transform: rotate(-10deg); } }
.hero-availability { font-size: 0.82rem; color: var(--grey); letter-spacing: 0.05em; margin-bottom: 28px; }
.hero-availability .dot { display: inline-block; width: 7px; height: 7px; background: #22c55e; border-radius: 50%; margin-right: 6px; animation: blink 2s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-cta-row { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.5; animation: scrollBob 2s infinite; }
@keyframes scrollBob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.hero-scroll span { font-family: var(--font-display); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid var(--white); border-bottom: 2px solid var(--white); transform: rotate(45deg); }

/* STATS */
#stats-bar { background: var(--black-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 12px 24px; position: relative; }
.stat-item + .stat-item::before { content: ''; position: absolute; left: 0; top: 20%; height: 60%; width: 1px; background: var(--border); }
.stat-number { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.78rem; color: var(--grey); letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-display); }

/* FLEET */
#fleet { padding: var(--section-pad) 0; background: var(--black); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.fleet-card { background: var(--black-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); position: relative; }
.fleet-card:hover { border-color: rgba(214,40,40,0.4); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(214,40,40,0.15); }
.fleet-card-img { position: relative; height: 220px; background: var(--black-glass); overflow: hidden; }
.fleet-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.fleet-card:hover .fleet-card-img img { transform: scale(1.05); }
.fleet-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #111 0%, #1a1a1a 100%); color: var(--grey); font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; flex-direction: column; gap: 12px; }
.fleet-badge { position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff; font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.fleet-card-body { padding: 24px; }
.fleet-card-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; color: var(--white); }
.fleet-card-desc { font-size: 0.88rem; color: var(--grey); margin-bottom: 20px; line-height: 1.6; }
.fleet-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fleet-spec { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 14px; }
.fleet-spec-label { font-size: 0.65rem; font-family: var(--font-display); letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-bottom: 2px; }
.fleet-spec-value { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--red); }

/* REVIEWS */
#reviews { padding: var(--section-pad) 0; background: var(--black-mid); position: relative; overflow: hidden; }
#reviews::before { content: '"'; position: absolute; top: -40px; left: 5%; font-family: var(--font-display); font-size: 30vw; font-weight: 800; color: rgba(255,255,255,0.015); pointer-events: none; line-height: 1; z-index: 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; position: relative; z-index: 1; }
.review-card { background: var(--black-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.review-card:hover { border-color: rgba(214,40,40,0.3); transform: translateY(-3px); }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-star { color: var(--red); font-size: 1.1rem; }
.review-text { font-size: 0.95rem; color: var(--white-dim); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.review-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; color: var(--white); }
.review-company { font-size: 0.78rem; color: var(--grey); }

/* SERVICES */
#services { padding: var(--section-pad) 0; background: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.service-card { background: var(--black-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(214,40,40,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.service-icon { width: 56px; height: 56px; background: rgba(214,40,40,0.1); border: 1px solid rgba(214,40,40,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.6rem; transition: var(--transition); }
.service-card:hover .service-icon { background: var(--red); border-color: var(--red); }
.service-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; color: var(--white); }
.service-desc { font-size: 0.9rem; color: var(--grey); line-height: 1.65; }

/* ABOUT */
#about { padding: var(--section-pad) 0; background: var(--black-mid); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about-text .section-subtitle { max-width: 100%; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.about-value { background: var(--black-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; display: flex; align-items: flex-start; gap: 12px; }
.about-value-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.about-value-title { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.about-value-text { font-size: 0.8rem; color: var(--grey); line-height: 1.5; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.team-card { background: var(--black-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.team-card:hover { border-color: rgba(214,40,40,0.3); transform: translateY(-3px); }
.team-photo { height: 180px; background: var(--black-glass); display: flex; align-items: center; justify-content: center; color: var(--grey); font-size: 3rem; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 16px; }
.team-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--red); font-family: var(--font-display); letter-spacing: 0.08em; text-transform: uppercase; }

/* PARTNERS */
#partners { padding: 60px 0; background: var(--black); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-label { text-align: center; font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-bottom: 36px; }
.partners-track-wrap { overflow: hidden; mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%); }
.partners-track { display: flex; gap: 48px; animation: marquee 22s linear infinite; width: max-content; }
.partners-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner-logo { flex-shrink: 0; height: 48px; display: flex; align-items: center; opacity: 0.45; filter: grayscale(1) brightness(1.5); transition: var(--transition); }
.partner-logo:hover { opacity: 0.9; filter: grayscale(0) brightness(1); }
.partner-logo img { height: 100%; width: auto; object-fit: contain; }
.partner-logo-text { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); white-space: nowrap; padding: 0 16px; border: 1px solid var(--border); border-radius: var(--radius); height: 44px; display: flex; align-items: center; }

/* GALLERY */
#gallery { padding: var(--section-pad) 0; background: var(--black-mid); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 12px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--black-glass); cursor: pointer; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item-inner { width: 100%; padding-top: 100%; position: relative; }
.gallery-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #111 0%, #1c1c1c 100%); color: var(--grey); font-size: 2rem; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { font-size: 2rem; }

/* CONTACT */
#contact { padding: var(--section-pad) 0; background: var(--black); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--black-card); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); }
.contact-info-item:hover { border-color: rgba(214,40,40,0.3); }
.contact-info-icon { width: 44px; height: 44px; background: rgba(214,40,40,0.1); border: 1px solid rgba(214,40,40,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-label { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); margin-bottom: 4px; }
.contact-info-value { font-size: 1rem; color: var(--white); font-weight: 500; }
.contact-info-value a { color: var(--white); transition: var(--transition); }
.contact-info-value a:hover { color: var(--red); }
.contact-social { display: flex; gap: 12px; margin-top: 28px; }
.social-link { width: 44px; height: 44px; background: var(--black-card); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: var(--transition); color: var(--grey); }
.social-link:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }
.contact-form-wrap { background: var(--black-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); }
.contact-form-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; margin-bottom: 24px; color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }
.form-input, .form-textarea, .form-select { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 13px 16px; font-family: var(--font-body); font-size: 0.95rem; color: var(--white); transition: var(--transition); width: 100%; outline: none; -webkit-appearance: none; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey); }
.form-input:focus, .form-textarea:focus { border-color: var(--red); background: rgba(214,40,40,0.04); box-shadow: 0 0 0 3px rgba(214,40,40,0.12); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-select option { background: var(--black-mid); color: var(--white); }
.form-submit { width: 100%; padding: 15px; background: var(--red); color: #fff; border: none; border-radius: var(--radius); font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px; }
.form-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--red-glow); }

/* FOOTER */
#site-footer { background: var(--black-mid); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; text-transform: uppercase; color: var(--white); }
.footer-brand-name span { color: var(--red); }
.footer-brand-desc { font-size: 0.88rem; color: var(--grey); line-height: 1.65; margin-bottom: 20px; }
.footer-heading { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--grey); transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--red); font-size: 1rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 0.8rem; color: var(--grey); }
.footer-copy a { color: var(--red); }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .fleet-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta-row { flex-direction: column; width: 100%; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
}

/* ================================================
   FLEET FEATURED CARD (MAN TGA)
================================================ */
.fleet-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.fleet-card-featured:hover {
  border-color: rgba(214,40,40,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(214,40,40,0.12);
}

.fleet-card-featured-img {
  position: relative;
  min-height: 420px;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fleet-card-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.fleet-card-featured:hover .fleet-card-featured-img img {
  transform: scale(1.04);
}

.fleet-card-featured-body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  line-height: 1;
}
.fleet-featured-subtitle {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.fleet-featured-desc {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Fleet Tabs */
.fleet-tabs { margin-top: 4px; }

.fleet-tab-buttons {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 20px;
  width: fit-content;
}
.fleet-tab-btn {
  padding: 9px 20px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  border-radius: calc(var(--radius) - 2px);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  white-space: nowrap;
}
.fleet-tab-btn.active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 12px var(--red-glow);
}
.fleet-tab-btn:hover:not(.active) { color: var(--white); }

.fleet-tab-panel { display: none; }
.fleet-tab-panel.active { display: block; }

.fleet-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fleet-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--white-dim);
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.fleet-feature-list li:hover {
  background: rgba(214,40,40,0.06);
  border-color: rgba(214,40,40,0.2);
  color: var(--white);
}
.fleet-check {
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ================================================
   TEAM SECTION — CENTERED LARGE CARDS
================================================ */
.team-grid-centered {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.team-card-large {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 280px;
  transition: var(--transition);
  text-align: center;
}
.team-card-large:hover {
  border-color: rgba(214,40,40,0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.team-photo-large {
  height: 200px;
  background: linear-gradient(135deg, #1a0505 0%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
  position: relative;
}
.team-photo-large::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--black-card), transparent);
}
.team-photo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-info-large {
  padding: 24px 20px 28px;
}
.team-name-large {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.team-role-large {
  font-size: 0.85rem;
  color: var(--white-dim);
  letter-spacing: 0.05em;
}

/* Responsive fleet featured */
@media (max-width: 768px) {
  .fleet-card-featured {
    grid-template-columns: 1fr;
  }
  .fleet-card-featured-img {
    min-height: 260px;
  }
  .fleet-tab-buttons {
    width: 100%;
  }
  .fleet-tab-btn {
    flex: 1;
    text-align: center;
  }
  .team-card-large {
    width: 100%;
    max-width: 340px;
  }
}

/* ================================================
   STATS BAR — 3 items
================================================ */
.stats-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ================================================
   FLEET FEATURED — image fix (show full vehicle)
================================================ */
.fleet-card-featured-img {
  min-height: 420px;
  background: #0d0d0d;
}
.fleet-card-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center !important;
  padding: 16px;
}

/* ================================================
   GALLERY — new grid with lightbox
================================================ */
.gallery-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item-new {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-glass);
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.gallery-item-new:hover {
  border-color: rgba(214,40,40,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.gallery-item-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item-new:hover img {
  transform: scale(1.06);
}
.gallery-item-new .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item-new:hover .gallery-overlay {
  opacity: 1;
}
.gallery-zoom-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}

/* ================================================
   LIGHTBOX
================================================ */
.sorex-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sorex-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img-wrap {
  position: relative;
  z-index: 10000;
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
  display: block;
}
.lightbox-caption {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--grey-light);
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  z-index: 10001;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-family: var(--font-display);
  line-height: 1;
}
.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
}
.lightbox-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
}
.lightbox-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-close:hover { transform: scale(1.1); }

/* ================================================
   FOOTER DOCUMENT DOWNLOAD
================================================ */
.footer-document-download {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.footer-doc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(214,40,40,0.06);
  border: 1px solid rgba(214,40,40,0.2);
  border-radius: var(--radius);
  color: var(--white-dim);
  font-size: 0.82rem;
  line-height: 1.4;
  transition: var(--transition);
  text-decoration: none;
}
.footer-doc-link:hover {
  background: rgba(214,40,40,0.14);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-doc-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.footer-doc-link span:nth-child(2) {
  flex: 1;
}
.footer-doc-arrow {
  font-size: 1.1rem;
  color: var(--red);
  flex-shrink: 0;
  font-weight: 700;
}

/* ================================================
   RESPONSIVE — gallery
================================================ */
@media (max-width: 768px) {
  .gallery-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 480px) {
  .gallery-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .stats-grid { grid-template-columns: repeat(1, 1fr) !important; }
}
