/* ============================================
   T2 DETAILING DEN — style.css
   Theme: Dark bg, Cyan/Electric Blue accent
============================================ */

:root {
  --bg:       #080C10;
  --bg2:      #0C1117;
  --bg3:      #111820;
  --cyan:     #00C8FF;
  --cyan2:    #0090CC;
  --white:    #F0F4F8;
  --muted:    #7A8FA0;
  --border:   rgba(0,200,255,0.12);
  --radius:   10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--white); font-family: 'Inter', sans-serif; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

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

/* ============================================
   NAV
============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,12,16,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: baseline; gap: 6px; }
.logo-t2 { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--cyan); letter-spacing: -1px; }
.logo-text { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--cyan) !important;
  color: #000 !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }
.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg); padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
}

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  position: relative;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 80px 0 80px 24px;
  max-width: 600px;
  margin-left: calc((100vw - 1200px) / 2);
}
@media (max-width: 1248px) { .hero-content { margin-left: 24px; } }

.hero-badge {
  display: inline-block;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(42px, 6vw, 80px); font-weight: 800; line-height: 1.05; margin-bottom: 20px; }
.gradient-text { background: linear-gradient(90deg, var(--cyan), #7FEFFF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 480px; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-car {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 52%;
  overflow: hidden;
}
.hero-car img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-car-fade {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(to right, var(--bg) 30%, transparent 100%);
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-car { display: none; }
  .hero-content { max-width: 100%; }
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: opacity 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { opacity: 0.88; box-shadow: 0 8px 28px rgba(0,200,255,0.35); }
.btn-primary.small { padding: 10px 22px; font-size: 14px; }
.btn-primary.full { width: 100%; text-align: center; font-size: 16px; padding: 16px; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-outline.small { padding: 10px 22px; font-size: 14px; }

/* ============================================
   TICKER
============================================ */
.ticker-wrap {
  background: var(--cyan);
  overflow: hidden;
  padding: 14px 0;
}
.ticker {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.ticker span { font-size: 13px; font-weight: 700; color: #000; letter-spacing: 1.5px; text-transform: uppercase; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   SECTION COMMON
============================================ */
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 12px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 48px;
}

/* ============================================
   SERVICES
============================================ */
.services { padding: 100px 0; background: var(--bg2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.service-icon { font-size: 32px; margin-bottom: 16px; }
.service-card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================================
   WHY T2
============================================ */
.why { padding: 100px 0; background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg2);
  transition: border-color 0.2s;
}
.why-card:hover { border-color: var(--cyan); }
.why-num { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; color: rgba(0,200,255,0.15); margin-bottom: 12px; }
.why-card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================================
   PRICING
============================================ */
.pricing { padding: 100px 0; background: var(--bg2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}
.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-card.featured { border-color: var(--cyan); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: #000;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
}
.pricing-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; }
.pricing-card h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.pricing-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.pricing-note { font-size: 13px; color: var(--muted); text-align: center; }

/* ============================================
   GALLERY
============================================ */
.gallery { padding: 100px 0; background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
  margin-bottom: 20px;
}
.gallery-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase;
  transition: border-color 0.2s;
}
.gallery-item:hover { border-color: var(--cyan); }
.g1 { grid-column: span 2; }
.gallery-note { font-size: 13px; color: var(--muted); text-align: center; }

/* ============================================
   CONTACT
============================================ */
.contact { padding: 100px 0; background: var(--bg2); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-text h2 { font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 46px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.contact-text p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.info-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--muted); }
.info-item span { color: var(--white); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--cyan); }
.form-group textarea { resize: vertical; }
.form-group select option { background: var(--bg3); }

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   REVIEW CTA
============================================ */
.review-cta {
  background: linear-gradient(135deg, #040810 0%, #0A1220 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 0;
}
.review-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.review-stars { font-size: 28px; margin-bottom: 10px; }
.review-cta h2 { font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.review-cta p  { font-size: 16px; color: var(--muted); }
.btn-review {
  display: inline-block;
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
  padding: 16px 36px;
  border-radius: var(--radius);
  font-weight: 700; font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-transform: uppercase; letter-spacing: 1px;
}
.btn-review:hover { background: var(--cyan); color: #000; box-shadow: 0 8px 30px rgba(0,200,255,0.35); }
@media (max-width: 768px) { .review-cta-inner { flex-direction: column; text-align: center; } }

/* ============================================
   FOOTER
============================================ */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ============================================
   REVEAL ANIMATION
============================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
