/*
Theme Name: Throne Automotive
Theme URI: https://throneautomotive.com
Author: Throne Automotive
Author URI: https://throneautomotive.com
Description: Premium automotive theme for Throne Automotive - Japanese car imports to Sri Lanka
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: throne-automotive
Tags: automotive, cars, business, white, gold, black
*/

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --primary: #1a1a1a;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A30;
  --white: #ffffff;
  --light-bg: #f8f8f8;
  --light-gray: #eeeeee;
  --mid-gray: #888888;
  --dark-gray: #333333;
  --text: #222222;
  --border: #e0e0e0;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

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

.section-padding { padding: 80px 0; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-title span { color: var(--gold); }

.section-subtitle {
  text-align: center;
  color: var(--mid-gray);
  font-size: 1rem;
  margin-bottom: 50px;
}

.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 12px auto 20px;
  border-radius: 2px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark-gray);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.btn-call {
  background: var(--primary);
  color: white;
}

.btn-call:hover {
  background: var(--dark-gray);
  transform: translateY(-2px);
}

/* ===========================
   HEADER & NAVIGATION
=========================== */
#masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

#masthead.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 75px;
  max-width: 1300px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--dark-gray));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '♛';
  font-size: 22px;
  color: var(--gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .throne {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

.logo-text .automotive {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  padding: 8px 14px;
  border-radius: var(--radius);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

.header-phone .icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.btn-contact-nav {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 75px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 40%),
    linear-gradient(45deg, transparent 40%, rgba(201,168,76,0.03) 50%, transparent 60%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--gold);
  display: block;
}

.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item { text-align: left; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-image-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-car-frame {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.hero-car-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: brightness(0.9) contrast(1.1);
}

.hero-car-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-car-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-car-badge .badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
}

.hero-car-badge .badge-text span {
  font-size: 0.75rem;
  color: var(--mid-gray);
}

/* ===========================
   TRENDING VEHICLES
=========================== */
.vehicles-section {
  padding: 80px 0;
  background: var(--white);
}

.vehicles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.vehicles-header .view-all {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid transparent;
}

.vehicles-header .view-all:hover {
  border-bottom-color: var(--gold);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.car-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.car-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--light-bg);
}

.car-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.car-card:hover .car-card-image img {
  transform: scale(1.05);
}

.car-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.car-card-body {
  padding: 20px;
}

.car-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.car-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 14px 0;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--mid-gray);
}

.spec-item .spec-icon {
  font-size: 13px;
}

.car-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.price-label {
  font-size: 0.75rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.car-card-footer {
  padding: 0 20px 20px;
}

.btn-more-info {
  width: 100%;
  justify-content: center;
  padding: 10px;
  font-size: 0.85rem;
}

/* ===========================
   BRANDS SECTION
=========================== */
.brands-section {
  padding: 60px 0;
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brands-track {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.brand-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  min-width: 100px;
}

.brand-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.brand-logo {
  font-size: 28px;
}

.brand-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===========================
   IMPORT PROCESS
=========================== */
.process-section {
  padding: 80px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 50%, rgba(201,168,76,0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(201,168,76,0.06) 0%, transparent 40%);
}

.process-section .section-title { color: var(--white); }
.process-section .section-subtitle { color: rgba(255,255,255,0.5); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  margin-top: 50px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.15);
  position: relative;
}

.step-icon {
  font-size: 22px;
  margin-bottom: 12px;
}

.step-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  line-height: 1.4;
}

/* ===========================
   WHY CHOOSE US
=========================== */
.why-section {
  padding: 80px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ===========================
   FAQ SECTION
=========================== */
.faq-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
}

.faq-item.active .faq-icon {
  background: var(--gold);
  color: var(--primary);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--mid-gray);
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer { display: block; }

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo-text .throne { color: var(--white); }

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: 16px;
  color: rgba(255,255,255,0.5);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.15);
}

.footer-heading {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact-item .ci-icon {
  color: var(--gold);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: float 3s ease-in-out infinite;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===========================
   PAGE HERO (Inner Pages)
=========================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2a2a2a 100%);
  padding: 130px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero .breadcrumb {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumb a { color: var(--gold); }

/* ===========================
   VEHICLES PAGE
=========================== */
.vehicles-page { padding: 60px 0; }

.filter-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 150px;
}

.filter-group label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--mid-gray);
}

.filter-group select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.filter-group select:focus { border-color: var(--gold); }

.vehicles-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===========================
   CAR DETAIL PAGE
=========================== */
.car-detail { padding: 60px 0; }

.car-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.car-gallery {
  position: sticky;
  top: 100px;
}

