:root {
  /* Primary Colors */
  --color-primary-blue: #1D72C9;
  --color-primary-green: #98BC24;
  
  /* Accent Colors */
  --color-secondary-blue: #337AB7;
  --color-highlight-cream: #FFEEAA;
  
  /* Interactive */
  --color-link-blue: #1D72C9;
  --color-error-red: #E71F1F;
  
  /* Neutral Scale */
  --color-charcoal: #2A2929;
  --color-dark-gray: #333333;
  --color-medium-gray: #5D5F62;
  --color-gray: #898989;
  --color-light-gray: #999EA3;
  --color-concrete: #515151;
  
  /* Surface & Borders */
  --color-white: #FFFFFF;
  --color-black: #000000;
  
  /* Typography */
  --font-primary: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-secondary: "PT Serif", Georgia, "Times New Roman", serif;
  
  /* Spacing System */
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-28: 28px;
  --space-32: 32px;
  --space-36: 36px;
  --space-52: 52px;
  --space-56: 56px;
  --space-60: 60px;
}

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

body {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gray);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-32);
}

.section {
  padding: var(--space-60) 0;
}

/* Topbar */
.topbar {
  background-color: #F8F9FA;
  border-bottom: 1px solid #EAEAEA;
  padding: 8px 0;
  font-size: 13px;
  color: var(--color-primary-blue);
}

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

.topbar-contact {
  display: flex;
  gap: 20px;
  align-items: center;
}

.topbar-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.topbar-socials a {
  color: var(--color-primary-blue);
  text-decoration: none;
}

/* Navbar */
.navbar {
  background: var(--color-white);
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #EAEAEA;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-charcoal);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--color-charcoal);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary-blue);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge-black {
  background-color: var(--color-black);
  color: var(--color-white);
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  margin-bottom: 0;
}

.hero-badge-blue {
  background-color: var(--color-primary-blue);
  color: var(--color-white);
  display: inline-block;
  padding: 15px 25px;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Experience Section */
.experience-section {
  padding-top: var(--space-60);
  position: relative;
  overflow: hidden;
}

.experience-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.experience-text {
  flex: 1;
  max-width: 500px;
  z-index: 2;
}

.exp-years {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 20px;
}

.exp-years .number {
  font-size: 100px;
  color: var(--color-error-red);
  line-height: 1;
  font-weight: 300;
}

.exp-years .text {
  font-size: 24px;
  color: var(--color-gray);
  line-height: 1.2;
}

.exp-years .text strong {
  display: block;
  font-size: 36px;
  color: var(--color-charcoal);
  font-weight: 700;
}

.experience-desc {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.8;
}

.experience-image {
  flex: 1;
  position: relative;
  min-height: 400px;
}

.experience-image img {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  max-width: 120%;
  z-index: 1;
}

/* Feature Bar */
.feature-bar {
  background-color: var(--color-primary-blue);
  height: 60px;
  position: relative;
  margin-top: 40px;
  z-index: 10;
}

.feature-badges {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 150px;
}

.circle-badge {
  width: 60px;
  height: 60px;
  background-color: var(--color-error-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-white);
  color: var(--color-white);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.circle-badge svg {
  width: 24px;
  height: 24px;
}

/* Services Section */
.services-section {
  padding: var(--space-60) 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  color: var(--color-charcoal);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-primary-blue);
}

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

.service-item {
  display: flex;
  flex-direction: column;
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 4px;
}

.service-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-charcoal);
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.4;
}

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

.service-list li {
  font-size: 13px;
  color: var(--color-gray);
  margin-bottom: 12px;
  position: relative;
  padding-left: 12px;
  line-height: 1.5;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gray);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-badges {
    gap: 50px;
  }
  .experience-content {
    flex-direction: column;
  }
  .experience-image {
    min-height: 300px;
    width: 100%;
  }
  .experience-image img {
    position: relative;
    right: 0;
    max-width: 100%;
    transform: none;
  }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar-links { display: none; }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-badge-blue {
    font-size: 24px;
  }
  .exp-years .number {
    font-size: 70px;
  }
  .exp-years .text strong {
    font-size: 28px;
  }
  .feature-badges {
    gap: 20px;
  }
}

/* Quote Section */
.quote-section {
  width: 100%;
}

