/* Smart Choice Inspections - Modern Remodeled Website Styles */

:root {
  --primary-dark: #0a1628;
  --primary-blue: #0d2847;
  --accent-blue: #1a4a7a;
  --highlight-blue: #2d8bba;
  --light-blue: #4fb3d9;
  --bright-blue: #6bc5e8;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --text-gray: #64748b;
  --text-dark: #1e293b;
  --border-color: #e2e8f0;
  --success-green: #10b981;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--white);
  background-color: var(--primary-dark);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Banner - Enhanced */
.top-banner {
  background: linear-gradient(135deg, var(--highlight-blue) 0%, var(--light-blue) 100%);
  padding: 12px 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.top-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.top-banner a {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.top-banner a:hover {
  transform: scale(1.05);
}

.phone-icon {
  width: 20px;
  height: 20px;
}

/* Header - Modern Sticky */
header {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  overflow: visible;
}

header:hover {
  background: rgba(10, 22, 40, 0.98);
}

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

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  transition: transform 0.3s ease;
  height: 50px;
  overflow: visible;
}

.logo:hover {
  transform: scale(1.05);
}

.logo svg {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 2px 4px rgba(79, 179, 217, 0.3));
}

.logo-img {
  height: 50px;
  width: auto;
  max-height: 50px;
  max-width: 200px;
  object-fit: contain;
  object-position: center;
  display: block;
  vertical-align: middle;
}

.logo-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.9;
}

nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
}

nav a {
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--light-blue), var(--bright-blue));
  transition: width 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--light-blue);
}

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

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Modern & Dynamic */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 30%, var(--accent-blue) 70%, var(--highlight-blue) 100%);
  padding: 100px 0 120px;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(79, 179, 217, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(45, 139, 186, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.hero-text .highlight {
  color: var(--bright-blue);
  text-decoration: none;
  background: linear-gradient(135deg, var(--light-blue), var(--bright-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-image > div {
  border-radius: 20px;
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  position: relative;
}

.hero-image > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 179, 217, 0.2), rgba(45, 139, 186, 0.1));
  pointer-events: none;
}

/* Buttons - Modern & Interactive */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background-color: var(--primary-dark);
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary {
  background: linear-gradient(135deg, var(--highlight-blue), var(--light-blue));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(45, 139, 186, 0.4);
  background: linear-gradient(135deg, var(--light-blue), var(--bright-blue));
}

/* Welcome Section */
.welcome-section {
  background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
  color: var(--primary-dark);
  padding: 100px 0;
  position: relative;
}

.welcome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.welcome-text h2 {
  font-size: 42px;
  margin-bottom: 24px;
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.2;
}

.welcome-text p {
  color: var(--text-gray);
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.8;
}

.badge-container {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.certification-badge {
  height: 80px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.certification-badge:hover {
  transform: scale(1.05);
}

.badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--highlight-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 11px;
  text-align: center;
  padding: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Testimonial - Enhanced Card */
.testimonial {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 80px;
  color: var(--light-blue);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.testimonial-author span {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 15px;
}

.stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
}

/* Reviews Container */
.reviews-container {
  background: var(--primary-dark);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-xl);
  min-height: 500px;
  width: 100%;
}

.reviews-container iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  overflow: auto;
  border-radius: 12px;
  background: transparent;
}

@media (max-width: 768px) {
  .reviews-container {
    min-height: 400px;
    padding: 15px;
  }
  
  .reviews-container iframe {
    min-height: 400px;
  }
}

/* REITs Section */
.reits-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
  padding: 100px 0;
  position: relative;
}

.reits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.reits-text h2 {
  font-size: 42px;
  margin-bottom: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.reits-text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  line-height: 1.9;
  font-size: 17px;
}

.reits-logo {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-2xl);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reits-logo:hover {
  transform: translateY(-5px);
}

.reits-logo-img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  display: block;
}

/* About Section */
.about-section {
  background: var(--white);
  color: var(--primary-dark);
  padding: 100px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--primary-dark);
  font-weight: 700;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-dark);
  font-weight: 600;
}

.about-text p {
  color: var(--text-gray);
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.8;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--highlight-blue) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 179, 217, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-section h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.8;
}

.contact-form {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background-color: rgba(26, 74, 122, 0.5);
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--light-blue);
  background-color: rgba(26, 74, 122, 0.7);
  box-shadow: 0 0 0 4px rgba(79, 179, 217, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

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

.checkbox-group p {
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  margin-bottom: 12px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.checkbox-group label:hover {
  background: rgba(255, 255, 255, 0.05);
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--highlight-blue);
  cursor: pointer;
}

.radio-group {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.radio-group p {
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.radio-group label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.radio-group label:hover {
  background: rgba(255, 255, 255, 0.05);
}

.radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--highlight-blue);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--highlight-blue), var(--light-blue));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(45, 139, 186, 0.4);
  background: linear-gradient(135deg, var(--light-blue), var(--bright-blue));
}

.submit-btn:active {
  transform: translateY(0);
}

.map-container {
  margin-top: 30px;
}

