/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #007BCC;
  --light-blue: #E6F2FD;
  --yellow: #FFD700;
  --white: #FFFFFF;
  --black: #000000;
  --gray: #666666;
  --light-gray: #F8F9FA;
  --green: #25D366;
}

html, body {
  height: 100%;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  scroll-behavior: smooth;
}

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

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

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

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

.brand-logo {
  height: 70px;
  width: auto;
  max-width: 300  px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 14px;
}

.nav a:hover {
  color: var(--gray);
}

.btn-appointment {
  background: transparent;
  border: 1px solid var(--light-blue);
  color: var(--primary-blue);
  padding: 4px 12px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 2px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 80px 0 80px;
  background: var(--white);
  position: relative;
  background-image: url('../images/hero_section_image.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

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

.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.highlight {
  font-family: Arial Black, Arial, sans-serif;
  font-weight: 900;
  color: #c7ebff;
  text-shadow:
    2px 2px 0px #004b74,
    4px 4px 8px rgba(0, 0, 0, 0.8),
    0 0 20px #93d9ff(255, 215, 0, .1);
  letter-spacing: 1px;
}

.hero-text p {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.benefits {
  margin: 30px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.check {
  font-size: 18px;
}

.cta-section {
  margin-top: 30px;
}

.contact-info {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.phone-link {
  color: #66c4ff;
  text-decoration: none;
  font-weight: 600;
}

.phone-link:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(45deg, #FF6B35, #FF8C42, #FF6B35);
  background-size: 200% 200%;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  animation: pulseOrange 1.5s infinite;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 8s infinite ease-in-out;
  transform: rotate(135deg);
}

.btn-primary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 123, 204, 0.5);
  animation: none;
}

.btn-primary:hover::before {
  left: 100%;
}

/* Hero Image */
.hero-image {
  position: relative;
}

.image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 2;
  position: relative;
  border: 5px solid var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 20px;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--light-blue);
  top: 20px;
  right: 20px;
}

.shape-2 {
  width: 100px;
  height: 100px;
  background: #50B8F0;
  border-radius: 50%;
  bottom: 50px;
  left: 50px;
}

/* Why Choose Us Section */
.why-choose {
  padding: 80px 0;
  background: var(--light-gray);
}

.why-choose h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 50px;
}

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

.reason-item {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.reason-item:hover {
  transform: translateY(-5px);
}

.reason-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.reason-item h3 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.reason-item p {
  color: var(--gray);
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
}

.how-it-works h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 50px;
}

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

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

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.step p {
  color: var(--gray);
  line-height: 1.6;
}

/* Testimonial Section */
.testimonial {
  padding: 80px 0;
  background: var(--light-gray);
}

.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quote {
  font-size: 60px;
  color: var(--primary-blue);
  position: absolute;
  top: 20px;
  left: 30px;
  opacity: 0.3;
}

.testimonial-card p {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--white);
}

.services h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--light-blue);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 15px;
}

.pricing-info {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
}

.pricing-info h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

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

.pricing-info li {
  color: var(--gray);
  margin-bottom: 10px;
  font-size: 16px;
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background: var(--light-gray);
}

.gallery h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.gallery > p {
  text-align: center;
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 50px;
}

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

.gallery-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-caption {
  padding: 20px;
  color: var(--gray);
  font-size: 14px;
  text-align: center;
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.about-text h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin: 30px 0 15px;
}

.about-text p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text ul {
  margin: 20px 0;
  padding-left: 20px;
}

.about-text li {
  color: var(--gray);
  margin-bottom: 10px;
  line-height: 1.6;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: var(--light-gray);
}

.pricing h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.pricing > p {
  text-align: center;
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.pricing-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
}

.pricing-note {
  text-align: center;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 40px;
}

.payment-methods, .discounts {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.payment-methods h3, .discounts h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.payment-methods ul, .discounts ul {
  list-style: none;
  padding: 0;
}

.payment-methods li, .discounts li {
  color: var(--gray);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.payment-methods li::before, .discounts li::before {
  content: "•";
  color: var(--primary-blue);
  position: absolute;
  left: 0;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: var(--white);
}

.faq h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 50px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.faq-item p {
  color: var(--gray);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--light-gray);
}

.testimonials h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 50px;
}

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

.testimonials .testimonial-card {
  margin: 0;
  padding: 30px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--white);
}

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

.contact-text h2 {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.contact-text p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-info h3 {
  font-size: 20px;
  color: var(--primary-blue);
  margin: 30px 0 15px;
}

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

.contact-info li {
  color: var(--gray);
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin-bottom: 30px;
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-logo {
  height: 60px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 20px;
}

.footer-contact p {
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 10px;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column a {
  display: block;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 8px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-column a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  opacity: 0.8;
}

/* WhatsApp Floating Button */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-fab svg {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
}

.whatsapp-fab:hover {
  background: #1eb854;
  transform: scale(1.1);
}

.whatsapp-fab:hover svg {
  transform: translate(-50%, -50%);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

@keyframes pulseOrange {
  0% {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.8);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transform: scale(1);
  }
}

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

/* Section Backgrounds */
.section-blue {
  background: var(--primary-blue);
  color: var(--white);
}

.section-blue h2,
.section-blue h3,
.section-blue h4,
.section-blue h5,
.section-blue h6 {
  color: var(--white);
}

.section-blue p {
  color: var(--white);
  opacity: 0.9;
}

.section-blue .reason-item,
.section-blue .about-text,
.section-blue .faq-item {
  color: var(--white);
}

/* Cards in blue sections */
.section-blue .reason-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.section-blue .reason-item h3 {
  color: var(--white);
}

.section-blue .reason-item p {
  color: var(--white);
  opacity: 0.9;
}

.section-blue .reason-icon {
  color: var(--yellow);
}

/* FAQ items in blue sections */
.section-blue .faq-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

.section-blue .faq-item h3 {
  color: var(--white);
}

.section-blue .faq-item p {
  color: var(--white);
  opacity: 0.9;
}

/* About section cards */
.section-blue .about-text {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.section-blue .about-text h2 {
  color: var(--white);
}

.section-blue .about-text p {
  color: var(--white);
  opacity: 0.9;
}

/* Lists and other text elements in blue sections */
.section-blue ul,
.section-blue ol,
.section-blue li {
  color: var(--white);
}

.section-blue li {
  color: var(--white);
  opacity: 0.9;
}

.section-blue strong {
  color: var(--white);
  opacity: 1;
}

.section-blue .highlight {
  color: var(--yellow);
  text-shadow: 2px 2px 0px #B8860B, 4px 4px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 20px;
    z-index: 1001;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  .nav.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav a {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 25px;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 2px 0;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  
  .nav a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateX(5px);
  }
  
  .nav a:last-child {
    border-bottom: none;
  }
  
  .btn-appointment {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 32px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-content {
    padding: 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-table {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-text h1 {
    font-size: 28px;
  }
  
  .hero-img {
    width: 250px;
    height: 250px;
  }
  
  .shape-1 {
    width: 150px;
    height: 150px;
  }
  
  .shape-2 {
    width: 80px;
    height: 80px;
  }
  
  .header-content {
    padding: 0 15px;
  }
  
  .nav {
    gap: 15px;
  }
  
  .nav a {
    font-size: 25px;
  }
  
  .brand-logo {
    height: 80px;
  }
  
  .footer-logo {
    height: 50px;
  }
}