:root {
  --primary-color: #1a5490;
  --primary-dark: #0f3a5f;
  --primary-light: #2667a8;
  --secondary-color: #d4802a;
  --secondary-dark: #b46a1f;
  --accent-color: #e8912d;

  --text-dark: #1a2332;
  --text-medium: #4a5568;
  --text-light: #6b7280;

  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-gray: #f1f5f9;
  --bg-dark: #1e293b;

  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  --transition: all 0.3s ease;
  --max-width: 1200px;
  --spacing: 1rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
}

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

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

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--bg-white);
  border-color: var(--bg-white);
}

.btn-secondary:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
}

.btn-block {
  display: block;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  border-radius: 2px;
  animation: expandWidth 0.8s ease-out 0.3s both;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-medium);
  font-weight: 500;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.4s forwards;
  line-height: 1.8;
}

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

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

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.logo-image {
  height: 100px;
  width: auto;
  transition: var(--transition);
}

.logo-image:hover {
  opacity: 0.85;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-medium);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger {
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.nav-toggle.active .hamburger {
  background-color: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link-cta {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
}

.nav-link-cta::after {
  display: none;
}

.nav-link-cta:hover {
  background-color: var(--secondary-dark);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('./public/images/home.webp') center center / cover no-repeat;
  color: var(--bg-white);
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 84, 144, 0.75) 0%, rgba(15, 58, 95, 0.85) 100%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--bg-white);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.about {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-weight: 600;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.about-image {
  display: block;
  width: 100%;
}

.about-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.stat-card {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.95;
}

.awards {
  padding: 4rem 0;
  background-color: var(--bg-light);
  overflow: hidden;
}

.awards-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  animation: fadeInUp 0.8s ease-out;
}

.awards-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.awards-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.awards-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.award-item {
  flex-shrink: 0;
  width: 160px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-white);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.award-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.award-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.feature {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.feature-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-text-content {
  text-align: left;
}

.feature-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.8s ease-out;
}

.feature-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.feature-image {
  position: relative;
}

.feature-image img {
  width: 85%;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.feature-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

.local-expertise {
  padding: 4rem 0;
  background-color: var(--primary-dark);
  color: var(--bg-white);
}

.local-expertise-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.local-expertise-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.services {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 1rem;
  padding: 2.5rem;
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 1rem;
  color: var(--bg-white);
}

.service-title {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 700;
  transition: var(--transition);
}

.service-card:hover .service-title {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.service-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.why-us {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.why-us .section-title {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.why-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.why-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-medium);
}

.financing {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--bg-white);
}

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

.financing-header .section-title {
  color: var(--bg-white);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.financing-tagline {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-color);
}
.financing-options {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.financing-options > .financing-card {
  flex: 1 1 0;
}

/* Mobile only */
@media (max-width: 768px) {
  .financing-options {
    flex-direction: column;
    align-items: stretch;
  }

  .financing-card {
    flex: 1;
    width: 100%;
  }

  .feature-image {
    text-align: center;
  }

  .feature-image img {
    margin-left: auto;
    margin-right: auto;
  }
}



.financing-card {
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.financing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.2);
}

.financing-card.featured {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--bg-white);
  border: 3px solid var(--bg-white);
}


.financing-duration {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.financing-type {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.financing-label {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.financing-detail {
  font-size: 1rem;
  opacity: 0.9;
}

.financing-note {
  text-align: center;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-description {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--primary-color);
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 1.125rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-value:hover {
  color: var(--primary-color);
}

.contact-form-wrapper {
  background-color: var(--bg-light);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  font-size: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  font-family: inherit;
  transition: var(--transition);
  background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 84, 144, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  padding: 0;
  border-radius: 0.5rem;
  transition: var(--transition);
}

.form-status:empty {
  display: none;
}

.form-status-success {
  padding: 1rem;
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status-error {
  padding: 1rem;
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.thank-you-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-icon {
  color: #059669;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.thank-you-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

.thank-you-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.thank-you-content .btn {
  animation: fadeInUp 0.8s ease-out 0.45s both;
}

.footer {
  background-color: var(--bg-dark);
  color: var(--bg-white);
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.footer-logo-image {
  max-width: 200px;
  height: auto;
}

.footer-logo .logo-text {
  color: var(--bg-white);
  font-size: 1.5rem;
}

.footer-logo .logo-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
}

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

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-list a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

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

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

.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.roofing-hero {
  background: url('./public/images/roofing2.jpg') center center / cover no-repeat;
}

.roofing-hero::before {
  background: linear-gradient(135deg, rgba(15, 58, 95, 0.88) 0%, rgba(26, 84, 144, 0.92) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.siding-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./public/images/black-wooden-texture-background-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%),
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.page-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--bg-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-image-section {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.service-image-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: auto;
  display: block;
}

.service-image-placeholder {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-showcase-image {
  width: 100%;
  height: auto;
  display: block;
}

.why-choose {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.why-choose-content {
  max-width: 900px;
  margin: 2rem auto 0;
}

.why-choose-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.cta-box {
  background: linear-gradient(135deg, #d4802a, #e8912d);
  padding: 3rem;
  border-radius: 1rem;
  margin-top: 3rem;
  text-align: center;
  
}

.cta-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.cta-box .btn {
  margin-top: 1rem;
  white-space: normal;
  line-height: 1.4;
  padding: 1rem 1.5rem;
  background-color: #fff;
  color: #d4802a;
}

.cta-box .btn:hover {
  background-color: #f0f0f0;
  color: #b56d1e;
}

.services-overview {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

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

.services-intro-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-medium);
}

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

.service-detail-card {
  background-color: var(--bg-white);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-detail-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 1rem;
  color: var(--bg-white);
  margin-bottom: 2rem;
}

.service-detail-title {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.service-detail-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.btn-secondary-service {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-block;
}

.btn-secondary-service:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.promise-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.promise-text {
  max-width: 900px;
  margin: 2rem auto 0;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-medium);
  text-align: center;
}

.review-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.reviews-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

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

.review-card {
  max-width: 800px;
  margin: 2rem auto 0;
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 6rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: right;
}

.final-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  text-align: center;
  color: var(--bg-white);
}

.final-cta-title {
  font-size: 3rem;
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.final-cta-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

@media (max-width: 968px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-xl);
    padding: 6rem 2rem 2rem;
    transition: right 0.4s ease;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link {
    display: block;
    padding: 1rem 0;
    width: 100%;
  }

  .nav-link-cta {
    margin-top: 1rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .feature-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-text-content {
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .financing-header .section-title {
    font-size: 2rem;
  }

  .financing-tagline {
    font-size: 1.25rem;
  }

  .services-grid,
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  .hero {
    padding: 8rem 0 3rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    width: 100%;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .award-item {
    width: 150px;
    height: 120px;
    padding: 1rem;
  }

  .awards-title {
    font-size: 1.5rem;
  }

  .about,
  .feature,
  .services,
  .why-us,
  .financing,
  .contact {
    padding: 3rem 0;
  }

  .services-grid,
  .why-us-grid {
    grid-template-columns: 1fr;
  }

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

  .financing-card.featured,
  .financing-card.single-option {
    transform: scale(1);
    padding: 3rem 2rem;
  }

  .cta-box {
    padding: 2rem 1.5rem;
  }

  .cta-text {
    font-size: 1.25rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-hero-title {
    font-size: 2.5rem;
  }

  .page-hero-description {
    font-size: 1.125rem;
  }

  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-title {
    font-size: 2rem;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 3rem;
  }
}
