/* ============================================
   A&T Auto Services — Brand Styles
   Colors: Gold #E7B526 | Navy #0C1A27
   ============================================ */

:root {
  --gold: #E7B526;
  --gold-light: #F5D060;
  --gold-dark: #C99A1A;
  --navy: #0C1A27;
  --navy-light: #152535;
  --navy-lighter: #1E3347;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --text: #E5E7EB;
  --text-muted: #9CA3AF;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --transition: 0.3s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-height: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

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

.text-gold {
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: normal;
  text-align: center;
  max-width: 100%;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(231, 181, 38, 0.4);
}

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

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

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn--whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn--block {
  width: 100%;
}

/* Top Bar */
.top-bar {
  background: var(--navy-light);
  border-bottom: 1px solid rgba(231, 181, 38, 0.15);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-bar__hours {
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  min-width: 0;
}

.top-bar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
}

.top-bar__whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #25D366;
}

.top-bar__whatsapp:hover {
  color: #1ebe57;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 26, 39, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 181, 38, 0.1);
  height: var(--header-height);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.header__logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.header__logo-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.header__logo-tagline {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

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

.nav__link {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--gold);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  margin-left: 8px;
}

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

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy);
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 7s ease;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(12, 26, 39, 0.88) 0%,
    rgba(12, 26, 39, 0.62) 45%,
    rgba(12, 26, 39, 0.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 800px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.badge {
  background: linear-gradient(180deg, #152536 0%, #0F1D2A 100%);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  box-shadow:
    0 0 0 1px rgba(231, 181, 38, 0.12),
    0 4px 14px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.badge:hover {
  transform: translateY(-1px);
  border-color: var(--gold-light);
  box-shadow:
    0 0 0 1px rgba(231, 181, 38, 0.25),
    0 6px 18px rgba(231, 181, 38, 0.18);
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.hero__feature svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Quote Bar */
.quote-bar {
  background: var(--navy-light);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 48px 0;
}

.quote-bar__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.quote-bar__text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.quote-bar__text p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  align-items: end;
}

.quote-form input,
.quote-form select {
  padding: 14px 16px;
  border: 1px solid rgba(231, 181, 38, 0.2);
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.quote-form input::placeholder {
  color: var(--gray-500);
}

.quote-form input:focus,
.quote-form select:focus {
  outline: none;
  border-color: var(--gold);
}

.quote-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23E7B526' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.quote-form select option {
  background: var(--navy);
  color: var(--text);
}

/* Sections */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--navy-light);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section__label {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--navy-light);
  border: 1px solid rgba(231, 181, 38, 0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: rgba(231, 181, 38, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(231, 181, 38, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

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

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

.about-grid__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-grid__badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 28px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-grid__badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-grid__badge-text {
  font-size: 0.85rem;
  font-weight: 600;
}

.about-grid__content .section__label,
.about-grid__content .section__title {
  text-align: left;
}

.about-grid__content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.features-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-list__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.features-list__icon {
  width: 40px;
  height: 40px;
  background: rgba(231, 181, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.features-list__item strong {
  display: block;
  color: var(--white);
  margin-bottom: 2px;
}

.features-list__item p {
  margin: 0;
  font-size: 0.9rem;
}

/* Stats */
.stats {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 80px 0;
  color: var(--navy);
}

.stats__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.stats__header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.stats__header p {
  opacity: 0.8;
  font-size: 1rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat__number {
  display: inline;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}

.stat__suffix {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
}

.stat__label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

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

.gallery-grid__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid__item:hover img {
  transform: scale(1.05);
}

.gallery-grid__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.pricing-card {
  background: var(--navy);
  border: 1px solid rgba(231, 181, 38, 0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: rgba(231, 181, 38, 0.4);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(231, 181, 38, 0.15);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card__price {
  margin-bottom: 28px;
}

.pricing-card__from {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card__amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}

.pricing-card__amount--quote {
  font-size: 1.8rem;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}

.pricing-card__features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
  padding-left: 24px;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  text-align: center;
  padding: 32px 24px;
}

.step__number {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Areas */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.areas-grid span {
  background: var(--navy);
  border: 1px solid rgba(231, 181, 38, 0.15);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.areas-grid span:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-grid__info .section__label,
.contact-grid__info .section__title {
  text-align: left;
}

.contact-grid__info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-details__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-details__item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-details__item--whatsapp svg {
  color: #25D366;
}

.contact-details__item strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-details__item p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-grid__map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(231, 181, 38, 0.15);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(231, 181, 38, 0.2);
  border-bottom: 1px solid rgba(231, 181, 38, 0.2);
  padding: 60px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

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

.cta-banner p {
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(231, 181, 38, 0.1);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand img {
  margin-bottom: 12px;
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer__tagline {
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 12px;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a,
.footer__links li {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Floating Contact Buttons */
.floating-buttons {
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition);
}

.floating-btn:hover {
  transform: scale(1.08);
}

.floating-btn--whatsapp {
  background: #25D366;
  color: var(--white);
}

.floating-btn--call {
  background: var(--gold);
  color: var(--navy);
}

/* Form Success */
.form-success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid__image img {
    height: 400px;
  }

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

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

  .gallery-grid__item--large {
    grid-column: span 2;
    grid-row: span 1;
    height: 300px;
  }

  .gallery-grid__item {
    height: 220px;
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .container {
    padding: 0 16px;
  }

  .top-bar {
    font-size: 0.75rem;
    padding: 10px 0;
  }

  .top-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .top-bar__hours {
    width: 100%;
    flex-direction: column;
    gap: 2px;
    line-height: 1.4;
  }

  .top-bar__phone {
    font-size: 0.9rem;
  }

  .header__logo img {
    width: 48px;
    height: 48px;
  }

  .header__logo-text {
    display: block;
    min-width: 0;
  }

  .header__logo-name {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55vw;
  }

  .header__logo-tagline {
    font-size: 0.68rem;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(12, 26, 39, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(231, 181, 38, 0.15);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    z-index: 999;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__link {
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav__cta {
    margin: 16px 0 0;
    width: 100%;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 78vh;
    min-height: 78dvh;
    align-items: flex-end;
  }

  .hero__slide {
    object-fit: cover;
    object-position: center 42%;
    transform: scale(1.04);
  }

  .hero__slide.is-active {
    transform: scale(1);
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(12, 26, 39, 0.35) 0%,
      rgba(12, 26, 39, 0.45) 40%,
      rgba(12, 26, 39, 0.88) 72%,
      rgba(12, 26, 39, 0.96) 100%
    );
  }

  .hero__content {
    padding: 120px 16px 40px;
    width: 100%;
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__features {
    flex-direction: column;
    gap: 12px;
  }

  .badge {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .section {
    padding: 48px 0;
  }

  .section__title {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
    overflow-wrap: break-word;
  }

  .section__desc {
    font-size: 0.95rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-banner {
    padding: 40px 0;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-banner h2 {
    font-size: 1.15rem;
    line-height: 1.35;
    overflow-wrap: break-word;
  }

  .cta-banner__actions {
    justify-content: center;
    width: 100%;
  }

  .cta-banner__actions .btn {
    width: 100%;
  }

  .btn--lg {
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  .pricing-card__amount {
    font-size: 2.4rem;
  }

  .contact-details__item p,
  .contact-details__item a {
    overflow-wrap: anywhere;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .quote-bar__text h2 {
    font-size: 1.4rem;
  }

  .stats__header h2 {
    font-size: 1.25rem;
  }

  .stat__number {
    font-size: 2rem;
  }

  .floating-buttons {
    bottom: 16px;
    right: 16px;
  }

  .floating-btn {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .top-bar__inner {
    align-items: stretch;
  }

  .hero__content {
    padding-top: 110px;
  }

  .hero__slide {
    object-position: center 38%;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

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

  .gallery-grid__item--large {
    grid-column: span 1;
    height: 220px;
  }

  .gallery-grid__item {
    height: 200px;
  }

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

  .about-grid__image img {
    height: 280px;
  }

  .about-grid__badge {
    padding: 14px 18px;
  }

  .about-grid__badge-num {
    font-size: 1.5rem;
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
