/* Base Styles */
:root {
  /* Colors */
  --primary: #026CC2;
  --primary-dark: #1d4ed8;
  --secondary: #333333;
  --dark: #1e293b;
  --light: #f8fafc;
  --light-alt: #f1f5f9;
  --accent: #FF0000;
  --success: #10b981;
  --gray: #64748b;
  --light-gray: #e2e8f0;
  
  /* Typography */
  --font-main: 'Poppins', sans-serif;
  --font-secondary: 'Nunito Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

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(--gray);
}

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

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

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  display: inline-block;
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background-color: rgba(244, 63, 94, 0.1);
  border-radius: 50px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: capitalize;
  transition: var(--transition);
  cursor: pointer;
  gap: 0.5rem;
  border: 2px solid transparent;
}

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

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

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: #e69009;
  color: white;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

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

.header-top-bar {
  background-color: var(--dark);
  color: white;
  padding: var(--space-xs) 0;
  font-size: 0.875rem;
}

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

.header-contact {
  display: flex;
  gap: var(--space-lg);
}

.header-contact a {
  color: white;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.header-contact i {
  color: var(--accent);
}

.header-social {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--accent);
  color: white;
}

.btn-register {
  background-color: var(--accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-weight: 600;
}

.btn-register:hover {
  background-color: #e69009;
}

.main-nav {
  padding: var(--space-sm) 0;
}

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

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


.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-menu ul {
  display: flex;
  gap: var(--space-md);
  text-decoration: none;
  list-style: none;
  list-style-type: none; /* Ensures no bullets */
  padding-left: 0;
  margin-left: 0;

}


.nav-menu a {
  font-weight: 600;
  color: var(--dark);
  position: relative;
  padding: var(--space-xs) 0;
}

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

.nav-menu a:hover:after,
.nav-menu a.active:after {
  width: 100%;
  text-decoration: none;
}

.nav-cta .btn-login {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background-color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

.nav-cta .btn-login:hover {
  background-color: var(--light-alt);
}


.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: var(--space-xl);
  background-color: var(--light-alt);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.hero-subtitle i {
  font-size: 1.25rem;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.hero-text {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  color: var(--gray);
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

/* About Section */
.about-section {
  background-color: white;
}

.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  position: relative;
}

.image-stack {
  position: relative;
}

.image-stack img {
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.image-stack .stacked-image {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 60%;
  border: 5px solid white;
  z-index: 1;
}

.experience-badge {
  position: absolute;
  bottom: 40px;
  left: -25px;
  background-color: var(--primary);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.experience-badge span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge small {
  font-size: 0.75rem;
  text-transform: uppercase;
  text-align: center;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: var(--space-md);
}

.about-text {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.feature-card {
  background-color: var(--light);
  padding: var(--space-md);
  border-radius: 8px;
  transition: var(--transition);
}

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

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(244, 63, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--secondary);
  font-size: 1.25rem;
}

.feature-card h4 {
  margin-bottom: var(--space-xs);
}

.feature-card p {
  font-size: 0.9375rem;
}

.quote {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-xl);
  font-style: italic;
  color: var(--gray);
  border-left: 3px solid var(--secondary);
}

.quote cite {
  display: block;
  margin-top: var(--space-xs);
  font-style: normal;
  font-weight: 600;
  color: var(--dark);
}

/* Services Section */
.services-section {
  background-color: var(--light-alt);
}

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

.service-card {
  background-color: white;
  padding: var(--space-xl) var(--space-lg);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card.highlighted {
  border: 2px solid var(--accent);
}

.card-icon {
  margin-bottom: var(--space-md);
}

.card-icon img {
  width: 60px;
  height: 60px;
}

.service-card h3 {
  margin-bottom: var(--space-sm);
}

.service-card p {
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
}

.card-link i {
  transition: var(--transition);
}

.card-link:hover i {
  transform: translateX(3px);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--accent);
  color: white;
  padding: 0.25rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  transform-origin: center;
}

/* Properties Section */
.properties-section {
  background-color: white;
}

.section-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

/* This is the transistor section controls */
.section-controls .filter-btn {
  background-color: transparent;
  color: var(--dark);
  border: 2px solid var(--light-gray);
  padding: 0.5rem 1rem;
  font-weight: 600;
  transition: var(--transition);
}
.section-controls .filter-btn:hover {
  background-color: var(--light);
  color: var(--primary);
  border-color: var(--primary);
}
/* End of transistor section controls */

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background-color: var(--light);
  border: none;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active {
  background-color: var(--primary);
  color: white;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.property-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.card-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.5s ease;
}

.property-card:hover .card-image img {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

.property-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: var(--space-xs);
  z-index: 1;
}

.action-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

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

.card-content {
  padding: var(--space-md);
}

.card-content h3 {
  margin-bottom: var(--space-xs);
}

.location {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
}

.property-features span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.property-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
}

.price {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.25rem;
}

.btn-view {
  padding: 0.5rem 1rem;
  background-color: var(--light);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}

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

.section-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Training Section */
.training-section {
  background-color: var(--light-alt);
}

.events-timeline {
  display: grid;
  gap: var(--space-md);
}

.event-card {
  background-color: white;
  border-radius: 12px;
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: center;
  transition: var(--transition);
}

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

.event-date {
  width: 70px;
  height: 70px;
  background-color: var(--primary);
  color: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-content h3 {
  margin-bottom: var(--space-xs);
}

.event-meta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
  color: var(--gray);
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.event-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-md);
}

.seats {
  font-size: 0.875rem;
  color: var(--secondary);
  font-weight: 600;
}

/* Contact Section */
.contact-section {
  background-color: white;
}

.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-content {
  max-width: 500px;
}

.contact-text {
  margin-bottom: var(--space-xl);
}

.contact-info {
  display: grid;
  gap: var(--space-lg);
}

.info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.info-item i {
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 4px;
}

.info-item h4 {
  margin-bottom: var(--space-xs);
  font-size: 1.125rem;
}

.info-item a {
  transition: var(--transition);
}

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

.contact-form {
  background-color: var(--light);
  padding: var(--space-xl);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-family: var(--font-secondary);
  transition: var(--transition);
}

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

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

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: var(--space-xl) 0;
}

.cta-content h2 {
  color: white;
  margin-bottom: var(--space-sm);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}



/* Footer */
.main-footer {
  background-color: var(--dark);
  color: white;
}

.footer-top {
  padding: var(--space-xl) 0;
}

.footer-top .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
}

