/* Batman Service - Modern Utility Connection Platform */

/* Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 25px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #0c185e;
}

h1 {
  font-size: 3.2rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.4rem;
  position: relative;
  padding-bottom: 15px;
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  border-radius: 2px;
}

h2.centered:after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

a {
  color: #19211f;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: #2ecc71;
}

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

.section-title {
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Buttons */
/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #1abc9c, #16a085);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(22, 160, 133, 0.25);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}


.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(22, 160, 133, 0.35);
  background: linear-gradient(135deg, #16a085, #1abc9c);
}

.btn-primary:hover:before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 4px 8px rgba(46, 204, 113, 0.2);
}

.btn-secondary {
  background-color: #fff;
  color: #16a085;
  border: 2px solid #e6f7f2;
  box-shadow: 0 4px 12px rgba(22, 160, 133, 0.08);
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 16px 36px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(22, 160, 133, 0.25);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;  
}


.btn-secondary:hover {
  color: #16a085;
  border-color: #16a085;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(22, 160, 133, 0.15);
}

.btn-secondary:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-secondary:active {
  transform: translateY(1px);
  box-shadow: 0 4px 8px rgba(22, 160, 133, 0.1);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: 10px;
  font-weight: 700;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 6px;
  text-transform: none;
  letter-spacing: 0;
}

/* Button with icon */
.btn i {
  margin-left: 8px;
  font-size: 0.9em;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

/* Outline button variant */
.btn-outline {
  background: transparent;
  color: #16a085;
  border: 2px solid #16a085;
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(22, 160, 133, 0.05);
  border-color: #1abc9c;
  color: #1abc9c;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(22, 160, 133, 0.1);
}

/* Dark button variant */
.btn-dark {
  background: #0c185e;
  color: #fff;
  box-shadow: 0 6px 15px rgba(12, 24, 94, 0.25);
}

.btn-dark:hover {
  background: #162989;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(12, 24, 94, 0.35);
}

/* White button variant */
.btn-white {
  background: #fff;
  color: #0c185e;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.btn-white:hover {
  background: #f9f9f9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
}

.logo-text {
  margin-left: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #16a085;
}

.logo-text span {
  color: #2ecc71;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li {
  margin: 0 18px;
  position: relative;
}

.main-menu a {
  font-weight: 600;
  font-size: 1.05rem;
  color: #2c3e50;
  padding: 8px 0;
  position: relative;
}

.main-menu a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  transition: width 0.3s ease;
}

.main-menu a:hover:before,
.main-menu a.active:before {
  width: 100%;
}

.main-menu a:hover,
.main-menu a.active {
  color: #16a085;
}

.contact-number {
  margin-left: 30px;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #16a085;
  font-size: 1.1rem;
}

.contact-number i {
  margin-right: 8px;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: #16a085;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

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

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

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

/* Hero Section */
.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
  background-color: #f1f9f7;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('../images/hero-pattern.svg');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-tagline {
  display: inline-block;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
}

.hero h1 {
  margin-bottom: 25px;
  font-size: 3.5rem;
  line-height: 1.2;
}

.hero h1 span {
  color: #2ecc71;
  position: relative;
  display: inline-block;
}

.hero h1 span:after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(46, 204, 113, 0.2);
  z-index: -1;
}

.hero-description {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
}

.hero-stats {
  position: relative;
  margin: -50px auto 100px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  padding: 40px 30px;
  gap: 40px;
  width: 85%;
  max-width: 1100px;
  justify-content: space-around;
  z-index: 10;
  border: 1px solid rgba(22, 160, 133, 0.1);
  overflow: hidden;
}

.hero-stats:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
}

.hero-stats:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: url('../images/pattern-dots.svg');
  background-size: 15px;
  opacity: 0.05;
  z-index: -1;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 0 20px;
  flex: 1;
}

.stat-item:not(:last-child):after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: linear-gradient(to bottom, transparent, rgba(22, 160, 133, 0.2), transparent);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
  position: relative;
}

