@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-blue: #0A4A8F;
  --secondary-blue: #2C8CD3;
  --accent-yellow: #F2A900;
  --light-gray: #F0F0F0;
  --white: #FFFFFF;
  --dark-gray: #333333;
  --text-color: #333333;
  --header-height: 90px;
  --header-height-sticky: 70px;
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  color: var(--text-color);
  line-height: 1.7;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6, .nav-link, .btn, .cta-button {
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background-color: #083d6f;
  box-shadow: 0 4px 15px rgba(10, 74, 143, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

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

.btn-accent {
  background-color: var(--accent-yellow);
  color: var(--dark-gray);
}

.btn-accent:hover {
  background-color: #d99900;
  box-shadow: 0 4px 15px rgba(242, 169, 0, 0.3);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: var(--white);
  z-index: 1000;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  height: var(--header-height-sticky);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.logo img {
  height: 60px;
  transition: height var(--transition-speed) ease;
}

.header.scrolled .logo img {
  height: 50px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-gray);
  position: relative;
  padding: 5px 0;
  transition: color var(--transition-speed) ease;
}

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

.nav-link:hover {
  color: var(--primary-blue);
}

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

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 1rem;
}

.phone-number:hover {
  color: var(--secondary-blue);
}

/* Mobile Header */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

.mobile-header .logo img {
  height: 45px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: 2px;
  transition: all var(--transition-speed) ease;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-phone {
  display: flex;
  align-items: center;
  color: var(--primary-blue);
  font-weight: 600;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed) ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-overlay .nav-link {
  font-size: 1.5rem;
  font-weight: 600;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 74, 143, 0.85) 0%, rgba(44, 140, 211, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

/* Welcome Section */
.welcome {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.welcome-text h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.welcome-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.welcome-image {
  position: relative;
}

.welcome-image img {
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

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

.service-card {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-speed) ease;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  border-radius: 50%;
}

.service-icon img {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  font-size: 1.35rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--secondary-blue);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-speed) ease;
}

.service-link:hover {
  color: var(--primary-blue);
}

.service-link::after {
  content: '→';
  transition: transform var(--transition-speed) ease;
}

.service-link:hover::after {
  transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 5rem 0;
  background-color: var(--white);
}

.why-choose-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-choose-us h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.why-choose-us .section-subtitle {
  text-align: left;
  margin: 0 0 2rem;
}

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

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  background-color: var(--accent-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.benefit-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--dark-gray);
}

.why-choose-us-image img {
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* CTA Blocks Section */
.cta-blocks {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.cta-blocks h2 {
  color: var(--white);
  margin-bottom: 3rem;
}

.cta-blocks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cta-block {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.cta-block:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-block-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-block-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--primary-blue);
}

.cta-block h3 {
  font-size: 1.25rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.cta-block p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.cta-block .btn {
  font-size: 0.9rem;
  padding: 10px 24px;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/testimonial-bg-1.png');
  background-size: cover;
  opacity: 0.3;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 2rem;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.testimonial-quote {
  font-size: 1.35rem;
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--secondary-blue);
  opacity: 0.4;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: none;
}

.testimonial-dot.active,
.testimonial-dot:hover {
  opacity: 1;
  transform: scale(1.2);
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed) ease;
}

.testimonial-arrow:hover {
  background-color: var(--primary-blue);
}

.testimonial-arrow:hover svg {
  fill: var(--white);
}

.testimonial-arrow svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-blue);
}

.testimonial-arrow.prev {
  left: -60px;
}

.testimonial-arrow.next {
  right: -60px;
}

/* Contact CTA Section */
.contact-cta {
  padding: 5rem 0;
  background-color: var(--white);
  text-align: center;
}

.contact-cta h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.contact-cta p {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
}

.contact-cta .phone-number {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo img {
  height: 50px;
}

.footer-tagline {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--accent-yellow);
  font-size: 1.1rem;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { text-shadow: 0 0 10px rgba(242, 169, 0, 0.3); }
  50% { text-shadow: 0 0 20px rgba(242, 169, 0, 0.6); }
}

.footer-mission {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.7;
}

.footer h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

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

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

.footer-links a {
  color: #aaa;
  transition: color var(--transition-speed) ease;
}

