/* ============================================
   THE HANDYMAN — Orange / Dark Theme
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0d0d0d;
  color: #f0f0f0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- TYPOGRAPHY ---------- */
.section {
  padding: 5rem 0;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ff6b35;
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section__desc {
  font-size: 1.05rem;
  color: #b3b3b3;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn--primary {
  background: #ff6b35;
  color: #fff;
  border-color: #ff6b35;
}

.btn--primary:hover {
  background: #e85d04;
  border-color: #e85d04;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: #ff6b35;
}

.btn--outline:hover {
  background: #ff6b35;
  color: #fff;
  transform: translateY(-2px);
}

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

/* ---------- HEADER / NAV ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  transition: background 0.3s ease;
}

.header--scrolled {
  background: rgba(13, 13, 13, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ff6b35;
  letter-spacing: -0.5px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #b3b3b3;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b35;
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: #fff;
}

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

.nav__link--cta {
  background: #ff6b35;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: #e85d04;
  color: #fff;
}

/* ---------- MOBILE NAV TOGGLE ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    #0d0d0d;
  padding: 6rem 1.5rem 4rem;
}

.hero__inner {
  max-width: 800px;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}

.hero__tagline {
  font-size: 1.35rem;
  font-weight: 500;
  color: #ff6b35;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: #b3b3b3;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

.hero__scroll i {
  font-size: 1rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ---------- SERVICES ---------- */
.services {
  background: #111;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.service-card:hover {
  border-color: #ff6b35;
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ff6b35;
  transition: all 0.4s ease;
}

.service-card:hover .service-card__icon {
  background: #ff6b35;
  color: #fff;
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.6;
}

/* ---------- GALLERY ---------- */
.gallery {
  background: #0d0d0d;
}

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

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 2;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

/* ---------- PRICING ---------- */
.pricing {
  background: #111;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: #ff6b35;
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.12);
}

.pricing-card--featured {
  border-color: #ff6b35;
  background: linear-gradient(180deg, #1a1a1a 0%, rgba(255, 107, 53, 0.06) 100%);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b35;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

.pricing-card__icon {
  font-size: 1.5rem;
  color: #ff6b35;
  margin-bottom: 0.75rem;
}

.pricing-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1rem;
}

.pricing-card__price span {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ff6b35;
}

.pricing-card__features {
  text-align: left;
}

.pricing-card__features li {
  font-size: 0.85rem;
  color: #b3b3b3;
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card__features li i {
  color: #ff6b35;
  font-size: 0.75rem;
}

.pricing__note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 700px;
  margin: 2.5rem auto 0;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 107, 53, 0.06);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 10px;
}

.pricing__note i {
  color: #ff6b35;
  font-size: 1.3rem;
  margin-top: 2px;
}

.pricing__note p {
  font-size: 0.9rem;
  color: #b3b3b3;
}

.pricing__note strong {
  color: #fff;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: #0d0d0d;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  color: #ff6b35;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.testimonial-card__location {
  font-size: 0.8rem;
  color: #666;
}

/* ---------- ABOUT ---------- */
.about {
  background: #111;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.about__image {
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid #2a2a2a;
}

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

.about__content p {
  color: #b3b3b3;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about__content p strong {
  color: #fff;
}

.about__highlights {
  margin: 1.5rem 0 2rem;
}

.about__highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #ccc;
  font-size: 0.95rem;
}

.about__highlights li i {
  color: #ff6b35;
  font-size: 1.1rem;
}

/* ---------- CONTACT ---------- */
.contact {
  background: #0d0d0d;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__form {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 2rem;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ccc;
  margin-bottom: 0.4rem;
}

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  background: #222;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  outline: none;
  transition: border-color 0.3s ease;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: #666;
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: #ff6b35;
}

.form__group input.error,
.form__group textarea.error {
  border-color: #e74c3c;
}

.form__error {
  display: block;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 0.3rem;
  min-height: 1rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__info-item i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ff6b35;
}

.contact__info-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.contact__info-item a,
.contact__info-item p {
  font-size: 0.9rem;
  color: #b3b3b3;
  line-height: 1.5;
}

.contact__info-item a:hover {
  color: #ff6b35;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  padding-top: 3rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer__brand p {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-top: 0.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: #b3b3b3;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: #ff6b35;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__contact a {
  font-size: 0.9rem;
  color: #b3b3b3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.footer__contact a i {
  color: #ff6b35;
  width: 1rem;
}

.footer__contact a:hover {
  color: #ff6b35;
}

.footer__bottom {
  border-top: 1px solid #1a1a1a;
  padding: 1.25rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: #555;
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-left: 4px solid #2ecc71;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 9999;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i {
  font-size: 1.3rem;
  color: #2ecc71;
}

/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  color: #fff;
}
.whatsapp-float .tooltip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid #2a2a2a;
}
.whatsapp-float:hover .tooltip {
  opacity: 1;
}
@media (max-width: 768px) {
  .whatsapp-float { bottom: 1.2rem; left: 1.2rem; width: 48px; height: 48px; font-size: 1.3rem; }
  .whatsapp-float .tooltip { display: none; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  line-height: 1;
}

.lightbox__close:hover {
  opacity: 1;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__image {
    max-width: 400px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .section__title {
    font-size: 1.75rem;
  }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #111;
    border-left: 1px solid #2a2a2a;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .nav.open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  /* Hero */
  .hero__title {
    font-size: 2.2rem;
  }

  .hero__tagline {
    font-size: 1.1rem;
  }

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

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact__inner {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__contact a {
    justify-content: center;
  }

  /* Toast */
  .toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

/* ---------- VIDEOS SECTION ---------- */
.videos {
  background: #0d0d0d;
}

.videos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: #ff6b35;
  transform: translateY(-4px);
}

.video-card__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-card__player iframe,
.video-card__player video {
  width: 100%;
  height: 100%;
  display: block;
}

.video-card__info {
  padding: 1rem 1.25rem;
}

.video-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.video-card__desc {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
}

/* ---------- BLOG PREVIEW ---------- */
.blog-preview {
  background: #111;
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: #ff6b35;
  transform: translateY(-4px);
}

.blog-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.25rem;
}

.blog-card__date {
  font-size: 0.78rem;
  color: #666;
}

.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0.4rem 0 0.5rem;
  line-height: 1.4;
}

.blog-card__title a {
  color: #fff;
  transition: color 0.3s;
}

.blog-card__title a:hover {
  color: #ff6b35;
}

.blog-card__excerpt {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.blog-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff6b35;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-card__link:hover {
  text-decoration: underline;
}

.blog-preview__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------- QUOTE SECTION ---------- */
.quote-section {
  background: #0d0d0d;
}

.quote-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.quote-section__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quote-section__card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.quote-section__card i {
  font-size: 1.5rem;
  color: #ff6b35;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-section__card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.quote-section__card p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
}

.quote-section__contact {
  text-align: center;
  padding: 1.5rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
}

.quote-section__contact p {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 0.75rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .blog-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .videos__grid {
    grid-template-columns: 1fr;
  }

  .blog-preview__grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero__title {
    font-size: 2.2rem;
  }

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

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

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

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__contact a {
    justify-content: center;
  }

  .toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .services__grid,
  .pricing__grid {
    grid-template-columns: 1fr;
  }

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

  .hero__actions .btn {
    width: 100%;
  }
}