.stat-number:after {
  content: attr(data-suffix);
  font-size: 1.5rem;
  position: absolute;
  top: 5px;
  right: 15px;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-icon {
  font-size: 2rem;
  color: rgba(22, 160, 133, 0.2);
  margin-bottom: 15px;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  color: #7f8c8d;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.stat-label:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  border-radius: 2px;
}

/* Blog Section */
.blog-section {
  padding: 100px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.blog-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/pattern-dots.svg');
  background-size: 20px;
  opacity: 0.05;
  z-index: 0;
}

.blog-section .container {
  position: relative;
  z-index: 1;
}

.blog-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.blog-section h2:after {
  left: 50%;
  transform: translateX(-50%);
}

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

.blog-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  color: #fff;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
}

.blog-status {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #0c185e 0%, #162989 100%);
  color: #fff;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(12, 24, 94, 0.3);
  z-index: 1;
}

.blog-content {
  padding: 25px;
}

.blog-date {
  font-size: 0.85rem;
  color: #7f8c8d;
  margin-bottom: 10px;
  display: block;
}

.blog-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #0c185e;
}

.blog-excerpt {
  color: #7f8c8d;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  color: #16a085;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.blog-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.blog-link:hover {
  color: #2ecc71;
}

.blog-link:hover i {
  transform: translateX(5px);
}

.blog-link.coming-soon {
  color: #7f8c8d;
  cursor: default;
  font-style: italic;
  opacity: 0.8;
  pointer-events: none;
}

.blog-link.coming-soon i {
  margin-left: 8px;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

.blog-cta {
  text-align: center;
  margin-top: 20px;
}

/* Single Blog Post */
.blog-post {
  padding: 120px 0 80px;
}

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

.blog-post-header {
  margin-bottom: 40px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #7f8c8d;
  font-size: 0.95rem;
}

.blog-post-meta span {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.blog-post-meta i {
  margin-right: 5px;
  color: #16a085;
}

.blog-post-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-post-featured-image {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-post-content p {
  margin-bottom: 25px;
}

.blog-post-content h2 {
  font-size: 2rem;
  margin: 40px 0 20px;
}

.blog-post-content h3 {
  font-size: 1.6rem;
  margin: 30px 0 15px;
}

.blog-post-content ul, 
.blog-post-content ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.blog-post-content li {
  margin-bottom: 10px;
}

.blog-post-content blockquote {
  border-left: 4px solid #16a085;
  padding: 20px;
  background-color: #f9f9f9;
  margin: 30px 0;
  font-style: italic;
  color: #34495e;
}

.blog-post-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 30px 0;
}

.blog-post-share {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #ecf0f1;
}

.blog-post-share h4 {
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  gap: 15px;
}

.share-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.share-button.facebook {
  background-color: #3b5998;
}

.share-button.twitter {
  background-color: #1da1f2;
}

.share-button.linkedin {
  background-color: #0077b5;
}

.share-button:hover {
  transform: translateY(-5px);
}

.related-posts {
  margin-top: 80px;
}

.related-posts h3 {
  margin-bottom: 30px;
  text-align: center;
}

/* Trusted By Section */
.trusted-by {
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
}

.trusted-by h3 {
  color: #7f8c8d;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.partner-logo {
  opacity: 0.7;
  transition: all 0.3s ease;
  max-height: 40px;
  max-width: 120px;
  filter: grayscale(100%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 85px;
}

.page-banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/pattern-dots.svg');
  background-size: 20px;
  opacity: 0.1;
  z-index: 1;
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  color: #fff;
}

.page-banner p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.features:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/pattern-dots.svg');
  background-size: 20px;
  opacity: 0.05;
  z-index: 0;
}

.features .container {
  position: relative;
  z-index: 1;
}

.features-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.feature-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, #16a085, #2ecc71);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.feature-card:hover:before {
  height: 100%;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-icon i {
  font-size: 28px;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.feature-card p {
  color: #7f8c8d;
  margin-bottom: 20px;
}

.feature-link {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.feature-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.feature-link:hover i {
  transform: translateX(5px);
}

/* How It Works Section */
.how-it-works {
  padding: 120px 0;
  background-color: #f1f9f7;
  position: relative;
  overflow: hidden;
}

.how-it-works:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
  border-radius: 50%;
  transform: translate(150px, 150px);
  z-index: 0;
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 60px;
}

.steps-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.steps-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, #16a085, #2ecc71);
  z-index: 0;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 40px;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(22, 160, 133, 0.2);
  position: relative;
  z-index: 2;
}

.step-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  flex: 1;
  transition: all 0.3s ease;
}

