/* ===== PREMIUM DARK THEME ===== */
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for better readability on dark */
  background-color: #0A0A0A; /* Rich black background */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #B22222; /* Deep red */
}

.text-center h2:after {
  left: 50%;
  transform: translateX(-50%);
}

/* Header */
header {
  background: #0A0A0A;
  color: #fff;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #B22222; /* Deep red border */
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

.logo a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.logo a span {
  color: #CC5500; /* Burnt orange */
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: #E0E0E0;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
  position: relative;
}

nav ul li a:hover {
  color: #B22222; /* Deep red */
}

nav ul li a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #B22222;
  transition: width 0.3s;
}

nav ul li a:hover:after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85); /* Darker overlay for premium look */
  z-index: -1;
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.hero-content h1 span {
  color: #FF8C00; /* Orange */
  position: relative;
}

.hero-content h1 span:after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(178, 34, 34, 0.3); /* Transparent red */
  z-index: -1;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #CCCCCC;
}

.btn {
  display: inline-block;
  background: #B22222; /* Deep red */
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn:hover {
  background: #8B0000; /* Darker red */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(178, 34, 34, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid #B22222;
  color: #fff;
}

.btn-outline:hover {
  background: #B22222;
  border-color: #B22222;
}

/* Services Preview */
.services-preview {
  padding: 5rem 0;
  background: #0A0A0A;
}

.services-preview h2 {
  color: #fff;
  margin-bottom: 3rem;
}

.services-preview h2:after {
  background: #B22222;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: #1A1A1A; /* Dark gray/black */
  color: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: all 0.3s;
  border: 1px solid #333;
  position: relative;
  overflow: hidden;
}

.card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #B22222;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.card:hover:before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-10px);
  border-color: #B22222;
  box-shadow: 0 15px 30px rgba(178, 34, 34, 0.2);
}

.card i {
  font-size: 3rem;
  color: #FF8C00; /* Orange */
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.5rem;
}

.card p {
  margin-bottom: 1.5rem;
  color: #AAAAAA;
  line-height: 1.7;
}

.card .btn {
  background: transparent;
  border: 1px solid #B22222;
  padding: 0.6rem 1.5rem;
}

.card .btn:hover {
  background: #B22222;
  color: #fff;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: #0F0F0F; /* Slightly lighter black for contrast */
  color: #fff;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.testimonials h2 {
  color: #fff;
  margin-bottom: 3rem;
}

.testimonials h2:after {
  background: #FF8C00; /* Orange */
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #1A1A1A;
  padding: 2rem;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #333;
  transition: all 0.3s;
  position: relative;
}

.testimonial-card:hover {
  border-color: #B22222;
  box-shadow: 0 10px 20px rgba(178, 34, 34, 0.15);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #B22222;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #CCCCCC;
  line-height: 1.7;
}

