:root {
  --primary-color: #1B3A4B;
  --secondary-color: #D2E4DC;
  --accent-color: #4CAF50;
  --text-color: #333333;
  --light-text: #ffffff;
  --background-light: #ffffff;
  --dark-bg: #121212;
  --gray-text: #9e9e9e;
  --attention-color: #ff3e6c;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.announcement-bar {
  background: linear-gradient(to right, #1a2942, #2c3e50);
  color: white;
  padding: 6px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  font-size: 0.8rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.announcement-content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.announcement-item {
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
}

.announcement-separator {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.announcement-item i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 0.9rem;
}

.announcement-item span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.announcement-phone {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.announcement-phone:hover {
  color: var(--accent-color);
  transform: translateY(-1px);
}

.announcement-phone span {
  font-weight: 600;
}

@media (max-width: 768px) {
  .desktop-cta {
    display: none !important;
  }

  .mobile-cta {
    display: block;
  }
}

@media (min-width: 769px) {
  .mobile-cta {
    display: none;
  }

  .desktop-cta {
    display: block;
  }
}

  .announcement-bar {
    padding: 5px 0;
    position: fixed;
    width: 100%;
    z-index: 1002;
    background: var(--primary-color);
  }

  .announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    gap: 10px;
  }

  .announcement-item {
    font-size: 0.7rem;
    padding: 2px 5px;
    white-space: nowrap;
  }

  .nav-links.mobile-menu-active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }

  .hamburger {
    display: flex;
    z-index: 1003;
  }

  .announcement-separator {
    display: none;
  }

  .announcement-item {
    padding: 2px 0;
    font-size: 0.8rem;
    width: auto;
    text-align: center;
    flex: 1;
  }

  .announcement-item i {
    font-size: 0.9rem;
    margin-right: 5px;
  }

  .announcement-phone {
    font-size: 0.8rem;
    justify-content: center;
  }

  .announcement-phone span {
    font-size: 0.8rem;
  }

  body {
    padding-top: 60px;
  }

  nav {
    top: 32px;
    min-height: 64px; /* or 70px for more space */
    padding: 12px 16px;
    z-index: 1001;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Roboto Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--background-light);
  padding-top: 32px;
}

/* Navigation */
nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 0;
  position: fixed;
  width: 100%;
  top: 32px;
  z-index: 1001;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  height: auto;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 35px;
  width: auto;
}

.logo::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  margin-top: 8px;
  transform: scaleX(1);
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover::after {
  opacity: 1;
  transform: scaleX(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  padding: 1rem;
  white-space: nowrap;
  position: relative;
}

.nav-links a i {
  display: none;
}

.nav-links .dropdown {
  position: relative;
  padding: 1rem;
}

/* Mobile styles */
@media (max-width: 768px) {
  nav {
    top: 32px;
    height: 70px;
    position: fixed;
    z-index: 1001;
  }

  .logo img {
    height: 30px; /* Increased from 35px */
    width: auto;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - 70px);
    padding: 0;
    background: #fff;
    box-shadow: -2px 0 20px rgba(0,0,0,0.15);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.mobile-menu-active {
    right: 0;
  }

  .nav-links a {
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav-links a i {
    display: inline-block;
    margin-right: 10px;
  }

  .nav-links .dropdown {
    width: 100%;
    padding: 0;
  }
}

.nav-links .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 4px;
  z-index: 1000;
}

.nav-links .dropdown:hover .dropdown-content {
  display: block;
}

.mobile-menu-header {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 400px;
    padding: 80px 40px;
    flex-direction: column;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
  }

  .mobile-menu-header {
    display: block;
  }

  .nav-links.mobile-menu-active {
    right: 0;
  }
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1000;
}

.dropdown-content a {
  color: var(--text-color);
  padding: 0.75rem 1rem;
  display: block;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: #f8fafc;
  color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
  display: block;
}


/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), 
              url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&amp;fit=crop&amp;q=80') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--light-text);
  padding: 80px 1rem;
  position: relative;
  margin-top: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--background-light), transparent);
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: var(--accent-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #ffed4a;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

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

/* Sections */
section {
  padding: 6rem 1rem;
}

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

section h2 {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 800;
}



/* Services */
/* Service styling moved to index.css */


/* Features */
.why-us {
  background: var(--accent-color);
  position: relative;
}

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

.feature {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  background: var(--accent-color);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
}

/* Testimonials */
.testimonials {
  background: white;
}

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

blockquote {
  background: var(--background-light);
  padding: 2.5rem;
  border-radius: 16px;
  position: relative;
}

blockquote i {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.2;
}

cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
}

/* Contact */
.contact {
  background: var(--background-light);
}

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