.step:hover .step-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
  margin-bottom: 10px;
  color: #333;
}

.step-content p {
  color: #7f8c8d;
  margin-bottom: 0;
}

.process-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  counter-reset: step-counter;
}

.process-step {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  counter-increment: step-counter;
}

.process-step:before {
  content: counter(step-counter);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.process-step h3 {
  margin-top: 10px;
  margin-bottom: 15px;
}

.process-step p {
  color: #7f8c8d;
}

/* Services Section */
.services {
  padding: 120px 0;
  background-color: #fff;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 80px 0 20px;
}

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

.services-grid-full {
  padding: 50px 0 100px;
  background-color: #fff;
}

.service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 80px;
  padding: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(22, 160, 133, 0.05);
  position: relative;
  overflow: hidden;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-item:hover:before {
  transform: scaleX(1);
}

.service-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
  transform: scale(1.1);
}

.service-details {
  flex: 1;
}

.service-details h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #333;
  position: relative;
  display: inline-block;
}

.service-details h3:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.service-item:hover .service-details h3:after {
  width: 60px;
}

.service-details p {
  margin-bottom: 20px;
  color: #7f8c8d;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.service-features li {
  position: relative;
  padding-left: 30px;
  color: #7f8c8d;
  font-weight: 500;
}

.service-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.services-preview {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 50px;
}

.services-cta {
  text-align: center;
  margin-top: 30px;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(22, 160, 133, 0.05);
  position: relative;
}

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.service-card:hover:before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2rem;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
  transform: scale(1.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.service-card h3:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover h3:after {
  opacity: 1;
}

.service-card p {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 0;
}

.service-content h3 {
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.service-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  border-radius: 2px;
}

.service-content p {
  color: #7f8c8d;
  margin-bottom: 20px;
}

.service-features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

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

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #7f8c8d;
}

.service-features li i {
  color: #2ecc71;
  margin-right: 10px;
  font-size: 0.9rem;
}

/* Property Manager Page */
.pm-intro {
  padding: 100px 0;
  background-color: #fff;
}

/* PM Contact Form */
.pm-contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #f1f9f7 0%, #e8f6f3 100%);
  position: relative;
  overflow: hidden;
}

.pm-contact:before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
  border-radius: 50%;
  z-index: 0;
}

.pm-contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.pm-contact-content {
  padding-right: 30px;
}

.pm-contact-content h2 {
  margin-bottom: 20px;
}

.pm-contact-content .section-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin-bottom: 40px;
}

.contact-benefits {
  margin-top: 40px;
}

.contact-benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-benefit-item i {
  color: #16a085;
  font-size: 1.2rem;
  margin-right: 15px;
}

.contact-benefit-item span {
  font-size: 1.05rem;
  color: #2c3e50;
}

.pm-contact-form-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 40px;
  position: relative;
}

.form-header {
  margin-bottom: 30px;
  text-align: center;
}

.form-header h3 {
  margin-bottom: 5px;
  color: #2c3e50;
}

.form-header p {
  color: #7f8c8d;
  font-size: 0.95rem;
  margin: 0;
}

.pm-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.floating-label-group {
  position: relative;
  margin-bottom: 10px;
}

.floating-label-group.full-width {
  grid-column: 1 / -1;
}

.floating-label-group input,
.floating-label-group select,
.floating-label-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.floating-label-group input:focus,
.floating-label-group select:focus,
.floating-label-group textarea:focus {
  outline: none;
  border-color: #16a085;
  box-shadow: 0 0 0 2px rgba(22, 160, 133, 0.1);
  background-color: #fff;
}