.testimonial-card h4 {
  color: #FF8C00; /* Orange */
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.testimonial-card .position {
  color: #999;
  font-size: 0.9rem;
}

/* Projects Gallery */
.projects-gallery {
  padding: 5rem 0;
  background: #0A0A0A;
}

.projects-gallery h2 {
  color: #fff;
  margin-bottom: 3rem;
}

.projects-gallery h2:after {
  background: #B22222;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  aspect-ratio: 4/3;
  border: 1px solid #333;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.95));
  color: #fff;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  margin-bottom: 0.25rem;
  color: #FF8C00; /* Orange */
  font-size: 1.2rem;
}

.gallery-overlay p {
  font-size: 0.9rem;
  color: #CCCCCC;
}

/* Page Content */
.page-content {
  padding: 5rem 0;
  background: #0A0A0A;
}

.page-content h1 {
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.page-content h1:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: #B22222;
}

.page-content p {
  color: #CCCCCC;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Service Page Picture Gallery */
.service-gallery {
  margin: 3rem 0 4rem;
}

.service-gallery h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  border-left: 5px solid #FF8C00; /* Orange */
  padding-left: 1rem;
  font-size: 2rem;
}

.service-gallery h2:after {
  display: none;
}

.service-gallery .gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Team Section (About Us) */
.team-section {
  margin: 4rem 0;
}

.team-section h2 {
  color: #fff;
  margin-bottom: 2rem;
  border-left: 5px solid #FF8C00;
  padding-left: 1rem;
  font-size: 2rem;
}

.team-section h2:after {
  display: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-member {
  background: #1A1A1A;
  color: #fff;
  padding: 2rem;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  border: 1px solid #333;
  transition: all 0.3s;
}

.team-member:hover {
  border-color: #B22222;
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #B22222;
}

.team-member h3 {
  margin-bottom: 0.25rem;
  color: #fff;
  font-size: 1.3rem;
}

.team-member .role {
  color: #FF8C00; /* Orange */
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-member p {
  color: #AAAAAA;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Blog/Video List */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.blog-post {
  background: #1A1A1A;
  color: #fff;
  padding: 1.5rem;
  border-radius: 5px;
  border: 1px solid #333;
  transition: all 0.3s;
}

.blog-post:hover {
  border-color: #B22222;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(178, 34, 34, 0.15);
}

.blog-post h3 {
  margin: 1rem 0 0.5rem;
  color: #fff;
  font-size: 1.2rem;
}

.blog-post p {
  color: #AAAAAA;
  font-size: 0.95rem;
}

.blog-post iframe {
  width: 100%;
  height: 200px;
  border: 2px solid #333;
  border-radius: 5px;
}

/* Contact Form */
.contact-form {
  max-width: 700px;
  margin: 3rem 0;
  background: #1A1A1A;
  padding: 2.5rem;
  border-radius: 5px;
  border: 1px solid #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #333;
  border-radius: 3px;
  background: #0A0A0A;
  color: #fff;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #B22222;
  outline: none;
  box-shadow: 0 0 0 2px rgba(178, 34, 34, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
}

.contact-form button {
  background: #B22222;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  width: 100%;
}

.contact-form button:hover {
  background: #8B0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(178, 34, 34, 0.3);
}

/* Footer */
footer {
  background: #0A0A0A;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
  border-top: 2px solid #B22222;
}

.social-links {
  margin-bottom: 1.5rem;
}

.social-links a {
  color: #fff;
  margin: 0 0.8rem;
  font-size: 1.8rem;
  transition: all 0.3s;
  display: inline-block;
}

.social-links a:hover {
  color: #FF8C00; /* Orange */
  transform: translateY(-3px);
}

footer p {
  color: #999;
  font-size: 0.95rem;
}

footer a {
  color: #B22222;
  text-decoration: none;
}

footer a:hover {
  color: #FF8C00;
  text-decoration: underline;
}

/* Section Dividers */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #B22222, transparent);
  margin: 2rem 0;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 0.8rem 0.5rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0 !important;
  }
}

/* ===== ADDED STYLES FOR UPDATED FEATURES ===== */

/* Enhanced Logo Size (20% larger) */
.logo img {
  height: 60px; /* Increased from 50px to 60px */
  width: auto;
  margin-right: 12px;
}

/* Slider Section Styles */
.slider-section {
  margin: 3rem 0 4rem;
}

.slider-section h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  border-left: 4px solid #B22222;
  padding-left: 1rem;
  font-size: 1.8rem;
}

.slider-section h2:after {
  display: none;
}

/* Swiper Slider Styles */
.swiper {
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.swiper-slide {
  position: relative;
  text-align: center;
  background: #1A1A1A;
}

.swiper-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.swiper-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
}

.swiper-pagination-bullet-active {
  background: #B22222 !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #B22222 !important;
  background: rgba(0,0,0,0.6);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem;
}

/* Contact Page Map Styles */
.map-container {
  background: #1A1A1A;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #333;
}

.map-container iframe {
  border-radius: 5px;
  width: 100%;
  height: 400px;
}

/* Contact Info Card */
.contact-info-card {
  background: #1A1A1A;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid #333;
}

.contact-info-card h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.contact-info-card p {
  margin-bottom: 0.8rem;
  color: #CCCCCC;
}

.contact-info-card i {
  color: #B22222;
  width: 30px;
}

.contact-info-card a {
  color: #fff;
  text-decoration: none;
}

.contact-info-card a:hover {
  color: #B22222;
}

/* Two Column Layout for Contact Page */
.contact-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* Emergency Page Special Section */
.emergency-cta {
  margin-top: 3rem;
  text-align: center;
  background: #B22222;
  padding: 3rem;
  border-radius: 8px;
}

.emergency-cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.emergency-cta p {
  color: #fff;
  margin-bottom: 2rem;
}

.emergency-cta .btn-white {
  background: #fff;
  color: #B22222;
  margin-right: 1rem;
}

.emergency-cta .btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.emergency-cta .btn-outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.emergency-cta .btn-outline-white:hover {
  background: #fff;
  color: #B22222;
}

/* Responsive Adjustments for New Styles */
@media (max-width: 992px) {
  .contact-two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .swiper-slide img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .swiper-slide img {
    height: 280px;
  }
  
  .swiper-caption {
    font-size: 0.9rem;
    padding: 1rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 1rem;
  }
  
  .emergency-cta {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .swiper-slide img {
    height: 200px;
  }
  
  .map-container iframe {
    height: 300px;
  }
}
/* Mobile Menu Toggle Styles */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: #fff;
  margin-right: 15px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  header .container {
    flex-direction: row !important;
    justify-content: space-between !important;
    flex-wrap: wrap;
  }
  
  nav {
    width: 100%;
  }

  nav ul {
    display: none !important;
    flex-direction: column;
    width: 100%;
    background: #0A0A0A;
    text-align: center;
    padding: 1rem 0;
    margin-top: 10px;
    border-top: 1px solid #333;
  }

  nav ul.active {
    display: flex !important;
  }

  nav ul li {
    margin: 1rem 0 !important;
  }
}