.footer-links a:hover {
  color: var(--accent-yellow);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #aaa;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--secondary-blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: #aaa;
  transition: color var(--transition-speed) ease;
}

.footer-contact-item a:hover {
  color: var(--accent-yellow);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.social-link:hover {
  background-color: var(--primary-blue);
  transform: scale(1.1);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #777;
  margin: 0 1rem;
  transition: color var(--transition-speed) ease;
}

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

/* Page Hero */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--header-height);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 74, 143, 0.85) 0%, rgba(44, 140, 211, 0.7) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

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

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* About Page Styles */
.mission-values {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.mission-content p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.9;
}

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

.value-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--light-gray);
  border-radius: 10px;
  transition: all var(--transition-speed) ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.value-item h3 {
  font-size: 1.15rem;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.value-item p {
  font-size: 0.95rem;
  color: #666;
}

/* Story Section */
.story-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.team-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-speed) ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-card-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}

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

.team-card-info {
  padding: 1.5rem;
  text-align: center;
}

.team-card-info h3 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.team-card-info .title {
  font-size: 0.9rem;
  color: var(--secondary-blue);
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.team-card-info p {
  font-size: 0.9rem;
  color: #666;
}

/* Certifications Section */
.certifications {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.certifications-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.certification-item {
  text-align: center;
  padding: 1.5rem 2rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.certification-item h4 {
  font-size: 1rem;
  color: var(--primary-blue);
  margin-top: 0.75rem;
}

/* Services Page Styles */
.services-intro {
  padding: 5rem 0;
  background-color: var(--white);
  text-align: center;
}

.services-intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
}

.services-detailed {
  padding: 0 0 5rem;
}

.service-detail-item {
  padding: 4rem 0;
  border-bottom: 1px solid var(--light-gray);
}

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

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.service-detail-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.service-detail-text h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-detail-text > p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-benefits {
  list-style: none;
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #555;
}

.service-benefits li::before {
  content: '✓';
  color: var(--accent-yellow);
  font-weight: bold;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

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

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.step-item h4 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.step-item p {
  font-size: 0.95rem;
  color: #666;
}

/* Referral Page Styles */
.referral-intro {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.referral-intro-text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.referral-intro-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.referral-benefits {
  list-style: none;
}

.referral-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #555;
}

.referral-benefits li svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-yellow);
  flex-shrink: 0;
}

.referral-image img {
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Referral Form */
.referral-form-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 5px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  transition: all var(--transition-speed) ease;
  background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-blue);
  box-shadow: 0 0 0 3px rgba(44, 140, 211, 0.1);
}

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

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-submit .btn {
  min-width: 200px;
}

/* Referral Testimonial */
.referral-testimonial {
  padding: 5rem 0;
  background-color: var(--white);
  text-align: center;
}

.referral-testimonial blockquote {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--dark-gray);
  line-height: 1.8;
}

.referral-testimonial cite {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary-blue);
}

/* Referral CTA */
.referral-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  text-align: center;
  color: var(--white);
}

.referral-cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.referral-cta p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.referral-cta .phone-number {
  color: var(--white);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1.5rem;
}

/* Contact Page Styles */
.contact-info-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-info-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background-color: var(--light-gray);
  border-radius: 10px;
  transition: all var(--transition-speed) ease;
}

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

.contact-info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.contact-info-card h3 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 1rem;
  color: #555;
}

.contact-info-card a:hover {
  color: var(--primary-blue);
}

/* Contact Form Section */
.contact-form-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Map Section */
.map-section {
  padding: 0 0 5rem;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }
  
  .mobile-header {
    display: block;
  }
  
  .header {
    display: none;
  }
  
  .hero {
    margin-top: 70px;
  }
  
  .welcome-content,
  .why-choose-us-content,
  .referral-intro-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .services-grid,
  .cta-blocks-grid,
  .values-grid,
  .team-grid,
  .steps-grid,
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid,
  .cta-blocks-grid,
  .values-grid,
  .team-grid,
  .steps-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .testimonial-arrow {
    display: none;
  }
  
  .page-hero h1 {
    font-size: 2.25rem;
  }
  
  .form-container,
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .cta-blocks-grid {
    grid-template-columns: 1fr;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}
