/* ========== CSS RESET & BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Titillium Web";
  src: url("../fonts/TitilliumWeb-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Titillium Web";
  src: url("../fonts/TitilliumWeb-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Titillium Web";
  src: url("../fonts/TitilliumWeb-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

body {
  font-family: "Titillium Web", sans-serif;
}

/* ========== PREVENT BODY SCROLL WHEN MENU OPEN ========== */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

:root {
  --primary-color: #ff6b00;
  --secondary-color: #2c3e50;
  --accent-color: #27ae60;
  --blue-accent: #3498db;
  --purple-accent: #9b59b6;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 5px 25px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, #ff6b00 0%, #e65c00 100%);
  --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 2.8rem;
}

h1 {
  font-size: 2.8rem;
}
h2 {
  font-size: 2.4rem;
}
h3 {
  font-size: 1.6rem;
}
h4 {
  font-size: 1.3rem;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

/*==========crousal banner==========*/

.banner-slider {
  width: 100%;
  height: 420px;
  position: relative;
}

.banner-slider img {
  width: fit-content;
  height: fit-content;
  object-fit: cover;
}

.banner-slider .caption h2 {
  margin-bottom: 6px;
  font-size: 26px;
}

.banner-slider .caption p {
  font-size: 16px;
  color: var(--secondary-color);
}

/* ========== TOP INFO BAR STYLES ========== */
.top-info-bar {
  background: #2c3e50;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  transition: all 0.3s ease;
  color: var(--white);
}

.top-info-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.info-left,
.info-right {
  display: flex;
  gap: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item i {
  color: #ff6b35;
  font-size: 14px;
}

.info-item a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.info-item a:hover {
  color: #ff6b35;
}

/* ========== MAIN NAVIGATION STYLES ========== */
.main-nav {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
  max-width: 1330px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
  transition: all 0.3s ease;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-section img {
  height: 60px;
  width: auto;
  transition: all 0.3s ease;
}

.logo-text h2 {
  font-size: 24px;
  color: #2c3e50;
  margin: 0;
  font-weight: 700;
  transition: all 0.3s ease;
  padding-bottom: 0;
}

.logo-text p {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0;
  transition: all 0.3s ease;
}

/*========== Navigation Menu========== */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}
.nav-menu > li > a {
  display: block;
  padding: 10px 10px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: #2c3e50;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  border-left: 3px solid transparent;
  font-weight: 500;
}

.dropdown-content a:hover {
  background: #d2d2d3;
  border-left-color: #ff6b35;
  color: #ff6b35;
  padding-left: 25px;
}

/*==========Navbar CTA Button========== */
.nav-cta .nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-cta .nav-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ========== STICKY NAVIGATION EFFECT ========== */
.main-nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*========== Compact Navigation When Sticky========== */
.main-nav.sticky .nav-container {
  padding: 8px 20px;
}

.main-nav.sticky .logo-section img {
  height: 50px;
}

.main-nav.sticky .logo-text h1 {
  font-size: 20px;
}

.main-nav.sticky .logo-text p {
  font-size: 12px;
}

.main-nav.sticky .nav-menu > li > a {
  padding: 10px 10px;
  font-size: 14px;
}

/* ==========Hide top bar when scrolling========== */
.top-info-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
}

/* Add padding to body when nav is sticky */
body.nav-sticky-space {
  padding-top: 70px;
}

/* ========== MOBILE MENU TOGGLE ========== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/*========== Hero Section========== */

.hero {
  background: linear-gradient(rgb(58 53 53 / 90%), rgb(0 0 0 / 90%)),
    url("../images/background.jpg")
      center/cover;
  padding: 150px 20px 100px;
  text-align: center;
  color: white;
  margin-top: -1px;
}

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

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.main-topic {
  text-align: center;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* ==========CTA Buttons========== */
.cta-btn {
  display: inline-block;
  padding: 15px 35px;
  background: #ff6b35;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-btn:hover {
  background: #ff8555;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.cta-btn-secondary {
  background: white;
  color: #667eea;
  margin-left: 15px;
}

.cta-btn-secondary:hover {
  background: #f0f0f0;
}

/* ==========Trust Badges========== */
.trust-badges {
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.badge {
  text-align: center;
}

.badge-number {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--secondary-color);
}

.badge-text {
  font-size: 0.9em;
  color: #666;
}

/*========== Content Sections========== */
h2 {
  font-size: 2em;
  color: #2d2f34;
  margin: 40px 0 20px;
}

.intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  padding: 20px;
}

.intro-text strong {
  color: var(--secondary-color);
}

/* ==========Lists========== */
ul {
  list-style: none;
  margin: 20px 0;
}

ul li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1.05em;
}