.floating-label-group label {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #7f8c8d;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-label-group input:focus ~ label,
.floating-label-group input:not(:placeholder-shown) ~ label,
.floating-label-group select:focus ~ label,
.floating-label-group select:not([value=""]):not([value=undefined]) ~ label,
.floating-label-group textarea:focus ~ label,
.floating-label-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: #16a085;
  background-color: #fff;
  padding: 0 5px;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
}

.form-privacy input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 5px;
}

.form-privacy label {
  font-size: 0.9rem;
  color: #7f8c8d;
  line-height: 1.4;
}

.form-privacy a {
  color: #16a085;
  text-decoration: underline;
}

.pm-contact-form .btn-primary {
  margin-top: 10px;
  align-self: center;
  width: 100%;
}

.pm-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pm-content h2 {
  margin-bottom: 30px;
}

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

.pm-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #f1f9f7 0%, #e8f6f3 100%);
  position: relative;
  overflow: hidden;
}

.pm-stats:before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
  border-radius: 50%;
  z-index: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, #16a085, #2ecc71);
  transition: all 0.4s ease;
}

.stat-card:hover:before {
  height: 100%;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #16a085;
}

.stat-card .stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.stat-card .stat-suffix {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  margin-left: 5px;
  margin-top: 5px;
}

.stat-card .stat-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.stat-card .stat-description {
  font-size: 0.95rem;
  color: #7f8c8d;
}

.pm-benefits {
  padding: 100px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.pm-benefits h2 {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22, 160, 133, 0.05);
}

.benefit-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover:before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.benefit-icon i {
  font-size: 2rem;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
  transform: scale(1.1);
}

.benefit-card h3 {
  margin-bottom: 15px;
  color: #333;
  position: relative;
  display: inline-block;
}

.benefit-card h3:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover h3:after {
  opacity: 1;
}

.benefit-card p {
  color: #7f8c8d;
  line-height: 1.6;
}

/* Coverage Section */
.coverage {
  padding: 100px 0;
  background-color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.coverage:before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
  border-radius: 50%;
  z-index: 0;
}

.coverage:after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
  border-radius: 50%;
  z-index: 0;
}

.coverage h2 {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.coverage .container {
  position: relative;
  z-index: 1;
}

.coverage .map-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  padding: 0;
  height: 500px;
}

.coverage .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.coverage-details {
  max-width: 1000px;
  margin: 0 auto;
}

.coverage-details p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: #7f8c8d;
}

.coverage-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.coverage-stat {
  text-align: center;
}

.coverage-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 10px;
}

.coverage-stat .stat-label {
  font-size: 1rem;
  color: #7f8c8d;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.coverage-stat .stat-label:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  border-radius: 2px;
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background-color: #f1f9f7;
  position: relative;
  overflow: hidden;
}

.testimonials:before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
  border-radius: 50%;
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 20px;
  position: relative;
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  font-family: 'Georgia', serif;
  color: rgba(22, 160, 133, 0.1);
  line-height: 1;
}

.testimonial-content {
  font-style: italic;
  color: #7f8c8d;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid #f1f9f7;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
}

.author-info p {
  margin: 0;
  color: #7f8c8d;
  font-size: 0.9rem;
}

.testimonial-rating {
  color: #f1c40f;
  margin-top: 5px;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
}

.testimonial-controls button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonial-controls button:hover {
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

/* CTA Section */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(22, 160, 133, 0.3);
}

