:root {
  --blue: #0a1a44;
  --red: #b3001b;
  --white: #ffffff;
  --gray: #e5e7eb;
  --light-gray: #f3f4f6;
  --dark: #0f172a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* HEADER */
header {
  background: var(--blue);
  color: var(--white);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header .logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--red);
}

/* HERO SECTION */
.hero {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .slides {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.hero .slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 26, 68, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  z-index: 10;
}

.hero-overlay h1 {
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-overlay p {
  font-size: 24px;
  margin-bottom: 24px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.cta-button {
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background: #8a0014;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(179, 0, 27, 0.3);
}

/* HERO DOTS */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dots button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hero-dots button.active {
  background: var(--red);
  width: 32px;
  border-radius: 8px;
}

/* SERVICES SECTION */
.services-section {
  padding: 60px 0;
  background: var(--light-gray);
}

.services-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--blue);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 24px;
  margin-top: 30px;
  auto-flow: dense;
}

.service-card {
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15), 0 16px 48px rgba(179, 0, 27, 0.12);
  border-top: 4px solid var(--red);
}

.service-card h3 {
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 12px;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover h3 {
  color: var(--red);
}

.service-card p {
  color: #666;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #555;
}

.service-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
  font-size: 18px;
}

/* Service Cards with Images */
.service-card-img {
  background-size: cover !important;
  background-position: center !important;
  color: var(--white) !important;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 20px !important;
}

.service-card-img h3 {
  color: var(--white) !important;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.service-card-img p {
  color: rgba(255,255,255,0.95) !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.service-card-img ul li {
  color: rgba(255,255,255,0.9) !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* BEFORE & AFTER SECTION */
.before-after-section {
  padding: 60px 0;
  background: var(--dark);
  color: var(--white);
}

.before-after-section h2 {
  font-size: 36px;
  margin-bottom: 12px;
  text-align: center;
  color: var(--white);
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.before-after-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.before-after-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.before-after-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.before-after-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-label,
.after-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.after-label {
  background: #16a34a;
}

/* MEDIA DIVIDER */
.media-divider {
  font-size: 24px;
  color: var(--blue);
  margin-top: 50px;
  margin-bottom: 24px;
  text-align: center;
}

.slider-column h4 {
  font-size: 20px;
  color: var(--blue);
}

/* IMAGE GALLERY SECTION */
.image-gallery {
  margin-bottom: 40px;
}

.gallery-slider {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.08);
  background: #f0f0f0;
  margin-bottom: 20px;
}

.gallery-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-slide.active {
  display: block;
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  padding: 30px 20px 20px;
  font-size: 18px;
  font-weight: 600;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px 0;
}

.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.gallery-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-dots button:hover {
  background: #999;
}

.gallery-dots button.active {
  background: var(--red);
  width: 32px;
  border-radius: 8px;
}

/* MEDIA SECTION */
.media-section {
  padding: 60px 0;
  background: var(--white);
}

.media-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--blue);
}

.sliders-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.slider-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slider-column h3 {
  font-size: 22px;
  color: var(--blue);
}

.video-slider {
  position: relative;
  width: 100%;
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.06);
}

.video-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  width: 100%;
}

.video-slide.active {
  display: block;
  opacity: 1;
}

.video-slide iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.video-dots {
  display: flex;
  justify-content: center;
  padding: 12px 0;
  gap: 10px;
  background: #f3f4f6;
}

.video-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s;
}

.video-dots button:hover {
  background: #999;
}

.video-dots button.active {
  background: var(--red);
  width: 32px;
  border-radius: 8px;
}

/* SERVICE AREAS SECTION */
.service-areas-section {
  padding: 60px 0;
  background: var(--white);
}

.service-areas-section h2 {
  font-size: 36px;
  margin-bottom: 12px;
  text-align: center;
  color: var(--blue);
}

.service-areas-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.service-areas-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.service-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.06);
  height: 100%;
  min-height: 500px;
  background: #f0f0f0;
}

.service-areas-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 12px;
}

.service-areas-info h3 {
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 12px;
}

.service-states {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-states li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  color: #555;
  font-size: 14px;
}

.service-states li:before {
  content: "📍";
  position: absolute;
  left: 0;
  font-size: 16px;
}

.service-states strong {
  color: var(--blue);
}

.service-note {
  background: var(--white);
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid var(--red);
}

.service-note p {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #666;
}

.service-note p:last-child {
  margin-bottom: 0;
}

.service-note strong {
  color: var(--blue);
}

/* CONTACT SECTION */
.contact-section {
  padding: 60px 0;
  background: var(--light-gray);
}

.contact-section h2 {
  font-size: 36px;
  text-align: center;
  color: var(--blue);
  margin-bottom: 12px;
}

.contact-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(179, 0, 27, 0.1);
}

.captcha-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

#captchaQuestion {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--blue);
  padding: 10px 16px;
  background: #f3f4f6;
  border-radius: 10px;
  min-width: 120px;
}

#captchaAnswer {
  flex: 1;
  padding: 12px 14px !important;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.submit-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.submit-btn:hover {
  background: #8a0014;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(179, 0, 27, 0.2);
}

.submit-btn:active {
  transform: translateY(0);
}

.error-message {
  color: #dc2626;
  font-size: 14px;
  margin-top: -8px;
}

.success-message {
  color: #16a34a;
  font-size: 14px;
  margin-top: -8px;
  font-weight: 600;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item h4 {
  color: var(--blue);
  margin-bottom: 8px;
  font-size: 16px;
}

.info-item p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

/* FOOTER */
footer {
  background: var(--blue);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.footer-column h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-column p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* RESPONSIVE */

/* Tablets and smaller desktops (1024px and below) */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 16px;
    padding: 12px 16px;
  }

  nav {
    gap: 16px;
    font-size: 14px;
  }

  .hero {
    height: 400px;
  }

  .hero-overlay h1 {
    font-size: 32px;
  }

  .hero-overlay p {
    font-size: 16px;
  }

  .services-section h2,
  .media-section h2,
  .contact-section h2,
  .before-after-section h2 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .before-after-gallery {
    grid-template-columns: 1fr;
  }

  .before-after-container {
    height: 300px;
  }

  .gallery-slider {
    height: 350px;
  }

  .sliders-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .captcha-row {
    flex-direction: column;
  }

  #captchaQuestion {
    width: 100%;
    min-width: unset;
  }

  .service-areas-content {
    grid-template-columns: 1fr;
  }

  .service-map {
    height: 350px;
  }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 18px;
  }
}

