/* ===== Quality Pest Exterminating PR — WOW Stylesheet ===== */

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

:root {
  --gold: #D4A843;
  --gold-light: #ECC668;
  --gold-glow: rgba(212,168,67,0.25);
  --gold-dark: #B08C2A;
  --black: #0A0A0A;
  --dark: #141414;
  --gray-900: #2A2A2A;
  --gray-600: #6B6B6B;
  --gray-400: #9E9E9E;
  --gray-100: #F4F3F0;
  --off-white: #FAFAF7;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 30px rgba(212,168,67,0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  line-height: 1.7;
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* --- Page Loader --- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader img {
  width: 120px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1); }
}

/* --- Scroll Animations --- */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-up"] { transform: translateY(50px); }
[data-animate="fade-left"] { transform: translateX(-50px); }
[data-animate="fade-right"] { transform: translateX(50px); }
[data-animate="scale-up"] { transform: scale(0.88); }
[data-animate="fade-up"].is-visible,
[data-animate="fade-left"].is-visible,
[data-animate="fade-right"].is-visible,
[data-animate="scale-up"].is-visible {
  opacity: 1;
  transform: none;
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212,168,67,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar-logo img { height: 46px; width: auto; }

.navbar-logo span {
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

.nav-links { display: flex; gap: 6px; }

.nav-links a {
  color: rgba(255,255,255,0.7);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-links a.active {
  color: var(--black);
  background: var(--gold);
  font-weight: 600;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px; height: 24px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  position: absolute;
  left: 0; width: 100%;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

.nav-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-overlay.open { display: block; opacity: 1; }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 100px;
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(40%);
  transition: transform 0.1s linear;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(212,168,67,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(212,168,67,0.07) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 100px;
  background: var(--off-white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.hero-logo {
  width: 160px;
  margin: 0 auto 36px;
  filter: drop-shadow(0 4px 24px rgba(212,168,67,0.35));
  animation: floatLogo 5s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(0.5deg); }
  75% { transform: translateY(-4px) rotate(-0.5deg); }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--white);
}

.hero h1 .hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: wordReveal 0.6s forwards;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  margin-right: 0.3em;
}

@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 em {
  font-style: normal;
}

.hero h1 em .hero-word {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wordReveal 0.6s forwards, shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero p {
  font-size: 1.2rem;
  max-width: 560px;
  margin: 0 auto 44px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 0.8s 0.8s forwards;
}

.hero .btn {
  opacity: 0;
  animation: fadeInUp 0.8s 1s forwards;
}

.hero .btn.btn-pulse {
  animation: fadeInUp 0.8s 1s forwards, btnPulse 2.5s 1.8s ease-in-out infinite;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sub-hero */
.hero-sub { min-height: auto; padding: 150px 24px 100px; }
.hero-sub::after { height: 80px; }
.hero-sub h1 { font-size: 2.8rem; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 16px 42px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(212,168,67,0.3);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-gold);
}

.btn-gold.btn-pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(212,168,67,0.3); }
  50% { box-shadow: 0 4px 40px rgba(212,168,67,0.5); }
}

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

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

.btn-dark {
  background: var(--black);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-dark:hover {
  background: var(--dark);
  transform: translateY(-3px) scale(1.03);
}

/* --- Sections --- */
.section {
  padding: 110px 24px;
  position: relative;
}

.section-dark {
  background: var(--black);
  color: var(--white);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: -50px; left: 0; right: 0;
  height: 100px;
  background: var(--off-white);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
  z-index: 1;
}

.section-dark::after {
  content: '';
  position: absolute;
  bottom: -50px; left: 0; right: 0;
  height: 100px;
  background: var(--off-white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.section-gray { background: var(--gray-100); }

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

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-dark .section-title h2 { color: var(--white); }

.section-title p {
  color: var(--gray-600);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.section-dark .section-title p { color: var(--gray-400); }

.section-title .underline {
  width: 48px; height: 4px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 4px;
}

/* --- Service Cards with 3D Tilt --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  perspective: 1000px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--gold), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}

.service-card:hover { box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }

/* Shine effect on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(135deg, transparent 40%, rgba(212,168,67,0.06) 50%, transparent 60%);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s;
  z-index: 1;
}

.service-card:hover::after {
  transform: rotate(45deg) translateX(20%);
}

.service-card-img {
  width: 100%; height: 180px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img img { transform: scale(1.1); }

.service-card-body {
  padding: 28px 28px 32px;
  position: relative;
  z-index: 2;
}

.service-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(212,168,67,0.04));
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: transform var(--transition);
}

.service-card:hover .icon { transform: scale(1.15) rotate(-5deg); }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Stats Counter Section --- */
.stats-section {
  background: var(--black);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,168,67,0.08), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212,168,67,0.05), transparent 40%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .counter-prefix {
  font-size: 2rem;
  vertical-align: top;
  margin-right: 2px;
}

.stat-number .counter-suffix {
  font-size: 2rem;
}

.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  font-weight: 500;
}

/* --- Testimonials Carousel --- */
.testimonials-section {
  padding: 110px 24px;
  overflow: hidden;
}

.testimonials-track-wrapper {
  overflow: hidden;
  margin: 0 -24px;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  animation: scrollTestimonials 30s linear infinite;
  width: max-content;
}

.testimonials-track:hover { animation-play-state: paused; }

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  min-width: 360px;
  max-width: 400px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
  flex-shrink: 0;
  position: relative;
}

.testimonial-card .quote-icon {
  font-size: 2.4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 20px; right: 24px;
  font-family: serif;
  line-height: 1;
}

.testimonial-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}

.testimonial-author-info span {
  font-size: 0.82rem;
  color: var(--gray-400);
}

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

/* --- Features (Why Us) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  padding-top: 40px;
}

.feature-item {
  text-align: center;
  padding: 32px 20px;
  transition: transform var(--transition);
}

.feature-item:hover { transform: translateY(-6px); }

.feature-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  border-radius: 20px;
  background: rgba(212,168,67,0.12);
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: transform var(--transition), background var(--transition);
}

.feature-item:hover .icon {
  transform: scale(1.12) rotate(-5deg);
  background: rgba(212,168,67,0.2);
}

.feature-item h3 {
  font-family: var(--font-heading);
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

.feature-item p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.about-text h2 {
  font-family: var(--font-heading);
  color: var(--black);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--gold);
  border-radius: 4px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 18px;
  color: var(--gray-600);
  line-height: 1.9;
  font-size: 1.02rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-lg) + 8px);
  border: 2px solid rgba(212,168,67,0.15);
  z-index: -1;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10,10,10,0.3), transparent);
  z-index: 1;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212,168,67,0.12), rgba(212,168,67,0.04));
  font-size: 1.6rem;
  margin-bottom: 14px;
  transition: transform var(--transition);
}

.value-card:hover .icon { transform: scale(1.15); }

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}

.value-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}

.contact-info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,168,67,0.12), rgba(212,168,67,0.04));
  font-size: 1.3rem;
}

.contact-info-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--black);
}

.contact-info-item p, .contact-info-item a {
  color: var(--gray-600);
  font-size: 0.95rem;
}

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

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-100);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition);
  background: var(--off-white);
  color: var(--gray-900);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--gold-glow);
}

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

/* --- CTA Banner (animated gradient) --- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 300% 300%;
  animation: ctaGradient 6s ease-in-out infinite;
  color: var(--black);
  text-align: center;
  padding: 90px 24px;
  position: relative;
}

@keyframes ctaGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 36px;
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 0 24px 28px;
  position: relative;
}

.footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 56px;
}

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

.footer-col h3 {
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 700;
}

.footer-col p, .footer-col a {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  line-height: 2;
}

.footer-col a:hover { color: var(--gold); }
.footer-col ul li { margin-bottom: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px) scale(1.1);
}

/* --- Floating Action Button --- */
.fab-wrapper {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
}

.fab-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--black);
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(212,168,67,0.35);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: fabPulse 3s ease-in-out infinite;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(212,168,67,0.35); }
  50% { box-shadow: 0 4px 40px rgba(212,168,67,0.55); }
}

