@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-red: #B30000;
  --primary-red-dark: #8F0000;
  --dark-grey: #222222;
  --white: #FFFFFF;
  --accent-gold: #F0B200;
  --light-grey: #CCCCCC;
  --light-grey-bg: #F5F5F5;
  
  --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  
  --transition-fast: 0.2s ease-in-out;
  --transition-medium: 0.3s ease-in-out;
  --transition-slow: 0.6s ease-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-grey);
  background-color: var(--white);
  overflow-x: hidden;
}

main {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23CCCCCC' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-grey);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--primary-red);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-red-dark);
}

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

ul, ol {
  list-style: none;
}

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

.section {
  padding: 4rem 0;
}

.bg-light { background-color: var(--light-grey-bg); }
.bg-dark { background-color: var(--dark-grey); color: var(--white); }
.bg-primary { background-color: var(--primary-red); color: var(--white); }

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-primary { color: var(--primary-red); }
.text-gold { color: var(--accent-gold); }

/* ==================== HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--primary-red);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: background-color var(--transition-medium);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.logo svg {
  height: 40px;
  width: auto;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.header-phone svg {
  width: 24px;
  height: 24px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

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

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

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

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--dark-grey);
  padding: 5rem 1.5rem 2rem;
  transition: right var(--transition-medium);
  z-index: 999;
  overflow-y: auto;
}

.main-nav.active {
  right: 0;
}

.main-nav a {
  display: block;
  color: var(--white);
  padding: 1rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.main-nav a:hover {
  color: var(--accent-gold);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-medium), visibility var(--transition-medium);
  z-index: 998;
}

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

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .logo svg {
    height: 50px;
  }
  
  .header-phone {
    font-size: 1rem;
  }
  
  .header-cta {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--dark-grey);
    padding: 0.6rem 1.2rem;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
  }
  
  .header-cta:hover {
    background-color: #d9a000;
    color: var(--dark-grey);
    transform: scale(1.05);
  }
  
  .nav-toggle {
    display: none;
  }
  
  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .main-nav a {
    padding: 0;
    border: none;
    font-size: 1rem;
    position: relative;
  }
  
  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-fast);
  }
  
  .main-nav a:hover::after {
    transform: scaleX(1);
  }
  
  .header-inner {
    padding: 0.75rem 2rem;
  }
}

@media (min-width: 1024px) {
  .logo {
    font-size: 1.2rem;
  }
  
  .logo svg {
    height: 60px;
  }
  
  .main-nav {
    gap: 2.5rem;
  }
  
  .main-nav a {
    font-size: 1.05rem;
  }
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(34,34,34,0.6), rgba(34,34,34,0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 900px;
}

.hero h1 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.hero .phone-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero {
    min-height: 65vh;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .hero p {
    font-size: 1.25rem;
  }
  
  .hero .phone-number {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 75vh;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero-content {
    padding: 3rem;
  }
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.35rem;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--primary-red-dark);
  color: var(--white);
  box-shadow: 0 0 15px 0 rgba(240, 178, 0, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

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

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--dark-grey);
}

.btn-gold:hover {
  background-color: #d9a000;
  color: var(--dark-grey);
  box-shadow: 0 0 15px 0 rgba(240, 178, 0, 0.4);
}

.btn-pulse {
  animation: pulse 2s infinite;
}

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

@keyframes grow {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.btn:hover {
  animation: grow 0.3s ease-in-out;
}

/* ==================== SERVICES ==================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  fill: var(--primary-red);
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-card a {
  font-weight: 600;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* ==================== WHY CHOOSE US ==================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-item svg {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  fill: var(--accent-gold);
  transition: transform var(--transition-fast);
}

.feature-item:hover svg {
  transform: scale(1.1);
}

.feature-item h4 {
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #666;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==================== EMERGENCY SECTION ==================== */
.emergency-section {
  background-color: var(--primary-red);
  color: var(--white);
  text-align: center;
}

.emergency-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.emergency-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.emergency-section .phone-display {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 0.5rem;
  padding: 1.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 3rem;
  color: var(--primary-red);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-card cite {
  font-weight: 600;
  color: var(--dark-grey);
  font-style: normal;
}

.testimonial-card .stars {
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================== SERVICE AREAS ==================== */
.service-areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.service-areas-list span {
  color: var(--dark-grey);
  font-size: 0.95rem;
}

/* ==================== ABOUT PAGE ==================== */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.value-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  fill: var(--primary-red);
}

.value-card h4 {
  margin-bottom: 0.5rem;
}

.team-section {
  background-color: var(--light-grey-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 3px solid var(--primary-red);
}

.team-card h4 {
  margin-bottom: 0.25rem;
}

.team-card p {
  color: #666;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info {
  padding: 1.5rem;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-red);
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-form {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-grey);
  border-radius: 0.35rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(179, 0, 0, 0.1);
}

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

@media (min-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
  }
}

/* ==================== MAP ==================== */
.map-container {
  width: 100%;
  height: 350px;
  background-color: var(--light-grey);
  border-radius: 0.5rem;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==================== FOOTER ==================== */
.site-footer {
  background-color: var(--dark-grey);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

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

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-col p {
  color: #ccc;
  font-size: 0.95rem;
}

.footer-col a {
  color: #ccc;
  display: block;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-gold);
}

.footer-cta {
  display: inline-block;
  background-color: var(--primary-red);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 0.25rem;
  margin-top: 1rem;
  font-weight: 600;
}

.footer-cta:hover {
  background-color: var(--primary-red-dark);
  color: var(--white);
}

.payment-methods {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.payment-methods svg {
  width: 50px;
  height: 32px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background-color var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--primary-red);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ==================== SERVICE DETAIL ==================== */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #666;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==================== FAQ ACCORDION ==================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--light-grey);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--white);
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-grey);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--light-grey-bg);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-red);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.faq-answer-content {
  padding: 1rem 1.5rem;
  background-color: var(--light-grey-bg);
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ==================== ANIMATIONS ==================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.bounce-on-scroll {
  animation: none;
}

.bounce-on-scroll.visible {
  animation: bounce 0.5s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .bounce-on-scroll {
    animation: none;
  }
  
  .btn-pulse {
    animation: none;
  }
  
  .hero::before {
    transition: none;
  }
}

/* ==================== UTILITY ==================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==================== PAGE HEADERS ==================== */
.page-header {
  background-color: var(--dark-grey);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: #ccc;
  margin: 0;
}

/* ==================== CUSTOM CURSOR (Desktop) ==================== */
@media (hover: hover) {
  .cursor-halo {
    display: none;
  }
}

/* ==================== RESPONSIVE TYPOGRAPHY ==================== */
@media (max-width: 639px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}

@media (min-width: 640px) and (max-width: 767px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-grey-bg);
}

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

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red-dark);
}

/* ==================== FOCUS STATES ==================== */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}