
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #FFFFFF;
  background-color: #091F2C;
}

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

/* Header */
.header {
  background: rgba(9, 31, 44, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD700;
}

.nav-brand i {
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.nav-contact .phone {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
}

.nav-contact .phone i {
  margin-right: 0.5rem;
  color: #FF6600;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(9, 31, 44, 0.7), rgba(9, 31, 44, 0.7)), url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(9, 31, 44, 0.8) 0%, rgba(9, 31, 44, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #FFFFFF;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  color: #FFFFFF;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.badge i {
  margin-right: 0.5rem;
  color: #FFD700;
  font-size: 1.2rem;
}

/* Statistics */
.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
  display: block;
  font-size: 1rem;
  color: #FFFFFF;
  margin-top: 0.5rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: linear-gradient(135deg, #091F2C 0%, #0a2134 100%);
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #FFD700;
  font-weight: 700;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.service-card i {
  font-size: 3rem;
  color: #FF6600;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #FFD700;
  font-weight: 600;
}

.service-card p {
  color: #FFFFFF;
  line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
  padding: 5rem 0;
  background: #091F2C;
}

.why-choose h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #FFD700;
  font-weight: 700;
}

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

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFD700, #FF6600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: #091F2C;
}

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #FFD700;
  font-weight: 600;
}

.feature p {
  color: #FFFFFF;
  line-height: 1.6;
}

/* Process Section */
.process {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a2134 0%, #091F2C 100%);
}

.process h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #FFD700;
  font-weight: 700;
}

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

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFD700, #FF6600);
  color: #091F2C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #FFD700;
  font-weight: 600;
}

.step p {
  color: #FFFFFF;
  line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
  padding: 5rem 0;
  background: #091F2C;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #FFD700;
  font-weight: 700;
}

.form-header p {
  font-size: 1.1rem;
  color: #FFFFFF;
  max-width: 600px;
  margin: 0 auto;
}

.quote-form {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #FFD700;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #FFD700, #FF6600);
  color: #091F2C;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Footer */
.footer {
  background: #0a1a24;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

.footer-section h3 {
  color: #FFD700;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-brand {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 1rem;
}

.footer-brand i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
}

.footer-section p {
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: #FFFFFF;
}

.contact-item i {
  margin-right: 0.8rem;
  color: #FF6600;
  width: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.footer-section ul li::before {
  content: "•";
  color: #FF6600;
  position: absolute;
  left: 0;
}

.hours div {
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}

.emergency {
  color: #FF6600 !important;
  font-weight: 600;
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .trust-badges {
    gap: 1rem;
  }
  
  .badge {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .quote-form {
    padding: 2rem;
  }
  
  .services h2,
  .why-choose h2,
  .process h2,
  .form-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .quote-form {
    padding: 1.5rem;
  }
}

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

.hero-content {
  animation: fadeInUp 1s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection colors */
::selection {
  background: #FFD700;
  color: #091F2C;
}
