/* ===== EVE TRANSCOM BUSINESS SRL - Premium Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --green-50: #ecfdf5;
  --green-100: #d1fae5;
  --green-200: #a7f3d0;
  --green-400: #34d399;
  --green-500: #10b981;
  --green-600: #059669;
  --green-700: #047857;
  --green-800: #065f46;
  --green-900: #064e3b;
  --grey-50: #f9fafb;
  --grey-100: #f3f4f6;
  --grey-200: #e5e7eb;
  --grey-300: #d1d5db;
  --grey-400: #9ca3af;
  --grey-500: #6b7280;
  --grey-600: #4b5563;
  --grey-700: #374151;
  --grey-800: #1f2937;
  --grey-900: #111827;
  --grey-950: #0a0f1a;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.25);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .5s cubic-bezier(.4,0,.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; line-height: 1.2; color: var(--grey-900); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Utility --- */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-600); margin-bottom: 12px;
}
.section-label::before {
  content: ''; width: 32px; height: 3px; background: var(--green-500); border-radius: 2px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--grey-900), var(--grey-700));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--grey-500); max-width: 640px; line-height: 1.8;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none; transition: var(--transition); font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white); box-shadow: 0 4px 14px rgba(5,150,105,.35);
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(5,150,105,.45);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-dark {
  background: var(--grey-900); color: var(--white);
}
.btn-dark:hover { background: var(--grey-800); transform: translateY(-2px); }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* --- HEADER --- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition-slow); padding: 16px 0;
}
.header.scrolled {
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,.08); padding: 10px 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 44px; height: 44px; background: linear-gradient(135deg, var(--green-600), var(--green-700));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 900; font-size: 1.1rem; font-family: 'Outfit', sans-serif;
}
.logo-text { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem; }
.logo-text span { color: var(--green-600); }
.header:not(.scrolled) .logo-text { color: var(--white); }
.header.scrolled .logo-text { color: var(--grey-900); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 16px; border-radius: 50px; font-size: .88rem; font-weight: 500;
}
.header:not(.scrolled) .nav a { color: rgba(255,255,255,.85); }
.header:not(.scrolled) .nav a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.header.scrolled .nav a { color: var(--grey-600); }
.header.scrolled .nav a:hover { color: var(--green-600); background: var(--green-50); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: .9rem;
}
.header-phone svg { width: 18px; height: 18px; }
.header:not(.scrolled) .header-phone { color: var(--white); }
.header.scrolled .header-phone { color: var(--green-600); }
.header-cta {
  padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: .85rem;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white); box-shadow: 0 4px 14px rgba(5,150,105,.3);
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(5,150,105,.4); }

/* Mobile menu */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.mobile-toggle span {
  width: 24px; height: 2px; border-radius: 2px; transition: var(--transition);
}
.header:not(.scrolled) .mobile-toggle span { background: var(--white); }
.header.scrolled .mobile-toggle span { background: var(--grey-800); }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px); z-index: 999;
}
.mobile-menu-content {
  position: absolute; top: 0; right: 0; width: 300px; height: 100%;
  background: var(--white); padding: 80px 32px 32px;
  transform: translateX(100%); transition: var(--transition-slow);
}
.mobile-menu.active { display: block; }
.mobile-menu.active .mobile-menu-content { transform: translateX(0); }
.mobile-menu-content a {
  display: block; padding: 14px 0; font-size: 1.05rem; font-weight: 500;
  color: var(--grey-700); border-bottom: 1px solid var(--grey-100);
}
.mobile-menu-content a:hover { color: var(--green-600); }

/* --- HERO --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--grey-950) 0%, var(--grey-800) 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/cat-buldoexcavator-man-tgx.jpg');
  background-size: cover; background-position: center;
  opacity: .35;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,15,26,.7) 0%, rgba(10,15,26,.4) 50%, rgba(10,15,26,.85) 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,150,105,.15) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; padding: 140px 0 100px; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.3);
  padding: 8px 20px; border-radius: 50px;
  color: var(--green-400); font-size: .82rem; font-weight: 600;
  margin-bottom: 24px; animation: fadeInUp .8s ease;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; background: var(--green-400);
  border-radius: 50%; animation: pulse 2s infinite;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 20px; animation: fadeInUp .8s ease .2s both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--green-400), var(--green-200));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,.7); line-height: 1.8;
  margin-bottom: 36px; max-width: 560px; animation: fadeInUp .8s ease .4s both;
}
.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px;
  animation: fadeInUp .8s ease .6s both;
}
.hero-stats {
  display: flex; gap: 48px; animation: fadeInUp .8s ease .8s both;
}
.hero-stat { text-align: left; }
.hero-stat-number {
  font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800;
  color: var(--green-400);
}
.hero-stat-label { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 2px; }

/* --- ABOUT --- */
.about { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: -30px; right: -20px; width: 200px;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-2xl); border: 4px solid var(--white);
}
.about-img-float img { width: 100%; height: 150px; object-fit: cover; }
.about-badge {
  position: absolute; top: -16px; left: -16px;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white); padding: 16px 20px; border-radius: var(--radius-md);
  text-align: center; box-shadow: var(--shadow-lg);
}
.about-badge-number { font-family: 'Outfit'; font-size: 1.8rem; font-weight: 800; }
.about-badge-text { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-text p { margin-bottom: 16px; color: var(--grey-600); font-size: .98rem; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px;
}
.about-feature {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: var(--grey-50); border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 500; color: var(--grey-700);
}
.about-feature svg { width: 20px; height: 20px; color: var(--green-600); flex-shrink: 0; }

/* --- SERVICES --- */
.services { padding: 100px 0; background: var(--grey-50); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  border: 1px solid var(--grey-200); transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--green-600));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
}
.service-icon svg { width: 26px; height: 26px; color: var(--green-600); transition: var(--transition); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--grey-500); line-height: 1.7; }
.service-link {
  display: inline-block; margin-top: 16px; font-size: .88rem; font-weight: 600;
  color: var(--green-600); transition: var(--transition);
}
.service-link:hover { color: var(--green-700); gap: 4px; }

