/* ========================================
   Santa Rosa Power Washing - Premium Styles
   Design System: SRPW Brand
   ======================================== */

/* --- Custom Properties --- */
:root {
  --rb-dark: #1a1a1a;
  --rb-dark-800: #252525;
  --rb-cream: #f0f2f5;
  --rb-cream-dark: #e2e5ea;
  --rb-sand: #c8ccd2;
  --rb-gold: #2d7dd2;
  --rb-gold-hover: #1f6abc;
  --rb-gold-light: #4a9ae6;
  --rb-gold-muted: rgba(45, 125, 210, 0.1);
  --rb-gold-text: #1a5599;
  --rb-text: #1a1a1a;
  --rb-text-muted: #555b63;
  --font-display: 'Fraunces', serif;
  --font-body: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--rb-text);
  background: var(--rb-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--rb-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--rb-gold);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rb-gold-hover);
}

/* --- Brand Text Selection --- */
::selection {
  background: var(--rb-gold);
  color: #fff;
}

::-moz-selection {
  background: var(--rb-gold);
  color: #fff;
}

/* --- Grain Overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

/* --- Brand Line Divider --- */
.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, var(--rb-gold), var(--rb-gold-light));
  border-radius: 2px;
}

/* --- Logo Image in Navbar --- */
.navbar__logo-img {
  height: 48px;
  width: auto;
  display: block;
}

/* --- Footer Logo Image --- */
.footer__logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}

/* --- Social Links --- */
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(45, 125, 210, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background: var(--rb-gold);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
  fill: var(--rb-gold);
  transition: fill 0.3s ease;
}

.footer__social a:hover svg {
  fill: #fff;
}

/* --- Section Header --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rb-gold);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--rb-text);
  line-height: 1.2;
}

.section-heading--light {
  color: var(--rb-cream);
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn--gold {
  background: var(--rb-gold);
  color: #fff;
}

.btn--gold:hover {
  background: var(--rb-gold-hover);
  box-shadow: 0 0 30px rgba(45, 125, 210, 0.4);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--rb-cream);
  border: 2px solid rgba(240, 242, 245, 0.3);
}

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

.btn--dark {
  background: var(--rb-dark);
  color: var(--rb-cream);
}

.btn--dark:hover {
  background: var(--rb-dark-800);
  box-shadow: 0 0 30px rgba(45, 125, 210, 0.2);
  transform: translateY(-2px);
}

/* ========================================
   1. ANNOUNCEMENT BAR
   ======================================== */
.announcement-bar {
  background: var(--rb-dark);
  padding: 10px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--rb-sand);
  letter-spacing: 0.03em;
}

.announcement-bar a {
  color: var(--rb-gold);
  font-weight: 600;
}

.announcement-bar a:hover {
  color: var(--rb-gold-light);
}

.announcement-bar span {
  margin: 0 6px;
  opacity: 0.4;
}

/* ========================================
   2. STICKY NAV
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(240, 242, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 204, 210, 0.5);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(26, 26, 26, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--rb-dark);
  white-space: nowrap;
}

.navbar__logo em {
  font-style: normal;
  color: var(--rb-gold);
}

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

.navbar__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rb-text-muted);
  position: relative;
  padding-bottom: 4px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rb-gold);
  transition: width 0.3s ease;
}

.navbar__links a:hover {
  color: var(--rb-text);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
  padding: 10px 24px !important;
  text-transform: uppercase;
  background: var(--rb-gold);
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
}

.navbar__cta::after {
  display: none !important;
}

.navbar__cta:hover {
  background: var(--rb-gold-hover);
  color: #fff !important;
  box-shadow: 0 0 20px rgba(45, 125, 210, 0.3);
}

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--rb-text);
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* ========================================
   3. HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--rb-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://srpowerwash.com/wp-content/uploads/2023/04/Depositphotos_137356294_xl-2015-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.75) 0%,
    rgba(26, 26, 26, 0.6) 50%,
    rgba(26, 26, 26, 0.88) 100%
  );
}

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

.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rb-gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--rb-cream);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero__heading em {
  font-style: normal;
  color: var(--rb-gold);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--rb-sand);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}

.hero__scroll-icon {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(240, 242, 245, 0.3);
  border-radius: 14px;
  position: relative;
}

.hero__scroll-icon::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--rb-gold);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

/* ========================================
   4. SERVICES
   ======================================== */
.services {
  padding: 100px 0;
  background: var(--rb-cream);
}

.services__header {
  text-align: center;
  margin-bottom: 60px;
}

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

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid rgba(200, 204, 210, 0.5);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rb-gold), var(--rb-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26, 26, 26, 0.08);
  border-color: var(--rb-gold-light);
}

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

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rb-gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--rb-gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.service-card:hover .service-card__icon {
  background: var(--rb-gold);
}

.service-card:hover .service-card__icon svg {
  stroke: var(--rb-dark);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rb-text);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.service-card:hover .service-card__title {
  color: var(--rb-gold);
}