.cta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/pattern-wave.svg');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.cta:after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.cta .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.cta h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 2.8rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta h2:after {
  background: rgba(255, 255, 255, 0.3);
  left: 50%;
  transform: translateX(-50%);
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn-primary {
  background: linear-gradient(135deg, #1abc9c, #16a085);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(22, 160, 133, 0.25);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(22, 160, 133, 0.35);
  background: linear-gradient(135deg, #16a085, #1abc9c);
}

.cta .btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(22, 160, 133, 0.25);
}


.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-white {
  background-color: #fff;
  color: #16a085;
}

.btn-white:hover {
  background-color: #f9f9f9;
  color: #2ecc71;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline-white:hover {
  background-color: #fff;
  color: #16a085;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 80px 0 30px;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-info h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
}

.footer-logo-text {
  margin-left: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}

.footer-logo-text span {
  color: #2ecc71;
}

.footer-info p {
  color: #bdc3c7;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

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

.footer-social a:hover {
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 15px;
}

.footer-links h3:after, .footer-contact h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bdc3c7;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: #2ecc71;
  transform: translateX(5px);
}

/* Legal Pages Styles */
.legal-content {
  padding: 80px 0;
}

.legal-content h1 {
  color: #0c185e;
  margin-bottom: 10px;
  font-size: 2.5rem;
  font-weight: 700;
}

.last-updated {
  color: #7f8c8d;
  font-style: italic;
  margin-bottom: 40px;
}

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

.legal-section h2 {
  color: #16a085;
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.legal-section h3 {
  color: #0c185e;
  font-size: 1.3rem;
  margin: 25px 0 15px;
  font-weight: 600;
}

.legal-section p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #34495e;
}

.legal-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-section li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #34495e;
}

.legal-section strong {
  font-weight: 600;
  color: #2c3e50;
}

.footer-links a i {
  margin-right: 8px;
  font-size: 0.8rem;
}

.footer-contact li {
  display: flex;
  margin-bottom: 15px;
  color: #bdc3c7;
}

.footer-contact li i {
  margin-right: 15px;
  color: #2ecc71;
}

.footer-contact a {
  color: #ecf0f1;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #2ecc71;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-copyright {
  color: #bdc3c7;
  font-size: 0.9rem;
}

.footer-copyright a {
  color: #2ecc71;
}

.footer-links-bottom {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-bottom li {
  margin-left: 20px;
}

.footer-links-bottom a {
  color: #bdc3c7;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links-bottom a:hover {
  color: #2ecc71;
}

/* Page Header */
.page-header {
  padding: 150px 0 80px;
  background-color: #f1f9f7;
  position: relative;
  overflow: hidden;
}

.page-header:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('../images/pattern-dots.svg');
  background-size: 20px;
  opacity: 0.05;
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 20px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #7f8c8d;
}

.breadcrumbs a {
  color: #7f8c8d;
}

.breadcrumbs a:hover {
  color: #16a085;
}

.breadcrumbs i {
  font-size: 0.7rem;
}

/* About Page Styles */
.about-intro {
  padding: 100px 0;
}

.about-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

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

.about-image:before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 5px solid #f1f9f7;
  border-radius: 10px;
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 30px;
}

