/*
Theme Name: Wild Horse Cleaning Solutions
Theme URI: https://wildhorsecleaning.co.uk
Author: Wild Horse Cleaning Solutions
Author URI: https://wildhorsecleaning.co.uk
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wildhorse-cleaning
*/

/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
  --primary-red: #e10914;
  --primary-blue: #079cd4;
  --dark-gray: #1a1a1a;
  --medium-gray: #4a4a4a;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-lg: rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'avenir-lt-pro', sans-serif;
  font-weight: 200;
  font-style: normal;
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'avenir-lt-pro', sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

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

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

ul {
  list-style: none;
}

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

.section {
  padding: 100px 0;
}

.section-dark {
  background: linear-gradient(
    135deg,
    var(--dark-gray) 0%,
    var(--medium-gray) 100%
  );
  color: var(--white);
}

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

.section-subtitle {
  display: inline-block;
  color: var(--primary-red);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

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

.section-description {
  font-size: 1.1rem;
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto;
}

.section-dark .section-description {
  color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-block;
  padding: 15px 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(225, 9, 20, 0.3);
}

.btn-primary:hover {
  background: #c00812;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 9, 20, 0.4);
}

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

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

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

/* ===================================
   Navigation
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 20px var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 30px var(--shadow-lg);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 80px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-gray);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-phone {
  background: var(--primary-blue);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 50px;
}

.nav-phone:hover {
  background: #0685b8;
  transform: translateY(-2px);
}

.nav-phone::after {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark-gray);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(225, 9, 20, 0.85) 0%,
    rgba(7, 156, 212, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.hero-logo {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.hero-logo img {
  height: 150px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.badge-item i {
  font-size: 2.5rem;
  color: var(--white);
}

.badge-item span {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 2rem;
  color: var(--white);
}

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

/* Fade in animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
.delay-4 {
  animation-delay: 0.8s;
}

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

/* ===================================
   About Section
   =================================== */
.about {
  background: var(--light-gray);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text .lead {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 0;
  box-shadow: 0 4px 15px var(--shadow);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px var(--shadow-lg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 5px;
}

.stat-number::after {
  content: '+';
}

.stat-label {
  font-size: 0.9rem;
  color: var(--medium-gray);
  font-weight: 600;
}

.about-image {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: var(--transition);
}

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

.about-image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary-red);
  color: var(--white);
  padding: 25px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(225, 9, 20, 0.4);
}

.about-image-badge i {
  font-size: 2rem;
  margin-bottom: 5px;
}

.about-image-badge span {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

/* ===================================
   Certifications Section
   =================================== */
.certifications {
  padding: 80px 0;
  background: var(--white);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.cert-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--light-gray);
  border-radius: 0;
  transition: var(--transition);
  border: 2px solid transparent;
}

.cert-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: 0 10px 30px var(--shadow-lg);
}

.cert-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-blue) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cert-card:hover .cert-icon {
  transform: rotateY(360deg);
}

.cert-icon i {
  font-size: 2rem;
  color: var(--white);
}

.cert-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.cert-card p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* ===================================
   Services Section
   =================================== */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.service-category {
  background: var(--light-gray);
  border-radius: 0;
  padding: 40px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.service-category:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 10px 30px var(--shadow-lg);
  transform: translateY(-5px);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--primary-red);
}

.category-header i {
  font-size: 2.5rem;
  color: var(--primary-red);
}

.category-header h3 {
  font-size: 1.5rem;
  color: var(--dark-gray);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.service-item > i {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-top: 3px;
  flex-shrink: 0;
}

.service-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark-gray);
}

.service-item p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  line-height: 1.5;
}

.visit-schedule {
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-blue) 100%
  );
  color: var(--white);
  padding: 50px 20px;
  border-radius: 0;
  text-align: center;
  width: 100%;
}

.visit-schedule h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.schedule-options {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.schedule-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  min-width: 120px;
  transition: var(--transition);
}

.schedule-option:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.schedule-option i {
  font-size: 2rem;
}

.schedule-option span {
  font-weight: 600;
  font-size: 1rem;
}

.schedule-note {
  font-size: 0.95rem;
  opacity: 0.9;
  font-style: italic;
}

/* ===================================
   Coverage Section
   =================================== */