.main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
  height: 360px;
  background: var(--light-bg);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.thumb {
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumb.active { border-color: var(--gold); }

.thumb img { width: 100%; height: 100%; object-fit: cover; }

.car-info h1 { margin-bottom: 8px; font-size: 2rem; }

.car-engine-tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--mid-gray);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.car-price-box {
  background: linear-gradient(135deg, var(--primary), #2a2a2a);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
}

.price-range-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-range-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: 4px;
}

.price-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.spec-box {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.spec-box-icon {
  font-size: 20px;
}

.spec-box-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
}

.spec-box-info span {
  font-size: 0.75rem;
  color: var(--mid-gray);
}

.car-features h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--dark-gray);
}

.feature-check {
  color: var(--gold);
  font-weight: 700;
}

.car-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.car-actions .btn { flex: 1; justify-content: center; }

.request-form {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}

.request-form h3 { margin-bottom: 20px; font-size: 1.2rem; }

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* ===========================
   ABOUT PAGE
=========================== */
.about-story {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-stats-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(26,26,26,0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  justify-content: space-around;
}

.overlay-stat { text-align: center; }

.overlay-stat .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}

.overlay-stat .lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content .tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-content h2 { margin-bottom: 20px; }

.about-content p {
  color: var(--mid-gray);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-points {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.about-point .check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===========================
   BLOG PAGE
=========================== */
.blog-page { padding: 60px 0; }

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.blog-card-image {
  height: 180px;
  overflow: hidden;
  background: var(--light-bg);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-body { padding: 20px; }

.blog-cat {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  color: var(--gold-dark);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--primary);
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 14px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--mid-gray);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.blog-sidebar { }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  color: var(--primary);
}

.recent-post-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.recent-post-item:last-child { border: none; }

.recent-post-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--light-bg);
}

.recent-post-thumb img { width: 100%; height: 100%; object-fit: cover; }

.recent-post-info h4 {
  font-size: 0.85rem;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 4px;
}

.recent-post-info span {
  font-size: 0.75rem;
  color: var(--mid-gray);
}

.cat-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.cat-list li:last-child { border: none; }

.cat-list a { color: var(--dark-gray); }
.cat-list a:hover { color: var(--gold); }