.service-card__text {
  font-size: 0.92rem;
  color: var(--rb-text-muted);
  line-height: 1.7;
}

/* ========================================
   5. WHY CHOOSE US
   ======================================== */
.why-us {
  padding: 100px 0;
  background: var(--rb-cream-dark);
}

.why-us__header {
  text-align: center;
  margin-bottom: 60px;
}

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

.why-card {
  text-align: center;
  padding: 36px 24px;
}

.why-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--rb-gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.why-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--rb-gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}

.why-card:hover .why-card__icon {
  background: var(--rb-gold);
  border-color: var(--rb-gold-light);
  transform: scale(1.08);
}

.why-card:hover .why-card__icon svg {
  stroke: var(--rb-dark);
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rb-text);
  margin-bottom: 10px;
}

.why-card__text {
  font-size: 0.88rem;
  color: var(--rb-text-muted);
  line-height: 1.7;
}

/* ========================================
   6. GALLERY
   ======================================== */
.gallery {
  padding: 100px 0;
  background: var(--rb-dark);
}

.gallery__header {
  text-align: center;
  margin-bottom: 60px;
}

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

.gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(26, 26, 26, 0.7) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--rb-cream);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   7. TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 100px 0;
  background: var(--rb-cream);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

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

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid rgba(200, 204, 210, 0.5);
  position: relative;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--rb-gold);
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--rb-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rb-gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--rb-gold);
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--rb-text);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--rb-text-muted);
}

/* ========================================
   8. FAQ
   ======================================== */
.faq {
  padding: 100px 0;
  background: var(--rb-cream-dark);
}

.faq__header {
  text-align: center;
  margin-bottom: 60px;
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 14px;
  border: 1px solid rgba(200, 204, 210, 0.5);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--rb-gold-light);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rb-text);
  text-align: left;
  transition: color 0.3s ease;
}

.faq-item__question:hover {
  color: var(--rb-gold);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rb-gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--rb-gold);
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item__icon {
  background: var(--rb-gold);
}

.faq-item.active .faq-item__icon svg {
  stroke: var(--rb-dark);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__answer-inner {
  padding: 0 28px 22px;
  font-size: 0.92rem;
  color: var(--rb-text-muted);
  line-height: 1.8;
}

/* ========================================
   9. CONTACT CTA
   ======================================== */
.cta {
  padding: 100px 0;
  background: var(--rb-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(45, 125, 210, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta__content {
  position: relative;
  z-index: 2;
}

.cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--rb-cream);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta__heading em {
  font-style: normal;
  color: var(--rb-gold);
}

.cta__sub {
  font-size: 1.05rem;
  color: var(--rb-sand);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta__phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rb-gold);
  font-weight: 700;
  margin-top: 28px;
  display: inline-block;
  transition: color 0.3s ease;
}

.cta__phone:hover {
  color: var(--rb-gold-light);
}

/* ========================================
   10. FOOTER
   ======================================== */
.footer {
  background: var(--rb-dark-800);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(240, 242, 245, 0.08);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rb-cream);
  margin-bottom: 16px;
}

.footer__brand-name em {
  font-style: normal;
  color: var(--rb-gold);
}

.footer__brand-text {
  font-size: 0.88rem;
  color: var(--rb-sand);
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--rb-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

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

.footer__links a {
  font-size: 0.88rem;
  color: var(--rb-sand);
  opacity: 0.7;
  transition: all 0.3s ease;
}

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

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--rb-sand);
  opacity: 0.8;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--rb-gold);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: var(--rb-sand);
}

.footer__contact-item a:hover {
  color: var(--rb-gold);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--rb-sand);
  opacity: 0.5;
}

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

@keyframes scrollDot {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(12px);
  }
}

/* Scroll-triggered fade-in-up */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Staggered children */
.fade-in-up.visible:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up.visible:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up.visible:nth-child(4) { transition-delay: 0.3s; }
.fade-in-up.visible:nth-child(5) { transition-delay: 0.4s; }
.fade-in-up.visible:nth-child(6) { transition-delay: 0.5s; }
.fade-in-up.visible:nth-child(7) { transition-delay: 0.6s; }

/* ========================================
   RESPONSIVE
   ======================================== */

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

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

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

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

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

/* Mobile */
@media (max-width: 768px) {
  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--rb-cream);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(26, 26, 26, 0.1);
    z-index: 1001;
  }

  .navbar__links.open {
    right: 0;
  }

  .navbar__toggle {
    display: flex;
    z-index: 1002;
  }

  .navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(4px);
  }

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

  .navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(4px);
  }

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

  .why-us__grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero__heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .cta__buttons {
    flex-direction: column;
  }

  .faq-item__question {
    font-size: 0.95rem;
    padding: 18px 20px;
  }

  .faq-item__answer-inner {
    padding: 0 20px 18px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .announcement-bar {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .navbar__logo {
    font-size: 1.1rem;
  }

  .container {
    padding: 0 16px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .section-heading {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}