/* --- FLEET / GALLERY --- */
.fleet { padding: 100px 0; background: var(--white); }
.fleet-header { text-align: center; margin-bottom: 56px; }
.fleet-header .section-subtitle { margin: 0 auto; }
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fleet-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
}
.fleet-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.fleet-item:hover img { transform: scale(1.08); }
.fleet-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7) 100%);
  opacity: 0; transition: var(--transition); display: flex; align-items: flex-end;
  padding: 20px;
}
.fleet-item:hover .fleet-item-overlay { opacity: 1; }
.fleet-item-overlay span { color: var(--white); font-weight: 600; font-size: .9rem; }
.fleet-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute; top: 24px; right: 24px; width: 48px; height: 48px;
  background: rgba(255,255,255,.1); border: none; border-radius: 50%; cursor: pointer;
  color: var(--white); font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; background: rgba(255,255,255,.1);
  border: none; border-radius: 50%; cursor: pointer; color: var(--white);
  font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* --- WHY CHOOSE US --- */
.why-us { padding: 100px 0; background: linear-gradient(135deg, var(--grey-950), var(--grey-900)); color: var(--white); }
.why-us .section-title {
  background: linear-gradient(135deg, var(--white), var(--grey-300));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.why-us-header { text-align: center; margin-bottom: 56px; }
.why-us-header .section-subtitle { color: var(--grey-400); margin: 0 auto; }
.why-us-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.why-us-card {
  text-align: center; padding: 40px 20px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  cursor: default; pointer-events: none;
}
.why-us-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(16,185,129,.2), rgba(16,185,129,.1));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.why-us-icon svg { width: 28px; height: 28px; color: var(--green-400); }
.why-us-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.why-us-card p { font-size: .85rem; color: var(--grey-400); line-height: 1.7; }



/* --- CTA Banner --- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.cta-banner-content {
  position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto;
}
.cta-banner-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--white);
  margin-bottom: 16px;
}
.cta-banner-content p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* --- CONTACT --- */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info-cards { display: grid; gap: 16px; margin-bottom: 32px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px; background: var(--grey-50); border-radius: var(--radius-md);
  border: 1px solid var(--grey-200); transition: var(--transition);
}
.contact-card:hover { border-color: var(--green-200); background: var(--green-50); }
.contact-card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
}
.contact-card-icon svg { width: 22px; height: 22px; color: var(--white); }
.contact-card-label { font-size: .78rem; color: var(--grey-400); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.contact-card-value { font-size: .95rem; font-weight: 600; color: var(--grey-800); margin-top: 2px; }
.contact-card-value a { color: var(--green-700); }
.contact-card-value a:hover { color: var(--green-500); }

.contact-form { background: var(--grey-50); padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--grey-200); }
.contact-form h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.contact-form > p { font-size: .9rem; color: var(--grey-500); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600; color: var(--grey-700);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--grey-300);
  border-radius: var(--radius-sm); font-size: .92rem; font-family: 'Inter', sans-serif;
  background: var(--white); transition: var(--transition); color: var(--grey-800);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(16,185,129,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }
.form-success {
  display: none; text-align: center; padding: 24px;
  background: var(--green-50); border-radius: var(--radius-md);
  color: var(--green-700); font-weight: 600;
}

/* Map */
.contact-map {
  margin-top: 24px; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md); height: 280px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* --- FOOTER --- */
.footer { background: var(--grey-950); color: var(--grey-400); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: .88rem; margin-top: 16px; line-height: 1.8; }
.footer h4 {
  font-size: .88rem; font-weight: 700; color: var(--white); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: .88rem; color: var(--grey-400); }
.footer ul li a:hover { color: var(--green-400); }
.footer-contact-item {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
  font-size: .88rem;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--green-400); flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--green-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0; text-align: center; font-size: .82rem;
}

/* --- FLOATING BUTTONS --- */
.floating-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition); animation: float 3s ease-in-out infinite;
}
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.5); }
.floating-whatsapp svg { width: 32px; height: 32px; }

.floating-phone {
  position: fixed; bottom: 24px; left: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(5,150,105,.4);
  transition: var(--transition); animation: float 3s ease-in-out infinite .5s;
}
.floating-phone:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(5,150,105,.5); }
.floating-phone svg { width: 28px; height: 28px; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: repeat(3, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header-phone { display: none; }
  .mobile-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .fleet-item:nth-child(1) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; }
  .hero h1 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-float { display: none; }
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-item:nth-child(1) { grid-column: span 1; }
}
