
:root {
  --primary: #1a1a1a;
  --secondary: #666666;
  --accent: #00b894;
  --light: #f8f9fa;
  --dark: #000000;
  --gray: #e9ecef;
  --border-radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: var(--primary);
  background-color: #ffffff;
  font-weight: 400;
}

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

/* Header & Navigation */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

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

.logo-icon {
  color: var(--accent);
  font-size: 32px;
  background: linear-gradient(135deg, var(--accent), #00cec9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-text span {
  background: linear-gradient(135deg, var(--accent), #00cec9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  padding: 8px 16px;
  border-radius: 25px;
  position: relative;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: var(--accent);
  background-color: rgba(0, 184, 148, 0.1);
  transform: translateY(-2px);
}

nav a.active {
  color: var(--accent);
  background-color: rgba(0, 184, 148, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background-color: var(--gray);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.hero-image:hover img {
  transform: scale(1.02);
}

.hero-text {
  padding-left: 40px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--primary);
  letter-spacing: -1px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--secondary);
  line-height: 1.6;
  font-weight: 400;
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-feature i {
  color: var(--accent);
  font-size: 24px;
}

.hero-feature span {
  font-weight: 600;
  color: var(--primary);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #00cec9);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 184, 148, 0.4);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.cta-button.secondary:hover {
  background: var(--accent);
  color: white;
}

.hero-bottom-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200px;
  background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
  opacity: 0.8;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

/* About Us Section */
.about-section {
  padding: 100px 0;
  background-color: var(--light);
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

.about-text h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--secondary);
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--gray);
}

.about-stats .stat {
  text-align: center;
}

.about-stats .stat h4 {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 5px;
}

.about-stats .stat p {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.certifications {
  position: absolute;
  bottom: -20px;
  left: 20px;
  display: flex;
  gap: 15px;
}

.cert-badge {
  background: white;
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
}

.cert-badge i {
  color: var(--accent);
}

/* Services Section */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background: var(--accent);
  bottom: -10px;
  left: 20%;
}

.section-title p {
  color: var(--secondary);
  max-width: 700px;
  margin: 0 auto;
}

.services-section {
  padding: 100px 0;
  background-color: white;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-intro h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.services-intro p {
  font-size: 18px;
  color: var(--secondary);
  line-height: 1.6;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.service-image {
  height: 250px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #00cec9);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-icon i {
  font-size: 60px;
  color: white;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-icon i {
  transform: rotate(5deg);
}

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

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

/* Expanded Services Section */
.expanded-services {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.expanded-services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-details {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px solid var(--gray);
}

.service-details h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-details h4:before {
  content: '✓';
  color: var(--accent);
  font-size: 20px;
  font-weight: bold;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 8px 0;
  color: var(--secondary);
  font-size: 15px;
  border-bottom: 1px solid var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li:before {
  content: '•';
  color: var(--accent);
  font-weight: bold;
  font-size: 18px;
}

/* Responsive Design for Expanded Services */
@media (max-width: 768px) {
  .expanded-services-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-icon {
    width: 100px;
    height: 100px;
  }

  .service-icon i {
    font-size: 50px;
  }

  .service-details h4 {
    font-size: 16px;
  }
}

.service-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-content h3 i {
  color: var(--accent);
  font-size: 20px;
}

.service-content p {
  color: var(--secondary);
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 16px;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray);
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--accent);
  font-size: 14px;
  width: 16px;
}

.service-cta {
  margin-top: 25px;
  text-align: center;
}

.service-cta .cta-button {
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 25px;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light) 0%, #f1f3f4 100%);
  position: relative;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2300b894" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%2300b894" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%2300b894" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%2300b894" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.why-choose-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.feature {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #00cec9);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 184, 148, 0.2);
}

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

.feature-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--accent), #00cec9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.feature h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.feature p {
  color: var(--secondary);
  line-height: 1.6;
  font-size: 16px;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #2d3436 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 184, 148, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.stat-item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-item h3 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 15px;
  color: white;
  background: linear-gradient(135deg, #ffffff, #e9ecef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-item p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Service Areas Section */
.service-areas-section {
  padding: 100px 0;
  background-color: var(--light);
}

.service-areas-content {
  max-width: 1200px;
  margin: 0 auto;
}

.areas-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.areas-intro h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
}

.areas-intro p {
  font-size: 18px;
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.areas-map {
  text-align: center;
  margin-bottom: 60px;
}

.areas-map img {
  width: 100%;
  max-width: 800px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.area-column h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.area-column ul {
  list-style: none;
  padding: 0;
}

.area-column li {
  padding: 8px 0;
  color: var(--secondary);
  font-size: 16px;
  border-bottom: 1px solid var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-column li:last-child {
  border-bottom: none;
}

.area-column li::before {
  content: '📍';
  color: var(--accent);
  font-size: 12px;
}

.emergency-notice {
  background: linear-gradient(135deg, var(--accent), #00cec9);
  padding: 40px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow);
}

.emergency-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emergency-icon i {
  font-size: 32px;
  color: white;
}

.emergency-text h4 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.emergency-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-intro {
  text-align: center;
  margin-bottom: 50px;
}

.faq-intro h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.faq-intro p {
  font-size: 18px;
  color: var(--secondary);
  line-height: 1.6;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--gray);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.faq-question {
  padding: 25px 30px;
  background: linear-gradient(135deg, var(--light) 0%, #f8f9fa 100%);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  font-size: 18px;
  line-height: 1.4;
  transition: var(--transition);
}

.faq-question:hover {
  background: linear-gradient(135deg, #f1f3f4 0%, var(--light) 100%);
}

.faq-question i {
  transition: var(--transition);
  color: var(--accent);
  font-size: 20px;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  background: white;
}

.faq-item.active .faq-answer {
  padding: 30px;
  max-height: 800px;
}

.faq-item.active .faq-question {
  background: var(--accent);
  color: white;
}

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

.faq-answer p {
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 16px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light) 0%, #f1f3f4 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: white;
  padding: 50px 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray);
}

.contact-info h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #00cec9);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--light);
  border-radius: 12px;
  transition: var(--transition);
}

.contact-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent), #00cec9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.contact-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-text p {
  color: var(--secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 16px;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 500px;
  border: 1px solid var(--gray);
}

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

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary) 0%, #2d3436 100%);
  color: white;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.footer-column h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
  position: relative;
  padding-bottom: 15px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #00cec9);
  bottom: 0;
  left: 0;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-about .highlight {
  color: var(--accent);
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 16px;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-contact {
  padding: 0;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
}

.footer-contact i {
  margin-right: 15px;
  color: var(--accent);
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.footer-social {
  margin-top: 30px;
}

.footer-social h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
}

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

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 184, 148, 0.3);
}

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  position: relative;
  z-index: 2;
}

.copyright p {
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-image {
    order: 2;
  }

  .hero-text {
    order: 1;
    padding-left: 0;
  }

  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  nav {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  nav li {
    margin-bottom: 15px;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-content {
    padding: 0 20px;
  }

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

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

  .emergency-notice {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 32px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .hero-image img {
    height: 300px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