/* ==========Service Grid========== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
  padding-left: 30px;
}
.service-card {
  padding: 25px;
}

.service-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: fill;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #2d2f34;
  margin-bottom: 10px;
  text-align: center;
}
.service-card h4 {
  color: #2d2f34;
  margin-bottom: 10px;
  text-align: center;
}
.service-card p {
  margin-bottom: 10px;
  text-align: justify;
}

.service-card a {
  color: var(--primary-color);

  margin-bottom: 10px;
}

.service-card ul li {
  padding: 0;
  position: relative;
  font-size: 1.05em;
  text-align: center;
}

/* ==========Areas Section========== */
.areas-box {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: #f9f9f9;
}

.areas-box strong {
  display: block;
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
}

.sectors-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.sectors-container div {
  flex: 0 0 calc(25% - 83px); /* 4 columns */
}

.sectors-container a {
  color: #2d2f34;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: block;
}

.sectors-container a:hover {
  color: #ff6600;
  text-decoration: none;
}

.sectors-container a::before {
  content: "\25CF";
  margin-right: 8px;
  color: #333;
  font-weight: bold;
}

.show-more-btn {
  display: none; /* Hidden by default */
  margin: 15px auto;
  padding: 10px 30px;
  background: #2d2f34;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  width: 200px;
}

.show-more-btn:hover {
  background: #2d2f34;
}

.areas-box p {
  text-align: justify;
}

/* ========== FAQ SECTION STYLES ========== */
.faq-section {
  padding: 60px 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: #2c3e50;
  font-weight: 600;
  flex: 1;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: #ff6b35;
}

.faq-question i {
  font-size: 14px;
  color: #7f8c8d;
  transition: transform 0.3s ease, color 0.3s ease;
  margin-left: 15px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #ff6b35;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 25px 20px;
  margin: 0;
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

/*==========blog section========== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px, 0;
}

.blog-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
}

.blog-card h3 {
  font-size: 1.17em;
}
.blog-card a {
  color: var(--primary-color);
}

/* ==========CTA Section========== */
.cta-section {
  background: white;
  color: var(--secondary-color);
  padding: 60px 20px;
  text-align: center;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  margin: 50px 0;
}

.cta-section h2 {
  color: var(--secondary-color);
  border: none;
  margin-bottom: 20px;
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-section h3 {
  color: var(--white);
  margin-bottom: 25px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 0px;
}

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

.footer-section ul li {
  margin-bottom: 0px;
  padding: 5px 0;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-top: 3px;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
}

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

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

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

/* ========== FLOATING ELEMENTS ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  animation: bounce-float 2s infinite;
  cursor: pointer;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

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

.scroll-top {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--secondary-color);
}

.breadcrumb {
  padding: 15px 0;
  font-size: 0.9em;
  color: #666;
}

.breadcrumb a {
  color: #667eea;
  text-decoration: none;
}

h3 {
  color: #2d2f34;
  /* margin: 20px 0 10px; */
  font-size: 1.1em;
}

h4 {
  color: #2d2f34;
  margin: 15px 0 10px;
  font-size: 1.1em;
}

.intro-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #667eea;
  margin: 30px 0;
  font-size: 1.1em;
}

.location-highlight {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
}

.location-highlight h3 {
  color: white;
  margin-top: 0;
}

ul li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