.about-content p {
  margin-bottom: 25px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.about-stat {
  text-align: center;
  position: relative;
  padding: 20px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.about-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.about-stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
  position: relative;
}

.about-stat-number:after {
  content: attr(data-suffix);
  font-size: 1.5rem;
  position: absolute;
  top: 5px;
  right: -15px;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-stat-label {
  color: #7f8c8d;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
}

.about-stat-label:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  border-radius: 2px;
}

.mission-vision {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.mission-vision .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.mission-box, .vision-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.mission-box:before, .vision-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
}

.mission-icon, .vision-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.mission-icon i, .vision-icon i {
  font-size: 32px;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team {
  padding: 100px 0;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

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

.team-member {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
  height: 300px;
  overflow: hidden;
  align: "center";
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-member:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 30px;
  text-align: center;
}

.team-info h3 {
  margin-bottom: 5px;
}

.team-position {
  color: #16a085;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #f1f9f7;
  border-radius: 50%;
  color: #16a085;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  color: #fff;
  transform: translateY(-3px);
}

/* Services Page Styles */
.services-detailed {
  padding: 100px 0;
}

.service-detailed-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.service-detailed-item:nth-child(even) {
  direction: rtl;
}

.service-detailed-item:nth-child(even) .service-detailed-content {
  direction: ltr;
}

.service-detailed-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-detailed-content h2 {
  margin-bottom: 25px;
}

.service-detailed-content p {
  margin-bottom: 20px;
}

.service-benefits {
  margin-top: 30px;
}

.service-benefits h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

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

.benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.benefits-list i {
  color: #2ecc71;
  margin-right: 15px;
  margin-top: 5px;
}

/* Contact Page Styles */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  margin-bottom: 30px;
}

.contact-info p {
  margin-bottom: 30px;
}

.contact-methods {
  margin-top: 40px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 24px;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-method-content h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.contact-method-content p, .contact-method-content a {
  color: #7f8c8d;
  margin: 0;
}

.contact-method-content a:hover {
  color: #16a085;
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background-color: #fff;
}

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

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(22, 160, 133, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.contact-card:hover:before {
  transform: scaleX(1);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.contact-icon i {
  font-size: 2rem;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-card:hover .contact-icon {
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
  transform: scale(1.1);
}

.contact-card h3 {
  margin-bottom: 15px;
  color: #333;
}

.contact-card p {
  color: #7f8c8d;
  margin-bottom: 20px;
  min-height: 50px;
}

.contact-link {
  display: inline-block;
  font-weight: 600;
  color: #16a085;
  transition: all 0.3s ease;
  position: relative;
}

.contact-link:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
  transition: width 0.3s ease;
}

.contact-link:hover {
  color: #2ecc71;
}

.contact-link:hover:after {
  width: 100%;
}

.chat-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
  transition: all 0.3s ease;
}

.chat-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
  color: #fff;
}

.chat-link:hover:after {
  display: none;
}

/* Contact Form Styles */
.contact-form-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.contact-form-section .container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  align-items: start;
}

.form-container {
  background-color: #fff;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22, 160, 133, 0.05);
}

.form-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #16a085, #2ecc71);
}

.form-container h2 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.form-container p {
  color: #7f8c8d;
  margin-bottom: 30px;
}

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

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

.form-group {
  margin-bottom: 25px;
  position: relative;
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  box-sizing: border-box;
  font-size: 1rem;
  color: #2c3e50;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #16a085;
  outline: none;
  box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.1);
  background-color: #fff;
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
  width: 100%;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: #16a085;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #7f8c8d;
}

.contact-form .btn-primary {
  align-self: flex-start;
  min-width: 180px;
}

/* Map Container */
.map-container {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
  border: 1px solid rgba(22, 160, 133, 0.05);
  transition: all 0.3s ease;
}

.map-container:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.map-container h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.map {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 300px;
}

.map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.map-directions {
  text-align: center;
  margin-bottom: 25px;
}

.directions-link {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(22, 160, 133, 0.2);
}

.directions-link i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.directions-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(22, 160, 133, 0.3);
  color: white;
}

.office-hours {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #16a085;
}

.office-hours h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #2c3e50;
}

.office-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.office-hours li {
  margin-bottom: 10px;
  color: #7f8c8d;
  display: flex;
  justify-content: space-between;
}

.office-hours li:last-child {
  margin-bottom: 0;
}

.office-hours li span {
  font-weight: 600;
  color: #2c3e50;
}

.office-note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #7f8c8d;
  font-style: italic;
  text-align: center;
  padding-top: 15px;
  border-top: 1px dashed rgba(22, 160, 133, 0.2);
}

.office-note i {
  color: #16a085;
  margin-right: 5px;
}

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

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #16a085;
  box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.1);
  outline: none;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

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

.map-section {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.map-container {
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: #fff;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.faq-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid rgba(22, 160, 133, 0.05);
  transition: all 0.3s ease;
}

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

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 600;
  flex: 1;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-toggle i {
  font-size: 0.8rem;
  color: #16a085;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
  transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
  color: #fff;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 1000px;
}

.faq-answer p {
  color: #7f8c8d;
  margin: 0;
  line-height: 1.7;
}

.faq-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

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

.faq-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
}