.cat-count {
  background: var(--light-bg);
  color: var(--mid-gray);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.75rem;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-page { padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}

.contact-info h2 { margin-bottom: 16px; }

.contact-info p {
  color: var(--mid-gray);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.cc-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cc-content strong { display: block; font-size: 0.8rem; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.5px; }
.cc-content a, .cc-content span { font-size: 0.95rem; font-weight: 600; color: var(--primary); }
.cc-content a:hover { color: var(--gold); }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-box h3 { margin-bottom: 24px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.map-section { padding: 0 0 80px; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
  border: 1px solid var(--border);
}

.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .vehicles-grid,
  .vehicles-full-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image-side { display: none; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .vehicles-grid,
  .vehicles-full-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .car-detail-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .vehicles-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .filter-bar { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .car-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-padding { padding: 50px 0; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .brands-track { gap: 10px; }
}

/* ===========================
   MOBILE MENU
=========================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
  z-index: 999;
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.mobile-menu a:hover { background: var(--light-bg); color: var(--gold); }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.6s ease forwards; }
.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

/* ===========================
   NOTICE / ALERTS
=========================== */
.notice {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.notice-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.notice-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ===========================
   BRAND SVG LOGOS
=========================== */
.brand-svg {
  width: 80px;
  height: 40px;
  color: #555555;
  transition: var(--transition);
  display: block;
  margin: 0 auto;
}

.brand-item:hover .brand-svg {
  color: var(--gold);
}

.brand-item {
  min-width: 120px;
  padding: 20px 24px;
}

/* ===========================
   HERO TRUST BADGES
=========================== */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.trust-icon { font-size: 15px; }

/* ===========================
   HERO BG IMAGE
=========================== */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  z-index: 0;
}

.hero-inner { position: relative; z-index: 1; }

/* ===========================
   HERO CAR PLACEHOLDER
=========================== */
.hero-car-placeholder {
  width: 100%;
  padding: 20px;
}

/* ===========================
   QUOTATION SECTION
=========================== */
.quotation-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  border-top: 1px solid var(--border);
}

.quotation-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.quotation-left h2 { margin-bottom: 0; }

.quotation-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}

.quotation-form-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

@media (max-width: 768px) {
  .quotation-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-trust { gap: 8px; }
  .trust-item { font-size: 0.75rem; padding: 6px 12px; }
}

/* ===========================
   CHATBOT WIDGET
=========================== */
.chatbot-bubble {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
  cursor: pointer;
}

.chatbot-toggle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), #333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border: 2px solid var(--gold);
  transition: var(--transition);
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
}

.chatbot-window {
  position: fixed;
  bottom: 170px;
  right: 30px;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  z-index: 997;
  display: none;
  flex-direction: column;
  overflow: hidden;
  max-height: 500px;
}

.chatbot-window.open { display: flex; }

.chatbot-header {
  background: linear-gradient(135deg, var(--primary), #2a2a2a);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.chatbot-header-info strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.chatbot-header-info span {
  font-size: 0.72rem;
  color: #25D366;
}

.chatbot-close {
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: var(--transition);
}

.chatbot-close:hover { color: white; }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8f8f8;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  animation: fadeInUp 0.3s ease;
}

.chat-msg.bot {
  background: var(--white);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.chat-msg.user {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  align-self: flex-end;
  font-weight: 600;
  border-bottom-right-radius: 3px;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.quick-reply {
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.quick-reply:hover {
  background: var(--gold);
  color: var(--primary);
}

.chatbot-input-area {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  background: var(--white);
}

.chatbot-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.chatbot-input:focus { border-color: var(--gold); }

.chatbot-send {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.chatbot-send:hover { transform: scale(1.1); }

@media (max-width: 480px) {
  .chatbot-window { width: calc(100vw - 40px); right: 20px; bottom: 160px; }
  .chatbot-bubble { right: 20px; }
}

/* ===========================
   GRADE COUNT BADGE ON CARD
=========================== */
.grade-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(201,168,76,0.1);
  color: var(--gold-dark);
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 4px;
}

.price-from-label {
  font-size: 0.68rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* GRADES TABLE */
.grades-table { width:100%;border-collapse:collapse;font-size:.88rem }
.grades-table th{background:var(--primary);color:var(--white);padding:11px 14px;text-align:left;font-size:.72rem;text-transform:uppercase;letter-spacing:.5px}
.grades-table th:first-child{border-radius:8px 0 0 0}
.grades-table th:last-child{border-radius:0 8px 0 0}
.grades-table td{padding:11px 14px;border-bottom:1px solid var(--border)}
.grades-table tr:last-child td{border-bottom:none}
.grades-table tr:hover td{background:rgba(201,168,76,.03)}

/* ===========================
   MP4 HERO VIDEO BACKGROUND
=========================== */
.hero-section.has-video {
  position: relative;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* MP4 video — cover the full hero area */
.hero-video-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  pointer-events: none;
}

/* Dark overlay so text stays readable */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.78) 0%,
    rgba(10, 10, 10, 0.60) 50%,
    rgba(10, 10, 10, 0.72) 100%
  );
  z-index: 1;
}

/* Ensure content sits above video */
.hero-section.has-video .hero-inner {
  position: relative;
  z-index: 2;
}

.hero-section.has-video .hero-bg-pattern,
.hero-section.has-video .hero-grid-overlay {
  z-index: 1;
}

/* ===========================
   HERO — FULL WIDTH (no image side)
=========================== */
.hero-inner {
  grid-template-columns: 1fr !important;
  max-width: 820px !important;
  text-align: left;
}

.hero-title { font-size: clamp(2.8rem, 6vw, 5rem) !important; }

.hero-trust {
  margin-top: 36px;
  gap: 10px;
}

/* ===========================
   REMOVE WHATSAPP FLOAT
=========================== */
.whatsapp-float { display: none !important; }

/* ===========================
   PROCESS SECTION — MOBILE FIX
=========================== */
@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 16px !important;
    position: relative;
  }
  .process-steps::before { display: none !important; }
  .process-step {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 12px;
    padding: 20px 12px !important;
  }
  .step-number {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.2rem !important;
    margin-bottom: 12px !important;
  }
  .step-title {
    font-size: 0.78rem !important;
  }
  .step-desc {
    font-size: 0.68rem !important;
  }
}

@media (max-width: 400px) {
  .process-steps {
    grid-template-columns: 1fr !important;
  }
}

/* ===========================
   CHATBOT — AUTO OPEN STYLE
=========================== */
.chatbot-bubble {
  bottom: 24px !important;
  right: 24px !important;
}

.chatbot-window {
  bottom: 96px !important;
  right: 24px !important;
}

/* Chatbot icon — crown SVG */
.chatbot-toggle-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   HERO WITH VIDEO — CLEAN BACKGROUND
=========================== */
/* When video is present, remove gradient + pattern overlays */
.hero-section.has-video {
  background: #000 !important;
}

.hero-section.has-video .hero-bg-pattern,
.hero-section.has-video .hero-grid-overlay {
  display: none !important;
}

/* Video fades in smoothly once loaded */
.hero-video-wrap video {
  opacity: 0;
  transition: opacity 0.6s ease-in;
}

.hero-video-wrap video.loaded {
  opacity: 1;
}