/* ==========Dropdown Container========== */
.dropdown {
  position: relative;
}

/* Dropdown Content - Hidden by Default */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 100%;
  left: 0;
  text-align: center;
}

/* Show Dropdown on Hover - THIS IS THE KEY */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Arrow Indicator (Optional) */
.dropdown > a::after {
  content: " ▼";
  font-size: 10px;
}

.service-card {
  padding: 30px;
}

.service-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.area-tag {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
}

.area-tag a {
  background: #f8f9fa;

  transition: all 0.3s;
}

.area-tag:hover {
  border-color: #667eea;
  background: #f0f4ff;
}

.area-tag strong {
  color: var(--secondary-color);
}

.price-table {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  background: #667eea;
  color: white;
  padding: 15px;
  text-align: left;
}

.price-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.price-table tr:hover {
  background: #f8f9fa;
}

.process-steps {
  counter-reset: step-counter;
}

.process-step {
  position: relative;
  padding-left: 45px;
}

.landmark-section {
  background: #fff9e6;
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 4px solid #ffa500;
}

.testimonial-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #667eea;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-right: 15px;
}

.testimonial-name {
  font-weight: bold;
  color: #1e3c72;
}

.testimonial-location {
  color: #666;
  font-size: 0.9em;
}

.rating {
  color: #ffa500;
  font-size: 1.2em;
}

.warning-box {
  background: #fff3e0;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.highlight-box {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
}