.coverage {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.coverage-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.coverage-image {
  position: absolute;
  right: -10%;
  top: 30%;
  transform: translateY(-50%) rotate(20deg);
  width: 60%;
  z-index: -1;
  opacity: 0.2;
}

.coverage-image img {
  max-width: 100%;
  height: auto;
}

.coverage-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.coverage-type {
  background: var(--white);
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}

.coverage-type:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-lg);
}

.coverage-type-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--light-gray);
}

.coverage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-blue) 100%
  );
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coverage-icon.commercial {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-red) 100%
  );
}

.coverage-icon i {
  font-size: 2rem;
  color: var(--white);
}

.coverage-type h3 {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin: 0;
}

.coverage-description {
  font-size: 1.05rem;
  color: var(--medium-gray);
  margin-bottom: 20px;
  font-weight: 600;
}

.county-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.county-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--dark-gray);
  font-weight: 600;
}

.county-list i {
  color: var(--primary-red);
  font-size: 0.9rem;
}

.coverage-note {
  font-size: 0.9rem;
  color: var(--primary-blue);
  font-weight: 600;
  font-style: italic;
  background: rgba(7, 156, 212, 0.1);
  padding: 10px 15px;
  border-radius: 0;
  margin-top: 15px;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
  position: relative;
  overflow: hidden;
}

.contact-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(225, 9, 20, 0.92) 0%,
    rgba(7, 156, 212, 0.92) 100%
  );
  z-index: 1;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact .section-subtitle {
  color: var(--white);
}

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

.contact .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: var(--white);
  padding: 30px;
  border-radius: 0;
  box-shadow: 0 4px 15px var(--shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px var(--shadow-lg);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-blue) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  margin-bottom: 5px;
}

.contact-link {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-link:hover {
  color: var(--primary-red);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 0;
  font-family: 'avenir-lt-pro', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  transition: var(--transition);
}

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

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

.btn-loading {
  display: none;
}

.contact-form.loading .btn-text {
  display: none;
}

.contact-form.loading .btn-loading {
  display: inline;
}

.form-message {
  padding: 15px;
  border-radius: 0;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 20px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section ul li {
  font-size: 0.95rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

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

.footer-section ul li i {
  color: var(--primary-blue);
  margin-right: 10px;
  width: 15px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(225, 9, 20, 0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-blue);
  transform: translateY(-5px);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2rem;
  }

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

  .about-image {
    order: -1;
  }

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

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

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

  .coverage-wrapper {
    grid-template-columns: 1fr;
  }

  .coverage-image {
    width: 80%;
    right: -20%;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 90px;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 90px);
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    box-shadow: -2px 0 20px var(--shadow);
    transition: var(--transition);
    gap: 20px;
    align-items: flex-start;
  }

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

  .nav-toggle {
    display: flex;
  }

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

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

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

  .hero-logo img {
    height: 100px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-badges {
    gap: 20px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 400px;
  }

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

  .county-list {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .schedule-options {
    gap: 15px;
  }

  .schedule-option {
    min-width: 100px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .hero-logo img {
    height: 80px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 12px 30px;
    font-size: 0.85rem;
  }

  .logo img {
    height: 50px;
  }

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

  .service-category,
  .contact-form-wrapper {
    padding: 25px;
  }

  .visit-schedule {
    padding: 30px 20px;
  }

  .visit-schedule h3 {
    font-size: 1.5rem;
  }
}

/* ===================================
   Scroll Animations
   =================================== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

/* ===================================
   Contact Form 7 Styling
   =================================== */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.wpcf7-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wpcf7-form .form-group label {
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

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

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 0;
  font-family: 'avenir-lt-pro', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(7, 156, 212, 0.1);
}

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

.wpcf7-form input[type="submit"] {
  display: inline-block;
  width: 100%;
  padding: 15px 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 0.9rem;
  background: var(--primary-red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(225, 9, 20, 0.3);
}

.wpcf7-form input[type="submit"]:hover {
  background: #c00812;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 9, 20, 0.4);
}

.wpcf7-form .wpcf7-response-output {
  padding: 15px;
  border-radius: 0;
  text-align: center;
  font-weight: 600;
  margin: 0;
}

.wpcf7-form.sent .wpcf7-response-output {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.wpcf7-not-valid-tip {
  color: #721c24;
  font-size: 0.85rem;
  margin-top: 5px;
}

.wpcf7-spinner {
  margin-left: 10px;
}

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