.map-container iframe,
.map-container > div {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  border: none;
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
  margin-bottom: 40px;
}

.footer-logo svg {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(79, 179, 217, 0.2));
}

.footer-logo-img {
  height: 60px;
  width: auto;
  max-height: 60px;
  max-width: 250px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  vertical-align: middle;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(26, 74, 122, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(79, 179, 217, 0.2);
}

.social-links a:hover {
  background: var(--accent-blue);
  border-color: var(--light-blue);
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: underline;
}

.footer-links a:hover {
  color: var(--light-blue);
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-top: 20px;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 40%, var(--accent-blue) 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(79, 179, 217, 0.1) 0%, transparent 70%);
}

.page-header h1 {
  font-size: 56px;
  margin-bottom: 24px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}

.page-header p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Services Page */
.services-intro {
  background-color: var(--white);
  color: var(--primary-dark);
  padding: 100px 0;
}

.services-intro-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.services-intro h2 {
  font-size: 42px;
  margin-bottom: 24px;
  font-weight: 700;
}

.services-intro p {
  color: var(--text-gray);
  line-height: 1.9;
  font-size: 17px;
}

.service-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
  transition: padding 0.3s ease;
}

.service-item:hover {
  padding-left: 10px;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item > div:first-child {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
  height: 180px;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item:hover > div:first-child {
  transform: scale(1.05);
}

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

.service-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary-dark);
  font-weight: 600;
}

.service-item p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.show-more {
  color: var(--highlight-blue);
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
  font-weight: 600;
  transition: color 0.3s ease;
}

.show-more:hover {
  color: var(--light-blue);
}

/* Other Services Grid */
.other-services {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
  padding: 100px 0;
}

.other-services h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 700;
}

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

.service-card {
  background: rgba(26, 74, 122, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  background: rgba(26, 74, 122, 0.8);
}

.service-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--accent-blue), var(--highlight-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.service-card-content {
  padding: 30px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* Pricing Page */
.pricing-section {
  background-color: var(--white);
  color: var(--primary-dark);
  padding: 100px 0;
}

.pricing-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.pricing-info h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--primary-dark);
  font-weight: 700;
}

.pricing-info h3 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--highlight-blue);
  font-weight: 600;
}

.pricing-info ul {
  list-style: none;
  padding-left: 0;
}

.pricing-info li {
  color: var(--text-gray);
  margin-bottom: 12px;
  font-size: 16px;
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.pricing-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
  font-size: 18px;
}

.pricing-images {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-images img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.pricing-images img:hover {
  transform: scale(1.02);
}

.certified-banner {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  padding: 50px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 80px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
}

.certified-banner h2 {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}

.certified-banner p {
  color: var(--highlight-blue);
  font-size: 20px;
  font-weight: 600;
}

/* Other Services Pricing */
.other-pricing {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
  padding: 100px 0;
}

.other-pricing h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 700;
}

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

.pricing-card {
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  border-left: 4px solid var(--light-blue);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
  border-left-color: var(--bright-blue);
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.pricing-card .price {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.pricing-card .price strong {
  color: var(--light-blue);
  font-size: 20px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  padding: 80px 0;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: rgba(26, 74, 122, 0.6);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
}

.cta-content h2 {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 700;
}

.cta-content img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* Reports Page */
.reports-section {
  background-color: var(--white);
  color: var(--primary-dark);
  padding: 100px 0;
}

.reports-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.reports-features h3 {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--primary-dark);
  font-weight: 700;
}

.feature-item {
  margin-bottom: 40px;
}

.feature-item h4 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--primary-dark);
  font-weight: 600;
}

.feature-item ul {
  list-style: none;
  padding-left: 0;
}

.feature-item li {
  color: var(--text-gray);
  margin-bottom: 12px;
  font-size: 16px;
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.feature-item li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--highlight-blue);
  font-weight: bold;
  font-size: 20px;
}

.sample-reports {
  text-align: center;
}

.sample-reports h3 {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--primary-dark);
  font-weight: 700;
}

.report-preview {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

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

.report-preview img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

/* PDF Viewers */
.pdf-viewer-container {
  margin-top: 30px;
}

.pdf-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 0;
}

.pdf-tab {
  padding: 15px 30px;
  background: var(--light-gray);
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-gray);
  transition: all 0.3s ease;
  font-family: inherit;
  position: relative;
  top: 2px;
}

.pdf-tab:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.pdf-tab.active {
  background: var(--white);
  color: var(--primary-dark);
  border-bottom-color: var(--highlight-blue);
}

.pdf-viewer-wrapper {
  background: var(--white);
  border-radius: 0 12px 12px 12px;
  padding: 25px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.pdf-viewer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.pdf-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--highlight-blue), var(--light-blue));
  color: var(--white);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.pdf-open-btn:hover {
  background: linear-gradient(135deg, var(--light-blue), var(--bright-blue));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.pdf-open-btn svg {
  transition: transform 0.3s ease;
}

.pdf-open-btn:hover svg {
  transform: scale(1.1);
}

.pdf-viewer {
  width: 100%;
  height: 900px;
  min-height: 900px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid var(--border-color);
}

.pdf-viewer iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Drone Page */
.drone-section {
  background-color: var(--white);
  color: var(--primary-dark);
  padding: 100px 0;
}

.drone-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.drone-text h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--primary-dark);
  font-weight: 700;
}