.highlight-box h3 {
  color: white;
  margin-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-card {
  color: white;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95em;
}

h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.story-section {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.timeline {
  position: relative;
  padding: 30px 0;
}

.timeline-item {
  background: white;
  padding: 25px;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 100px;
}

.timeline-year {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  font-weight: bold;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.stat-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

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

.stat-number {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1em;
  opacity: 0.9;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

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

.value-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.team-member {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s;
}

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

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.team-name {
  font-size: 1.3em;
  font-weight: bold;
  color: #1e3c72;
  margin-bottom: 5px;
}

.team-role {
  color: #667eea;
  font-weight: bold;
  margin-bottom: 10px;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.cert-badge {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
}

.cert-badge:hover {
  border-color: #667eea;
  transform: scale(1.05);
}

.cert-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.mv-card {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.mv-card h3 {
  margin-top: 0;
  font-size: 1.6em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s;
}

.contact-icon {
  font-size: 3.5em;
  margin-bottom: 15px;
}

.contact-link {
  display: inline-block;
  color: #667eea;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 10px;
}

.contact-link:hover {
  color: #764ba2;
}

.contact-form-section {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #1e3c72;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1em;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.1);
}

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

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 50px;
  border: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.office-info {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
}

.office-hours {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.hours-row:last-child {
  border-bottom: none;
}

.day {
  font-weight: bold;
  color: #1e3c72;
}

.time {
  color: #666;
}

.map-container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
  min-height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  color: #666;
}

.quick-contact-bar {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin: 30px 0;
}

.quick-contact-bar h3 {
  color: white;
  margin: 0 0 15px 0;
}

.quick-contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: white;
  color: #ff6b35;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s;
}

.quick-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.info-box {
  background: #e8f5e9;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #4caf50;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  font-size: 1.5em;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.facebook {
  color: #3b5998;
}
.instagram {
  color: #e1306c;
}
.twitter {
  color: #1da1f2;
}
.linkedin {
  color: #0077b5;
}
.youtube {
  color: #ff0000;
}

.intro-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #667eea;
  margin: 30px 0;
  font-size: 1.1em;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.quote-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
}

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

h2 {
  color: #333;
  font-size: 2em;
  margin-bottom: 30px;
  padding-bottom: 15px;
}

.form-section {
  margin-bottom: 35px;
  padding: 25px;
  background: #f8f9ff;
  border-radius: 10px;
  border-left: 4px solid #667eea;
}

.section-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.required {
  color: #e74c3c;
  font-weight: bold;
}

/* Service Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.service-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.service-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.service-card input[type="radio"]:checked + .service-content {
  border-color: #667eea;
  background: #f0f4ff;
}

.service-card input[type="radio"]:checked ~ .service-icon {
  transform: scale(1.2);
}

.service-content {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 10px;
  transition: all 0.3s ease;
}

.service-icon {
  font-size: 2.5em;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.service-name {
  font-weight: 600;
  color: #333;
  font-size: 0.95em;
}

/* Form Groups */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1em;
  font-family: inherit;
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-option:hover,
.checkbox-option:hover {
  border-color: #667eea;
  background: #f0f4ff;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Conditional Fields */
.conditional-field {
  display: none;
  margin-top: 15px;
  padding: 15px;
  background: white;
  border-radius: 8px;
  border: 2px solid #ffd700;
}

.conditional-field.show {
  display: block;
  animation: slideDown 0.3s ease;
}

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

/* Items Checklist */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.item-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.item-checkbox:hover {
  border-color: #667eea;
}

.item-checkbox input:checked + span {
  color: #667eea;
  font-weight: 600;
}

/* Info Text */
.info-text {
  display: block;
  font-size: 0.85em;
  color: #666;
  margin-top: 5px;
  font-style: italic;
}

.alert-text {
  display: block;
  font-size: 0.9em;
  color: #e74c3c;
  margin-top: 10px;
  padding: 10px;
  background: #ffe6e6;
  border-radius: 5px;
  border-left: 3px solid #e74c3c;
}

/* Submit Button */
.submit-section {
  margin-top: 40px;
  text-align: center;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

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

.privacy-note {
  margin-top: 20px;
  font-size: 0.85em;
  color: #666;
  line-height: 1.6;
}

/* Sidebar */
.sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-card,
.info-card,
.contact-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.highlight-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.highlight-card h3,
.info-card h3,
.contact-card h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
}

.price-range p {
  margin: 8px 0;
  font-size: 1em;
}

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

.benefit-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
  font-size: 1.2em;
}

.trust-indicators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}

.trust-item {
  text-align: center;
  padding: 15px;
  background: #f8f9ff;
  border-radius: 8px;
}

.trust-number {
  font-size: 1.8em;
  font-weight: bold;
  color: #667eea;
}

.trust-label {
  font-size: 0.85em;
  color: #666;
  margin-top: 5px;
}

.contact-card a {
  display: block;
  background: #667eea;
  color: white;
  text-decoration: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  background: #764ba2;
  transform: scale(1.05);
}

/* Success Message */
.success-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
  z-index: 1000;
  max-width: 500px;
}

.success-message.show {
  display: block;
  animation: popIn 0.5s ease;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.success-icon {
  font-size: 4em;
  margin-bottom: 20px;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.overlay.show {
  display: block;
}

.steps-section {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.step-item {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 auto 15px;
}

.step-title {
  font-weight: bold;
  color: #1e3c72;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9em;
  color: #666;
}

.imp-points li :before {
  content: "\25CF";
  color: #2d2f34;
  font-weight: bold;
  font-size: 1em;
  margin-right: 10px;
}

.price-table {
  background: white;
  border-radius: 10px;
  overflow: scroll;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.rating-overview {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.overall-rating {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  color: white;
}

.rating-number {
  font-size: 5em;
  font-weight: bold;
  margin-bottom: 10px;
}

.rating-stars {
  font-size: 2em;
  color: #ffd700;
  margin-bottom: 10px;
}

.total-reviews {
  font-size: 1.1em;
  opacity: 0.9;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-label {
  min-width: 60px;
  font-weight: bold;
  color: #667eea;
}

.rating-bar {
  flex: 1;
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 5px;
  transition: width 0.3s;
}

.rating-count {
  min-width: 50px;
  text-align: right;
  color: #666;
  font-size: 0.9em;
}

.stat-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.stat-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #667eea;
  margin-bottom: 5px;
}

.stat-label {
  color: #666;
  font-size: 0.95em;
}

.filter-section {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.filter-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.filter-btn {
  padding: 10px 25px;
  background: white;
  border: 2px solid #e0e0e0;
  color: #333;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin: 30px 0;
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  position: relative;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

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

.reviewer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  flex-shrink: 0;
}

.reviewer-details h4 {
  font-size: 1.1em;
  color: #1e3c72;
  margin-bottom: 3px;
}

.review-service {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 5px;
}

.review-location {
  color: #999;
  font-size: 0.85em;
}

.review-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.stars {
  color: #ffa500;
  font-size: 1.3em;
  margin-bottom: 5px;
}

.review-date {
  color: #999;
  font-size: 0.85em;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #25d366;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: bold;
  margin-top: 5px;
}

.review-content {
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.review-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.review-image {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3em;
  color: #999;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.review-helpful {
  display: flex;
  gap: 15px;
  align-items: center;
}

.helpful-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  background: #f0f4ff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9em;
}

.helpful-btn:hover {
  background: #667eea;
  color: white;
}

.service-tag {
  background: #f0f4ff;
  color: #667eea;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: bold;
}

.featured-review {
  border: 3px solid #667eea;
  position: relative;
}

.featured-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9em;
}

.video-review {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.video-thumbnail {
  width: 100%;
  height: 300px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  position: relative;
  cursor: pointer;
}

.play-button {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  color: #f5576c;
}

.review-form-section {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
}

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

.star-rating {
  display: flex;
  gap: 10px;
  font-size: 2em;
  margin-top: 10px;
}

.star-rating span {
  cursor: pointer;
  color: #e0e0e0;
  transition: all 0.3s;
}

.star-rating span:hover,
.star-rating span.active {
  color: #ffa500;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.testimonial-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.platform-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.platform-icon {
  font-size: 3em;
  margin-bottom: 10px;
}

.platform-rating {
  color: #ffa500;
  font-size: 1.5em;
  margin: 10px 0;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.material-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
}

.material-card:hover {
  border-color: #667eea;
  transform: scale(1.05);
}

.material-icon {
  font-size: 3em;
  margin-bottom: 10px;
}

.comparison-table {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  background: #1e3c72;
  color: white;
  padding: 15px;
  text-align: left;
}

.comparison-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.yes-mark {
  color: #25d366;
  font-weight: bold;
  font-size: 1.2em;
}

.no-mark {
  color: #ff6b35;
  font-weight: bold;
  font-size: 1.2em;
}

.service-car {
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature-item {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature-icon {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.client-logo {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-weight: bold;
  color: #667eea;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
}

.client-logo:hover {
  border-color: #667eea;
  transform: scale(1.05);
}

.vehicle-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.vehicle-card {
  padding: 25px;
}

.vehicle-icon {
  font-size: 3em;
  margin-bottom: 10px;
}

.city-container {
  display: inline-block;
  perspective: 1000px;
}

.rotating-text {
  font-weight: bold;
  color: #e74c3c;
  display: inline-block;
  min-width: 120px;
  animation: flip 0.6s ease-in-out;
}

@keyframes flip {
  0% {
    transform: rotateX(0deg);
  }
  50% {
    transform: rotateX(90deg);
    opacity: 0;
  }
  51% {
    transform: rotateX(-90deg);
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

.policy-section {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.policy-section p {
  margin-bottom: 15px;
  line-height: 1.8;
}

/* ul, ol {
            margin: 20px 0;
            padding-left: 40px;
        }
        
        ul li, ol li {
            padding: 8px 0;
            line-height: 1.8;
        } */

.table-responsive {
  overflow-x: auto;
  margin: 20px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

table th {
  background: #667eea;
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: bold;
}

table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

table tr:hover {
  background: #f8f9fa;
}

.quick-links {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

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

.quick-links ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.quick-links ul li:last-child {
  border-bottom: none;
}

.quick-links a {
  color: #667eea;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.quick-links a:hover {
  color: #764ba2;
  padding-left: 10px;
}

.last-updated {
  background: #e3f2fd;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #2196f3;
  font-weight: bold;
}
