/* 
  Precision Auto Spa - Global Styles
  Luxury Automotive Aesthetic
*/

:root {
  /* Colors */
  --color-primary: #ffffff;
  --color-secondary: #000000;
  --color-accent: #a8a8a8; /* Metallic Silver */
  --color-accent-dark: #333333;
  --color-text-main: #f5f5f5;
  --color-text-muted: #999999;
  --color-bg-dark: #0a0a0a;
  --color-bg-card: #141414;
  --color-gold: #c5a059; /* Optional Gold for special elements */
  
  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-dark);
  color: var(--color-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-logo {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

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

ul {
  list-style: none;
}

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

/* --- Modal Overlay --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 2000;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s ease;
  background-color: var(--color-bg-card);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.redesigned-modal {
  max-width: 850px;
  width: 95%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 1);
}

.modal-flex {
  display: flex;
  min-height: 600px;
}

.modal-side-img {
  flex: 1;
  position: relative;
}

.modal-side-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.modal-form-side {
  flex: 1.2;
  padding: 50px;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 100;
}

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

@media (max-width: 768px) {
  .modal-flex { flex-direction: column; min-height: auto; }
  .modal-side-img { height: 180px; }
  .modal-form-side { padding: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .modal-side-overlay { padding: 20px; }
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.modal-header {
  text-align: center;
  margin-bottom: 40px;
}

.modal-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.modal-header p {
  color: var(--color-text-muted);
}

/* --- Form Elements --- */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  background-color: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: #222;
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
  font-size: 0.9rem;
}

/* --- Layout Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

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

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

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

.btn-primary:hover {
  background-color: var(--color-gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

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

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

/* --- Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 12px 0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 800;
  text-decoration: none;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

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

.nav-links a.active {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* --- Mobile Menu --- */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.mobile-menu.active {
  left: 0;
}

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

.mobile-links li {
  margin: 35px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.mobile-menu.active .mobile-links li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-links li:nth-child(4) { transition-delay: 0.4s; }
.mobile-links li:nth-child(5) { transition-delay: 0.5s; }
.mobile-links li:nth-child(6) { transition-delay: 0.6s; }

.mobile-links a {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 4px;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s ease;
  display: block;
}

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

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Footer --- */
footer {
  background-color: var(--color-secondary);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-info p {
  color: var(--color-text-muted);
  margin: 20px 0;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background-color: var(--color-gold);
}

.footer-links h4 {
  margin-bottom: 25px;
  font-size: 1rem;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-links ul a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* --- Hero v3 Elite --- */
.hero-v3 {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: #000;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* --- Hero Section Track-Based Slider --- */
.hero-v3 {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-color: #000;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out;
  transform: scale(1);
  z-index: 1;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.08); /* Cinematic Zoom */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-container-v3 {
  position: relative;
  z-index: 10;
  padding: 0 5%;
}

.hero-content {
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease out 0.4s;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-tag {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero-title .gold {
  color: var(--color-gold);
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 45px;
  max-width: 550px;
  line-height: 1.6;
}

/* Navigation Controls */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-nav:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #000;
}

.hero-nav.prev { left: 40px; }
.hero-nav.next { right: 40px; }

.hero-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 100;
}

.hero-dot {
  width: 30px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--color-gold);
  width: 50px;
}

@media (max-width: 1024px) {
  .hero-title { font-size: 4rem; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 3rem; }
  .hero-nav { display: none; }
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

.hero-container-v3 {
  position: relative;
  z-index: 10;
  padding-left: 5%;
}

.hero-tag-list {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.hero-tag-list .tag {
  color: var(--color-gold);
  border: 1px solid rgba(197,160,89,0.3);
  padding: 5px 15px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-hero-title {
  font-family: var(--font-heading);
  line-height: 0.85;
  margin-bottom: 35px;
}

.hero-hero-title .thin {
  font-size: 3rem;
  font-weight: 200;
  color: #fff;
}

.hero-hero-title .bold {
  font-size: 7rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
}

.hero-hero-title .outline {
  font-size: 7rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  letter-spacing: -2px;
}

.hero-hero-desc {
  max-width: 500px;
  font-size: 1.15rem;
  color: #888;
  margin-bottom: 50px;
  line-height: 1.6;
}

.hero-hero-btns {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-trust p {
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
}

.vertical-label {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 5px;
  z-index: 10;
}

@media (max-width: 1024px) {
  .hero-hero-title .bold, .hero-hero-title .outline { font-size: 6rem; }
  .hero-hero-title .thin { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .hero-hero-title .bold, .hero-hero-title .outline { font-size: 4.5rem; }
  .hero-hero-title .thin { font-size: 2rem; }
  .hero-hero-btns { flex-direction: column; align-items: flex-start; gap: 20px; }
  .vertical-label { display: none; }
  .hero-container-v3 { padding-left: 20px; }
}

.hero-badge {
  display: inline-block;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero h1 {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  animation: slideUp 1.4s ease-out;
}

/* --- Services Section with Plexus Network Animation --- */
#services {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-dark);
}

#plexus-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.services-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

#services .container {
  position: relative;
  z-index: 10;
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 25px;
  color: var(--color-gold);
}

/* --- Sections --- */
.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-title .divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-gold);
  margin: 0 auto;
}

/* --- Call Now Floating --- */
.floating-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: var(--color-gold);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

/* --- Animations --- */
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  header { padding: 15px 0; }
  .logo { font-size: 1.1rem; }
  .header-cta .btn-primary { display: none; } /* Hide large book button in header on mobile */
  .mobile-toggle { display: flex; z-index: 1001; }
  
  .nav-links { display: none; }
  .section-padding { padding: 60px 0; }
  
  .about-flex { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  
  .pricing-card.best-value { transform: scale(1); margin: 20px 0; }
  
  .service-detail { flex-direction: column !important; gap: 30px !important; }
}

@media (max-width: 480px) {
  .logo { font-size: 1rem; }
  .header-cta { gap: 10px; }
  .hero-hero-title .bold, .hero-hero-title .outline { font-size: 3.5rem; }
  .hero-hero-title .thin { font-size: 1.8rem; }
  .hero-hero-desc { font-size: 1rem; }
}

/* --- Utilities --- */

/* --- Premium Before & After Comparison Slider --- */
.comparison-container {
  max-width: 1000px;
  margin: 50px auto 30px;
  position: relative;
}

.comparison-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 50px 100px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  background-color: var(--color-bg-dark);
  cursor: ew-resize;
  user-select: none;
}

.comparison-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.image-before {
  z-index: 5;
  width: 100%;
  height: 100%;
}

.image-after {
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* Initial state: 50% wipe from right */
  clip-path: inset(0 0 0 50%);
}

.label {
  position: absolute;
  top: 25px;
  padding: 8px 16px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  z-index: 20;
  border-radius: 4px;
  text-transform: uppercase;
}

.label.before { left: 25px; }
.label.after { right: 25px; }

.comparison-handle {
  position: absolute;
  top: 0;
  left: 50%; /* Initial */
  height: 100%;
  width: 2px;
  background-color: #fff;
  z-index: 30;
  pointer-events: none;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.handle-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.2), 0 0 20px rgba(0,0,0,0.4);
}

.handle-line {
  width: 2px;
  flex: 1;
  background-color: #fff;
}

/* Custom stats */
.comparison-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}

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

.stat-val {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}

.stat-lab {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .comparison-slider { 
    aspect-ratio: 4 / 5; /* Taller on mobile to show more detail */
  }
  .comparison-stats { 
    flex-direction: column; 
    gap: 30px; 
    margin-top: 30px;
  }
  .label {
    top: 15px;
    padding: 6px 10px;
    font-size: 0.6rem;
  }
  .label.before { left: 15px; }
  .label.after { right: 15px; }
  
  .hero-title {
    font-size: 3.5rem;
    letter-spacing: -1px;
  }
  
  .hero-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-btns {
    display: flex;
    justify-content: center;
  }

  .hero-nav {
    display: none; /* Hide arrows on mobile to focus on dots/swipes */
  }

  .vertical-label {
    display: none;
  }
}

/* --- Special CTA Dominance --- */
.hero-cta-btn {
  padding: 18px 45px !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  background-color: var(--color-gold) !important;
  color: #000 !important;
  box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
  animation: hero-cta-pulse 2s infinite;
  border: 1px solid rgba(255,255,255,0.2) !important;
}

.hero-cta-btn:hover {
  animation: none;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.6);
}

@keyframes hero-cta-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

/* --- Testimonials Refined --- */
.testimonial-card {
  text-align: left !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.testimonial-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  padding: 3px;
  background: rgba(255,255,255,0.05);
}

.testimonial-meta {
  flex: 1;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.testimonial-name {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  color: #fff;
  margin: 0;
}

.testimonial-city {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }

  .handle-circle {
    width: 44px;
    height: 44px;
  }
}