.footer-col h4 {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
  position: relative;
  padding-bottom: var(--space-sm);
}

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

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  margin: var(--space-md) 0;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary);
  color: white;
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

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

.footer-links a:hover {
  color: white;
  padding-left: var(--space-xs);
}

.newsletter-form {
  display: flex;
  margin-top: var(--space-md);
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 6px 0 0 6px;
  font-family: var(--font-secondary);
}

.newsletter-form button {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0 1rem;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: var(--space-md) 0;
  text-align: center;
}

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

.footer-legal {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: white;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--light-gray);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: var(--space-md);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin-bottom: var(--space-xl);
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .about-section .container,
  .contact-section .container {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    margin-bottom: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .header-top-bar .container {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .header-contact {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: var(--space-xl);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    margin-bottom: var(--space-xl);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .hero {
    padding-top: 150px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .properties-grid {
    grid-template-columns: 1fr;
  }
}









/* Property Inspection Page Styles */

/* Property Inspection Page Styles */
.inspection-hero {
  background-image: url('assets/images/gtextsuits.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.property-inspection-page {
  padding-top: 100px;
}

.inspection-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../assets/images/property-1.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.inspection-hero h1 {
  color: white;
  margin-bottom: 25px;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.inspection-hero .hero-text {
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.3rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.inspection-hero .hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.inspection-hero .hero-cta .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.inspection-hero .hero-cta .btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.inspection-hero .hero-cta .btn-outline:hover {
  background-color: white;
  color: var(--dark);
  transform: translateY(-2px);
}

/* Inspection Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(37, 99, 235, 0.1);
  line-height: 1;
  margin-bottom: 15px;
}

.step-content h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

/* Inspection Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
}

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

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.service-features li:before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Sample Report */
.report-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

.report-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.report-features {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.report-features li {
  padding: 10px 0;
  position: relative;
  padding-left: 30px;
}

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

/* Schedule Inspection */
.inspection-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.inspection-form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group.full-width {
  flex: 0 0 100%;
}

.form-submit {
  margin-top: 30px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 15px;
}

.inspection-benefits {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefits-list {
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
}

.benefits-list li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.contact-info {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 10px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 25px;
}

.rating {
  color: var(--accent);
  margin-bottom: 15px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--dark);
}

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

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  margin-bottom: 5px;
}

.client-info span {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .report-preview,
  .inspection-form-container {
    grid-template-columns: 1fr;
  }
  
  .report-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .inspection-hero {
    padding: 80px 0;
  }
  
  .inspection-hero h1 {
    font-size: 2.2rem;
  }
  
  .inspection-hero .hero-text {
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  .inspection-hero .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .inspection-hero .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Utility Classes */
.section-padding {
  padding: 100px 0;
}

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