.contact-info {
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-info p {
  margin: 1rem 0;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.floating-cta .cta-button {
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.floating-cta .cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.section-cta {
  text-align: center;
  padding: 2rem 0;
  background: var(--accent-color);
  border-radius: 8px;
  margin: 3rem 0;
}

.section-cta p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

/* Footer */
.map-section {
  padding: 0;
  background: #f8f9fa;
}

.corporate-footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

.footer-main {
  padding: 4rem 2rem;
  background: linear-gradient(to right, #1a1a1a, #2a2a2a);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-company {
  max-width: 300px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
}

.company-description {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: #ffffff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--accent-color);
}

.footer-services h3,
.footer-company-info h3,
.footer-contact h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-services ul,
.footer-company-info ul {
  list-style: none;
  padding: 0;
}

.footer-services li,
.footer-company-info li {
  margin-bottom: 0.8rem;
}

.footer-services a,
.footer-company-info a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-services a:hover,
.footer-company-info a:hover {
  color: var(--accent-color);
}

.footer-contact address {
  font-style: normal;
  color: #a0a0a0;
  margin-bottom: 1.5rem;
}

.footer-contact address p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.footer-contact address a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact address a:hover {
  color: var(--accent-color);
}

.footer-quote-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--accent-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.footer-secondary {
  padding: 1.5rem 2rem;
  background: #222222;
}

.footer-certifications {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a0a0a0;
  font-size: 0.9rem;
}

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

.footer-bottom {
  background: #151515;
  padding: 1.5rem 2rem;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #707070;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #707070;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent-color);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-company {
    max-width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

.stats {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 5rem 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #fff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

/* Services Page */
.services-header {
  background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(30, 64, 175, 0.95)),
              url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&amp;fit=crop&amp;q=80') no-repeat center center/cover;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-text);
  margin-top: 80px;
  position: relative;
  padding: 2rem 1rem;
}

.hero-achievements {
  display: flex;
  justify-content: space-around; 
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.achievement-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.services-tabs {
  padding: 2rem 1rem;
  background: var(--background-light);
}

.tabs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  position: sticky;
  top: 80px;
  background: var(--background-light);
  padding: 1rem 0;
  z-index: 99;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tab-button {
  background: transparent;
  border: none;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tab-button i {
  font-size: 1.2rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-button:hover {
  color: var(--text-color);
}

.tab-button:hover i {
  transform: translateY(-2px);
}

.tab-button.active {
  color: var(--primary-color);
  font-weight: 600;
}

.tab-button.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.tab-button.active i {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.tab-content {
  display: none;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content.active {
  display: block;
  opacity: 1;
  animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .service-images {
    display: none;
  }
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-intro {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
  line-height: 1.8;
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

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


/* Service features moved to index.css */

@media (max-width: 968px) {
  .tabs-container {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0;
  }

  .tabs {
    position: sticky;
    top: 80px;
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 0;
    width: 100%;
    background: white;
    z-index: 99;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .tab-button i {
    display: none;
  }

  .tab-button {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .tab-button:last-child {
    border-right: none;
  }
}

.services-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-detail {
  padding: 5rem 1rem;
}

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

.service-detail-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.service-detail-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.alt-bg {
  background: var(--accent-color);
}

.construction-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.construction-type {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.construction-type h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.construction-type ul {
  list-style-type: none;
}

.construction-type ul li {
  margin: 1rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.construction-type ul li:before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

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

.specialty-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.specialty-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.specialty-card ul {
  list-style-type: none;
  margin-top: 1rem;
}

.specialty-card ul li {
  margin: 0.8rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.specialty-card ul li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Trust Signals */
.trust-signals {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.trust-badge i {
  color: var(--primary-color);
}

/* Special Offers */
.special-offers {
  padding: 5rem 1rem;
  background: var(--accent-color);
}

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

.offer-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
}

.offer-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.offer-card h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.offer-card p {
  color: #64748b;
}

/* Services Contact Section */
.services-contact {
  padding: 5rem 1rem;
  background: #f8fafc;
}

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

.contact-info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid var(--attention-color);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: var(--attention-color);
  opacity: 0.1;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card:hover::before {
  transform: scale(5);
}

.contact-info-card i {
  font-size: 3rem;
  color: var(--attention-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-link {
  display: inline-block;
  color: var(--attention-color);
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.contact-link:hover {
  color: var(--attention-color);
  background-color: rgba(255, 62, 108, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 62, 108, 0.15);
}

.contact-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.contact-form-card h3 {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  text-align: center;
}

.quick-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-contact-form input,
.quick-contact-form select,
.quick-contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.quick-contact-form input:focus,
.quick-contact-form select:focus,
.quick-contact-form textarea:focus {
  outline: none;
  border-color: var(--primarycolor);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.quick-contact-form button {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .trust-signals {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

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

/* Service Details Section */
.service-details {
  padding: 60px 0;
  background: #f8fafc;
}

.service-details .service-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #64748b;
  font-size: 1.1rem;
}

.service-details-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.service-category {
  margin-bottom: 3rem;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-category h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
}

.service-category h3 i {
  font-size: 1.25rem;
}

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

.service-item {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-header {
  margin-bottom: 1rem;
}

.service-header h4 {
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.progress-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--progress);
  background: var(--primary-color);
  border-radius: 3px;
}

.progress-bar span {
  position: absolute;
  right: 0;
  top: -1.5rem;
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
}

.service-item p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .service-items {
    grid-template-columns: 1fr;
  }

  .service-category {
    padding: 1.5rem;
  }
}

/* Mobile Navigation */
@media (max-width: 768px) {
  nav {
    top: 32px;
    height: 70px;
    position: fixed;
    z-index: 1001;
  }

  

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - 70px);
    padding: 0;
    background: #fff;
    box-shadow: -2px 0 20px rgba(0,0,0,0.15);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.mobile-menu-active {
    right: 0;
    z-index: 1000;
  }

  .mobile-menu-header {
    padding: 1.5rem;
    background: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
  }

  .mobile-menu-header {
    padding: 1.5rem 4rem 1.5rem 1.5rem;
  }

  .mobile-menu-header .close-menu {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.3s ease;
    z-index: 1001;
  }

  .mobile-menu-header .close-menu:hover {
    opacity: 0.8;
  }

  .mobile-menu-content {
    padding: 1rem;
    overflow-y: auto;
    height: calc(100vh - 80px);
  }

  .nav-links a {
    margin: 0.5rem 0;
    font-size: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    color: var(--text-color);
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-links a i {
    margin-right: 12px;
    font-size: 1.2rem;
    color: var(--primary-color);
    opacity: 0.8;
  }

  .nav-links a:hover {
    background: rgba(27, 58, 75, 0.05);
  }

  .nav-links .dropdown-trigger {
    padding: 1rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
  }

  .nav-links .dropdown-content {
    position: static;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 2.5rem;
    background: transparent;
  }

  .nav-links .dropdown-content a {
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    font-size: 0.95rem;
  }

  .mobile-menu-footer {
    padding: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
  }

  .hero {
    min-height: 85vh;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
    padding: 0;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0;
    margin-bottom: 2rem;
    line-height: 1.5;
  }

  section {
    padding: 3rem 1rem;
  }

  .section-content {
    padding: 0 0.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
  }

  .service-grid {
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .service-card {
    padding: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .service-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .stats {
    padding: 3rem 1rem;
  }

  .stats-grid {
    gap: 2rem;
    padding: 0 0.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .features-grid {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .feature {
    padding: 1.5rem;
  }

  .feature h3 {
    font-size: 1.25rem;
  }

  .feature p {
    font-size: 0.95rem;
  }

  .testimonial-grid {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  blockquote {
    padding: 1.5rem;
  }

  blockquote p {
    font-size: 095rem;
  }

  .contact-grid {
    gap: 2rem;
    padding: 0 0.5rem;
  }

  .contact-info h3 {
    font-size: 1.25rem;
  }

  .contact-info p {
    font-size: 0.95rem;
  }

  .footer-content {
    gap: 2rem;
    padding: 0 1rem;
  }

  .services-header h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .services-header p {
    font-size: 1rem;
    max-width: 300px;
    margin: 1rem auto;
  }

  .achievement-grid {
    display: none;
  }
}
.bottom-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.bottom-cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.bottom-cta p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

.bottom-cta .cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .bottom-cta {
    padding: 4rem 1rem;
  }

  .bottom-cta h2 {
    font-size: 2rem;
  }

  .bottom-cta .cta-buttons {
    flex-direction: column;
    padding: 0 2rem;
  }
}

address i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.info-item a,
address a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover,
address a:hover {
  color: var(--primary-color);
}

.contact-info p a {
  text-decoration: none;
  color: var(--primary-color);
}


.contact-info p a:hover {
  text-decoration: underline;
}

a[href^="tel:"] {
  color: var(--primary-color);
  text-decoration: none;
}

a[href^="mailto:"] {
  color: var(--primary-color);
  text-decoration: none;
}

a[href^="tel:"]:hover {
  text-decoration: underline;
}

a[href^="mailto:"]:hover {
  text-decoration: underline;
}

/* Lead Capture Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(27, 58, 75, 0.95);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { 
    opacity: 0;
    transform: translateY(-20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

#exitIntentPopup .popup-box {
  max-width: 400px;
  animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

.popup-box {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  text-align: center;
  position: relative;
  animation: slideIn 0.4s ease-out;
  border: 1px solid rgba(255,255,255,0.1);
}

.popup-step {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease-out;
}

.popup-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.popup-step p {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.popup-step button {
  margin: 8px;
  padding: 14px 28px;
  cursor: pointer;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: calc(100% - 16px);
  position: relative;
  overflow: hidden;
}

.popup-step button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
  background: #45a049;
}

.popup-step button:active {
  transform: translateY(1px);
}

.popup-step input {
  width: 100%;
  padding: 16px;
  margin: 12px 0;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.popup-step input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
  background: white;
}

.popup-step input::placeholder {
  color: #94a3b8;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #94a3b8;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8fafc;
}

.close-popup:hover {
  color: var(--primary-color);
  background: #e2e8f0;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .popup-overlay {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .popup-box {
    padding: 30px 20px;
    margin: 20px;
  }

  .popup-step p {
    font-size: 1.1rem;
  }

  .popup-step button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}
/* FAQ Section */
.faq-section {
  padding: 5rem 1rem;
  background: #f8fafc;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-item h3 {
  padding: 1.5rem;
  margin: 0;
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  padding-right: 3rem;
}

.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active h3::after {
  content: '-';
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}