@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-blue: #004AAD;
  --secondary-blue: #004680;
  --electrical-orange: #FF914D;
  --orange-hover: #E07D3E;
  --dark-gray: #334155;
  --light-gray: #F8FAFC;
  --white: #FFFFFF;
  --text-dark: #0F172A;
  --text-light: #94A3B8;
  --border-radius: 8px;
  --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
p { margin-bottom: 1rem; color: var(--dark-gray); }

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

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.section-title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.bg-light { background-color: var(--light-gray); }
.bg-blue { background-color: var(--primary-blue); color: var(--white); }
.bg-blue h2, .bg-blue h3 { color: var(--white); }
.bg-blue p { color: #CBD5E1; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 28px;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary {
  background-color: var(--electrical-orange);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(255, 145, 77, 0.4), 0 4px 6px -2px rgba(255, 145, 77, 0.2);
}

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

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}

.header {
  background-color: var(--white);
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1000;
}

.top-bar {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.9rem;
}

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

.top-bar-left {
  display: flex;
  gap: 20px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav {
  padding: 5px 0;
}

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

.logo img {
  transition: all 0.3s ease;
  height: 130px;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--dark-gray);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-links a.active {
  color: var(--primary-blue);
  border-bottom: 2px solid var(--primary-blue);
}

.nav-cta {
  display: flex;
  gap: 15px;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
  background: none;
  border: none;
}

.hero {
  padding: 120px 0;
  background-color: var(--secondary-blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 70, 128, 1) 0%, rgba(0, 70, 128, 0.9) 50%, transparent 100%);
  z-index: 1;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--electrical-orange);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #E2E8F0;
}

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

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.page-banner {
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: block;
    justify-self: center;
}

.banner-wrapper {
  position: relative;
}

.banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(0, 70, 128, 1), rgba(0, 70, 128, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay h1 {
  color: var(--white);
  font-size: 3rem;
  text-align: center;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid #E2E8F0;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-color: var(--electrical-orange);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--electrical-orange);
}

.service-card h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
}

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

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  color: var(--electrical-orange);
}

.visiting-charges {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.visiting-charges .price {
  font-size: 4rem;
  font-weight: 700;
  color: var(--electrical-orange);
  margin: 20px 0;
}

.footer {
  background-color: #0F172A;
  color: var(--text-light);
  padding: 80px 0 20px;
}

.footer p {
  color: #CBD5E1;
}

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

.footer-col h3 {
  font-size: 1.25rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--electrical-orange);
}

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

.footer-links a {
  color: #CBD5E1;
}

.footer-links a:hover {
  color: var(--electrical-orange);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: #CBD5E1;
}

.footer-contact i {
  color: var(--electrical-orange);
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #94A3B8;
  font-size: 0.9rem;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--electrical-orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-5 { margin-bottom: 3rem; }

@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-cta {
    display: none;
  }
}

/* Geometric Hero Section */
.geometric-hero {
  padding: 0;
  height: auto;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--secondary-blue);
  color: var(--white);
  overflow: hidden;
}
.geometric-hero::before {
  display: none;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  z-index: 1;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 70, 128, 1) 0%, rgba(0, 70, 128, 0.9) 50%, transparent 100%);
  z-index: 2;
}
.hero-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-right: 40px;
}
.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--electrical-orange);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  align-self: flex-start;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.hero-content-left h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0;
}
.hero-content-left h1 span {
  color: var(--electrical-orange);
}
.hero-content-left p {
  color: #E2E8F0;
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 28rem;
  margin-bottom: 0;
}
.hero-action-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.btn-large {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--border-radius);
}
.visiting-charge-badge {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 0.75rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 700;
}
.badge-price {
  font-size: 1.25rem;
  font-weight: 700;
}

.hero-content-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 28rem;
}
.hero-service-item {
  background-color: var(--white);
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.hero-service-item:hover {
  transform: translateY(-5px);
}
.hero-service-icon {
  font-size: 2rem;
}
.hero-service-text {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-dark);
}

/* Service Highlights Section */
.service-highlights-section {
  background-color: var(--white);
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}
.service-highlights-section .container {
  padding: 0;
  max-width: 100%;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
.highlight-item {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}
.highlight-border-right {
  border-right: 1px solid #F1F5F9;
}
.highlight-accent {
  width: 3rem;
  height: 0.25rem;
  margin-bottom: 0.5rem;
}
.highlight-accent-orange {
  background-color: var(--electrical-orange);
}
.highlight-accent-blue {
  background-color: var(--primary-blue);
}
.highlight-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
}
.highlight-item p {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.625;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: left;
    gap: 3rem;
  }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 70, 128, 0.9) 0%, rgba(0, 70, 128, 0.95) 100%);
  }
  .hero-content-left {
    padding-right: 0;
    align-items: center;
    text-align: center;
  }
  .experience-badge {
    align-self: center;
  }
  .hero-content-left h1 {
    font-size: 2.5rem;
  }
  .hero-action-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-large {
    width: 100%;
  }
  .visiting-charge-badge {
    width: 100%;
    align-items: center;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .highlight-border-right {
    border-right: none;
    border-bottom: 1px solid #F1F5F9;
  }
}

/* Dropdown Menu CSS */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-radius: var(--border-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  margin: 0;
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--dark-gray);
  font-size: 0.8rem;
  border-bottom: none;
}
.dropdown-menu a:hover {
  background-color: var(--light-gray);
  color: var(--primary-blue);
  border-bottom: none;
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}
.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}
.delay-100 { animation-delay: 0.1s; opacity: 0; }
.delay-200 { animation-delay: 0.2s; opacity: 0; }
.delay-300 { animation-delay: 0.3s; opacity: 0; }


/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}
.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}
.float-btn:hover {
  transform: scale(1.1);
  color: white;
}
.call-btn {
  background-color: var(--primary-blue);
}
.wa-btn {
  background-color: #25D366;
}
@media (max-width: 768px) {
  .float-btn { width: 50px; height: 50px; font-size: 24px; }
  .floating-actions { bottom: 20px; right: 20px; gap: 10px; }
}

/* Service Card with Image */
.service-card-img-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.service-card-img-container img {
  width: 100%;
  height: 100%;
  
  transition: var(--transition);
}
.service-card-with-img {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card-with-img:hover .service-card-img-container img {
  transform: scale(1.05);
}
.service-card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card-content p {
  margin-bottom: 20px;
  flex: 1;
}

/* Fix dropdown display */
.dropdown-menu {
  padding: 0;
  overflow: hidden;
}
.dropdown-menu a {
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.3s ease;
}
.dropdown-menu a:last-child {
  border-bottom: none;
}
.dropdown-menu a:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}
.footer-logo {
  height: 110px;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}