.quote-split {
  display: flex;
  min-height: 700px;
}

.quote-image {
  flex: 1;
}

.quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-form-container {
  flex: 1;
  background-color: #2D3035; /* Dark background matching the image */
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-title {
  color: var(--color-white);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.quote-form {
  max-width: 500px;
}

.form-group-quote {
  margin-bottom: 12px;
}

.quote-input {
  width: 100%;
  background-color: transparent;
  border: 1px solid #4A4D54;
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 14px;
  transition: border-color 0.2s;
}

.quote-input::placeholder {
  color: #8C8E93;
}

.quote-input:focus, .quote-select:focus {
  outline: none;
  border-color: var(--color-primary-blue);
}

.quote-or {
  text-align: center;
  color: #55575E;
  font-size: 12px;
  font-style: italic;
  margin-bottom: 12px;
}

.phone-group {
  display: flex;
  gap: 10px;
}

.quote-select {
  background-color: transparent;
  border: 1px solid #4A4D54;
  border-radius: 4px;
  padding: 12px 16px;
  color: #8C8E93;
  font-family: var(--font-primary);
  font-size: 14px;
  width: 140px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%238C8E93%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 12px top 50%;
  background-size: 10px auto;
}

.quote-select option {
  background-color: #2D3035;
  color: var(--color-white);
}

.quote-label {
  display: block;
  color: #8C8E93;
  font-size: 13px;
  margin-bottom: 8px;
  margin-top: 20px;
}

.date-input {
  color: #8C8E93;
}

.date-input::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}

.quote-textarea {
  min-height: 120px;
  resize: vertical;
  margin-top: 15px;
}

.quote-note {
  color: #55575E;
  font-size: 12px;
  font-style: italic;
  margin: 10px 0 20px 0;
}

.quote-btn {
  padding: 12px 24px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .quote-split {
    flex-direction: column;
  }
  .quote-image {
    min-height: 400px;
  }
  .quote-form-container {
    padding: 40px 20px;
  }
}

/* About Us Section */
.about-section {
  padding: var(--space-60) 0;
  background-color: var(--color-white);
}

.about-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-image {
  flex: 4;
}

.about-image img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.about-content {
  flex: 6;
  display: flex;
  gap: 40px;
}

.about-col {
  flex: 1;
}

.about-title {
  color: var(--color-primary-blue);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.about-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-primary-blue);
}

.about-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray);
  margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimonials-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials-container {
  position: relative;
  z-index: 10;
  text-align: center;
}

.testimonials-title {
  color: var(--color-white);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  text-align: left;
}

.testimonial-card .stars {
  color: var(--color-primary-green);
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  color: var(--color-primary-green);
  font-size: 14px;
  font-weight: 700;
}

/* CTA Banner */
.cta-banner {
  background-color: var(--color-primary-blue);
  overflow: hidden;
}

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

.cta-text {
  color: var(--color-white);
  font-size: 22px;
  font-weight: 500;
  flex: 1;
}

.cta-phone-section {
  flex: 1;
  text-align: center;
}

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.cta-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-blue);
}

.cta-icon svg {
  width: 24px;
  height: 24px;
}

.cta-phone span {
  color: var(--color-white);
  font-size: 32px;
  font-weight: 700;
}

.cta-subtext {
  color: var(--color-white);
  font-size: 14px;
  margin-top: 10px;
  opacity: 0.9;
}

.cta-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.cta-image img {
  height: 200px;
  object-fit: cover;
  clip-path: circle(40% at 50% 50%);
}

/* Footer */
.footer {
  background-color: #111111;
  color: #A0A0A0;
  padding-top: 60px;
}

.footer-container {
  display: flex;
  gap: 60px;
  padding-bottom: 40px;
}

.footer-col {
  flex: 1;
}

.footer-title {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-text {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  color: #A0A0A0;
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--color-primary-blue);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 13px;
  margin-bottom: 15px;
}

.footer-contact li svg {
  color: var(--color-primary-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  background-color: #000000;
  padding: 20px 0;
  font-size: 12px;
  color: #777777;
}

/* Responsive Overrides (Appended) */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }
  .about-content {
    flex-direction: column;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 30px;
  }
  .cta-image {
    display: none;
  }
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
}