.faq-toggle {
  color: #16a085;
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer-inner {
  padding-bottom: 25px;
  color: #7f8c8d;
}

.faq-item.active .faq-question {
  background-color: #f1f9f7;
}

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

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

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

/* Get Started Page Styles */
.get-started-section {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.get-started-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.multi-step-form {
  background-color: #fff;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step-header {
  margin-bottom: 30px;
}

.form-step-header h2 {
  margin-bottom: 10px;
}

.form-progress {
  display: flex;
  margin-bottom: 40px;
}

.progress-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.progress-step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
  z-index: 0;
}

.step-number {
  width: 30px;
  height: 30px;
  background-color: #e0e0e0;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  transition: all 0.3s ease;
}

.progress-step.active .step-number, .progress-step.completed .step-number {
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
}

.progress-step.completed:after {
  background: linear-gradient(90deg, #16a085, #2ecc71);
}

.step-label {
  font-size: 0.9rem;
  color: #7f8c8d;
  font-weight: 600;
}

.progress-step.active .step-label {
  color: #16a085;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

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

.service-option {
  background-color: #f9f9f9;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-option:hover {
  background-color: #f1f9f7;
}

.service-option.selected {
  background-color: #f1f9f7;
  border-color: #16a085;
}

.service-option-icon {
  font-size: 30px;
  color: #16a085;
  margin-bottom: 15px;
}

.service-option h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.service-option p {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin: 0;
}

.form-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.sidebar-box h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.sidebar-box p {
  color: #7f8c8d;
}

.benefits-list-sidebar li {
  margin-bottom: 15px;
}

.testimonial-sidebar {
  font-style: italic;
  color: #7f8c8d;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.testimonial-sidebar:before {
  content: '"';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  font-family: 'Georgia', serif;
  color: rgba(22, 160, 133, 0.3);
  line-height: 1;
}

.testimonial-author-sidebar {
  font-weight: 600;
  color: #16a085;
}

.contact-options-sidebar {
  margin-top: 20px;
}

.contact-option {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-option i {
  margin-right: 10px;
  color: #16a085;
}

.contact-option a {
  color: #2c3e50;
}

.contact-option a:hover {
  color: #16a085;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .pm-contact .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pm-contact-content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .pm-contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .pm-contact-form-container {
    padding: 30px 20px;
  }
  
  .hero .container,
  .about-intro .container,
  .pm-intro .container,
  .service-detailed-item,
  .contact-grid,
  .get-started-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero {
    padding: 150px 0 100px;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-stats {
    position: relative;
    transform: none;
    margin: 30px auto 60px;
    width: 95%;
    padding: 30px 15px;
    gap: 20px;
  }
  
  .service-detailed-item:nth-child(even) {
    direction: ltr;
  }
  
  .mission-vision .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .form-container,
  .map-container {
    padding: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .map-container {
    position: static;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .coverage .map-container {
    height: 300px;
  }
  
  .coverage-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .service-item {
    flex-direction: column;
    padding: 30px 20px;
  }
  
  .service-icon {
    margin-right: 0;
    margin-bottom: 25px;
  }
  
  .service-features {
    grid-template-columns: 1fr;
  }
  
  .steps-container:before {
    left: 30px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-right: 25px;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  
  .main-menu.active {
    display: flex;
  }
  
  .main-menu li {
    margin: 15px 0;
  }
  
  .main-menu a {
    font-size: 1.2rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 1000;
  }
  
  .contact-number {
    display: none;
  }
  
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .features-grid,
  .process-steps,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .footer-links-bottom {
    justify-content: center;
  }
  
  .footer-links-bottom li:first-child {
    margin-left: 0;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .multi-step-form {
    padding: 30px;
  }
  
  .service-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  .contact-form .form-group {
    margin-bottom: 15px;
  }
  
  .contact-form .checkbox-group {
    margin-bottom: 20px;
  }
  
  .contact-form .btn-primary {
    width: 100%;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .hero {
    padding: 130px 0 80px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
    margin: 20px auto 50px;
    width: 100%;
  }
  
  .stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(22, 160, 133, 0.2), transparent);
  }
  
  .partner-logos {
    gap: 30px;
  }
  
  .features,
  .how-it-works,
  .services,
  .testimonials,
  .about-intro,
  .mission-vision,
  .team,
  .services-detailed,
  .contact-section,
  .map-section,
  .faq-section,
  .get-started-section {
    padding: 80px 0;
  }
  
  .page-header {
    padding: 120px 0 60px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mission-box, .vision-box {
    padding: 30px;
  }
  
  .contact-method {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .form-progress {
    display: none;
  }
}

