/* =========================================================
   Auto Drivers — Driving School Website
   Stylesheet
   ========================================================= */

:root {
  --primary: #1c1e24;
  --primary-dark: #0a0b0d;
  --primary-light: #34373f;
  --accent: #b4915c;
  --accent-dark: #8f7040;
  --dark: #1c1a17;
  --gray: #6b6259;
  --gray-light: #9c9285;
  --bg-light: #f7f5f0;
  --white: #fdfbf7;
  --border: #e6e1d6;

  --radius: 10px;
  --shadow: 0 4px 16px rgba(10, 11, 13, 0.10);
  --shadow-lg: 0 14px 34px rgba(10, 11, 13, 0.18);

  --max-width: 1160px;
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--primary-dark);
}

p {
  color: var(--gray);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  background: rgba(180, 145, 92, 0.18);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.1rem;
  margin-bottom: 12px;
}

.bg-light {
  background: var(--bg-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(180, 145, 92, 0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

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

.btn-block {
  width: 100%;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.whatsapp-inline {
  display: inline-flex;
  align-items: center;
  margin-left: -12px;
}

.whatsapp-inline svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.topbar a:hover {
  color: var(--accent);
}

.topbar-social {
  display: flex;
  gap: 14px;
}

.topbar-social a {
  color: rgba(255, 255, 255, 0.85);
}

.topbar-social a:hover {
  color: var(--accent);
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(10, 11, 13, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.logo .logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo .logo-mark svg {
  width: 24px;
  height: 24px;
}

.logo span.accent {
  color: var(--accent-dark);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--primary-dark);
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary-dark);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--primary-dark);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(180, 145, 92, 0.16);
  border: 1px solid rgba(180, 145, 92, 0.4);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent);
}

.hero-stats div span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

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

.hero-visual .plate {
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 1.4rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transform: rotate(8deg);
}

.hero-visual .art-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(4px);
}

.hero-visual svg {
  width: 100%;
  height: auto;
}

/* ---------- Feature strip ---------- */
.feature-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.feature-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-item .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item .icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.feature-item h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.82rem;
  margin: 0;
}

/* ---------- Cards / Grid ---------- */
.grid {
  display: grid;
  gap: 28px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-pricing {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.hero-tagline {
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.footer-tagline {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.speciality-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card .icon svg {
  width: 28px;
  height: 28px;
  fill: var(--accent);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.service-card .link {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}

.service-card .link:hover {
  color: var(--accent-dark);
}

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

.mt-40 {
  margin-top: 40px;
}

/* ---------- Why choose us ---------- */
.why-us {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.why-us .art-box {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 20px;
  padding: 50px;
  color: var(--white);
}

.why-us .art-box svg {
  width: 100%;
  height: auto;
}

.why-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.why-item {
  display: flex;
  gap: 16px;
}

.why-item .num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item h4 {
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--accent-dark);
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p.quote {
  color: var(--dark);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author img.avatar {
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  color: var(--primary-dark);
  font-size: 0.92rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: var(--white);
  border-radius: 20px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(10, 11, 13, 0.85), rgba(10, 11, 13, 0));
}

.gallery-caption strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.gallery-caption span {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gallery-placeholder {
  background: var(--bg-light);
  border: 1px dashed var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--gray-light);
  text-align: center;
  padding: 20px;
}

.gallery-placeholder svg {
  width: 36px;
  height: 36px;
  fill: var(--gray-light);
}

.gallery-placeholder small {
  font-size: 0.75rem;
  max-width: 160px;
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--accent);
  font-weight: 600;
}

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-photo {
  background: var(--bg-light);
  border: 1px dashed var(--gray-light);
  border-radius: 20px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--gray-light);
  text-align: center;
  padding: 30px;
}

.about-photo.has-photo {
  border: none;
  background: none;
  padding: 0;
  height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo svg {
  width: 64px;
  height: 64px;
  fill: var(--gray-light);
}

.about-photo small {
  font-size: 0.78rem;
  max-width: 220px;
}

.credential-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 30px;
}

.credential-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.credential-list li svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Pricing table ---------- */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.03);
}

.pricing-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.pricing-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.pricing-card .price span {
  font-size: 0.95rem;
  color: var(--gray-light);
  font-weight: 500;
}

.pricing-card .save {
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.pricing-card ul {
  text-align: left;
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
}

.pricing-card ul li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray);
}

.pricing-card ul li svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-note {
  background: var(--bg-light);
  border: 1px dashed var(--gray-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 30px;
}

/* ---------- Service detail rows ---------- */
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row .icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-row .icon svg {
  width: 34px;
  height: 34px;
  fill: var(--primary);
}

.service-row h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .plus {
  font-size: 1.4rem;
  color: var(--accent-dark);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question .plus {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 240px;
  padding-bottom: 20px;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--primary-dark);
  color: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.contact-info-item strong {
  display: block;
  margin-bottom: 3px;
}

.contact-info-item p, .contact-info-item a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.contact-info-item a:hover {
  color: var(--accent);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-row a svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.social-row a:hover {
  background: var(--accent);
}

.social-row a:hover svg {
  fill: var(--primary-dark);
}

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

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

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary-dark);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--dark);
  background: var(--bg-light);
  transition: border-color 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form-note {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-top: 14px;
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 60px;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer-logo .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo .logo-mark svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-dark);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-hours {
  display: grid;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.footer-hours li span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ---------- Placeholder disclosure banner ---------- */
.placeholder-banner {
  background: #fff8e1;
  border-bottom: 1px solid #ffe082;
  color: #7a5c00;
  text-align: center;
  font-size: 0.82rem;
  padding: 8px 16px;
}

.placeholder-banner strong {
  color: #5c4400;
}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container,
  .why-us,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
  }

  .topbar-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .grid-3, .grid-4, .grid-2 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  section {
    padding: 56px 0;
  }
}