.drone-text p {
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 1.9;
  font-size: 17px;
}

.drone-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.drone-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.drone-images img:hover {
  transform: scale(1.05);
}

.no-cost-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
  padding: 100px 0;
}

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

.no-cost-content h2 {
  font-size: 42px;
  margin-bottom: 24px;
  font-weight: 700;
}

.no-cost-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.9;
}

.drone-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.drone-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-md);
}

.drone-gallery img:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-xl);
}

/* Mold Page */
.mold-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  padding: 80px 0;
}

.mold-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.mold-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--highlight-blue), var(--light-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  text-align: center;
  padding: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.mold-badge:hover {
  transform: scale(1.1) rotate(5deg);
}

.mold-section {
  background-color: var(--white);
  color: var(--primary-dark);
  padding: 100px 0;
}

.mold-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.mold-info h2 {
  font-size: 42px;
  margin-bottom: 24px;
  color: var(--primary-dark);
  font-weight: 700;
}

.mold-info p {
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 1.9;
  font-size: 17px;
}

.mold-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mold-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.mold-images img:hover {
  transform: scale(1.05);
}

.health-effects {
  background-color: var(--light-gray);
  padding: 100px 0;
}

.health-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.symptoms h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--primary-dark);
  font-weight: 700;
}

.symptoms ul {
  list-style: none;
  padding-left: 0;
}

.symptoms li {
  color: var(--text-gray);
  margin-bottom: 14px;
  font-size: 17px;
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.symptoms li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-size: 18px;
}

.symptoms-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.symptoms-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.dangerous-mold {
  background-color: var(--white);
  color: var(--primary-dark);
  padding: 100px 0;
}

.dangerous-mold h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 700;
}

.mold-types {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.mold-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.mold-type:nth-child(even) {
  direction: rtl;
}

.mold-type:nth-child(even) > * {
  direction: ltr;
}

.mold-type-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-dark);
  font-weight: 600;
}

.mold-type-info p {
  color: var(--text-gray);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
}

.mold-type-info ul {
  list-style: none;
  padding-left: 0;
}

.mold-type-info li {
  color: var(--text-gray);
  margin-bottom: 12px;
  font-size: 16px;
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.mold-type-info li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--highlight-blue);
  font-weight: bold;
  font-size: 20px;
}

.mold-type img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.mold-type img:hover {
  transform: scale(1.03);
}

/* Contact Page Specific */
.contact-page-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
  padding: 100px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .welcome-content,
  .reits-content,
  .about-content,
  .contact-content,
  .services-intro-content,
  .pricing-main,
  .reports-content,
  .drone-content,
  .mold-content,
  .health-content,
  .mold-type,
  .cta-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero {
    min-height: auto;
    padding: 80px 0;
  }

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

  .drone-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .mold-type:nth-child(even) {
    direction: ltr;
  }
}

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
  }

  nav a {
    font-size: 16px;
    padding: 12px 0;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text h3 {
    font-size: 14px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .page-header {
    padding: 80px 0 60px;
  }

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

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

  .service-item > div:first-child {
    width: 100%;
    max-width: 100%;
    height: 200px;
  }

  .pdf-viewer {
    height: 600px;
    min-height: 600px;
  }

  .pdf-tabs {
    flex-direction: column;
  }

  .pdf-tab {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    border-right: none;
    top: 0;
  }

  .pdf-tab.active {
    border-bottom-color: var(--border-color);
    border-left: 3px solid var(--highlight-blue);
  }

  .pdf-viewer-wrapper {
    border-radius: 0 0 12px 12px;
  }

  .pdf-viewer-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .pdf-open-btn {
    width: 100%;
    justify-content: center;
  }

  .drone-gallery {
    grid-template-columns: 1fr;
  }

  .mold-badges {
    gap: 20px;
  }

  .mold-badge {
    width: 100px;
    height: 100px;
    font-size: 10px;
  }

  .container {
    padding: 0 20px;
  }

  .welcome-section,
  .about-section,
  .services-intro,
  .pricing-section,
  .reports-section,
  .drone-section,
  .mold-section,
  .health-effects,
  .dangerous-mold {
    padding: 60px 0;
  }

  .reits-section,
  .other-services,
  .other-pricing,
  .no-cost-section,
  .contact-section,
  .contact-page-section {
    padding: 60px 0;
  }

  h2 {
    font-size: 32px !important;
  }

  h3 {
    font-size: 24px !important;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

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

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scroll */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Hide Google My Maps title bar */
iframe[src*="google.com/maps/d/embed"] {
  position: relative;
}

/* Note: The title bar is inside an iframe from Google, so we can't directly hide it with CSS.
   The noprof=1 parameter helps, but to fully remove the title, you'll need to:
   1. Go to Google My Maps
   2. Click on the map title/name
   3. Rename it to something shorter or use CSS overlay if needed
*/