.fab-wrapper.open .fab-toggle { animation: none; }

.fab-toggle:hover { transform: scale(1.08); }

.fab-toggle .fab-icon-open,
.fab-toggle .fab-icon-close {
  position: absolute;
  transition: all var(--transition);
}

.fab-toggle .fab-icon-close { opacity: 0; transform: rotate(-90deg); }

.fab-wrapper.open .fab-toggle .fab-icon-open { opacity: 0; transform: rotate(90deg); }
.fab-wrapper.open .fab-toggle .fab-icon-close { opacity: 1; transform: rotate(0); }

.fab-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.9);
  transition: all var(--transition);
}

.fab-wrapper.open .fab-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.fab-option {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
  flex-direction: row-reverse;
}

.fab-option-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 3px 14px rgba(0,0,0,0.2);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.fab-option:hover .fab-option-icon { transform: scale(1.12); }

.fab-option-label {
  background: var(--white);
  color: var(--gray-900);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.fab-whatsapp .fab-option-icon { background: #25D366; color: #fff; }
.fab-call .fab-option-icon { background: var(--gold); color: var(--black); }

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--black);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 8px;
    z-index: 999;
    transition: right var(--transition);
    border-left: 1px solid rgba(212,168,67,0.1);
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .hero { min-height: 70vh; padding: 110px 20px 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { min-height: auto; padding: 110px 20px 60px; }
  .hero-sub h1 { font-size: 1.8rem; }
  .hero-logo { width: 90px; margin-bottom: 20px; }
  .hero::after { height: 50px; }
  .hero p { font-size: 0.95rem; margin-bottom: 28px; }

  .section { padding: 80px 20px; }
  .section-dark::before,
  .section-dark::after { height: 60px; }
  .section-title h2 { font-size: 1.9rem; }

  .about-content,
  .contact-grid { grid-template-columns: 1fr; }

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

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 2.4rem; }

  .cta-banner { padding: 70px 20px; }
  .cta-banner h2 { font-size: 1.7rem; }

  .testimonial-card { min-width: 300px; }
}

@media (max-width: 480px) {
  .hero { min-height: 55vh; padding: 100px 16px 50px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-sub { padding: 100px 16px 50px; }
  .hero-sub h1 { font-size: 1.5rem; }
  .hero-logo { width: 72px; margin-bottom: 16px; }
  .hero p { font-size: 0.9rem; }
  .btn { padding: 14px 32px; font-size: 0.88rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2rem; }
}
