  :root {
      --primary-color: #2c4964;
      --secondary-color: #1977cc;
      --accent-color: #28a745;
      --text-color: #444444;
      --light-bg: #f8f9fa;
      --light-gray: #f7f8fc;
      --medium-gray: #e8ebf0;
      --blue-tint: #f0f4f8;
  }

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

  body {
      font-family: 'Montserrat', sans-serif;
      line-height: 1.6;
      color: #333;
      overflow-x: hidden;
  }

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

  /* Top Bar */
  .top-bar {
      background: var(--primary-color);
      color: white;
      padding: 10px 0;
      font-size: 12px;
  }

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

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

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

  .info-item i {
      color: var(--secondary-color);
      font-size: 11px;
  }

  /* Navbar */
  .navbar {
      position: sticky;
      top: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
      z-index: 100;
  }

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

  .logo {
      font-size: 28px;
      font-weight: 600;
      color: var(--primary-color);
      text-decoration: none;
  }

  .nav-links {
      display: flex;
      list-style: none;
      gap: 30px;
  }

  .nav-links a {
      text-decoration: none;
      color: var(--primary-color);
      font-weight: 500;
      transition: color 0.3s;
  }

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

  /* Hero Section */
  .hero {
      position: relative;
      min-height: 80vh;
      background: linear-gradient(135deg, rgba(44, 73, 100, 0.9) 0%, rgba(25, 119, 204, 0.8) 100%),
          url('assets/hero-bg.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      overflow: hidden;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 70% 30%, rgba(25, 119, 204, 0.3) 0%, transparent 50%);
      animation: float 6s ease-in-out infinite;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0px) rotate(0deg);
      }

      50% {
          transform: translateY(-10px) rotate(2deg);
      }
  }

  .hero-content {
      max-width: 900px;
      padding: 60px 20px;
      position: relative;
      z-index: 2;
  }

  .hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      animation: slideInUp 1s ease-out;
  }

  .hero h2 {
      font-size: 1.3rem;
      line-height: 1.8;
      margin-bottom: 30px;
      font-weight: 400;
      opacity: 0.95;
      animation: slideInUp 1s ease-out 0.3s both;
  }

  @keyframes slideInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 30px 0;
      animation: slideInUp 1s ease-out 0.6s both;
  }

  .btn {
      display: inline-block;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      overflow: hidden;
  }

  .btn-primary {
      background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
      color: white;
      box-shadow: 0 4px 15px rgba(25, 119, 204, 0.3);
  }

  .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(25, 119, 204, 0.4);
  }

  .hero-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 50px;
      animation: slideInUp 1s ease-out 0.9s both;
  }

  .feature {
      text-align: center;
      padding: 20px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: transform 0.3s ease;
  }

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

  .feature i {
      font-size: 2.5rem;
      color: var(--accent-color);
      margin-bottom: 15px;
  }

  /* Section Backgrounds */
  .section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  /* About Section - Subtle Light Background */
  #about {
      background: linear-gradient(135deg, #f7f8fc 0%, #f0f4f8 100%) !important;
      position: relative;
  }

  #about::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image:
          radial-gradient(circle at 20% 80%, rgba(25, 119, 204, 0.04) 0%, transparent 50%);
      z-index: 1;
  }

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

  /* Services Section - Clean White with Subtle Pattern */
  #services {
      background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
      position: relative;
  }

  #services::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
          radial-gradient(circle at 25% 25%, rgba(44, 73, 100, 0.03) 0%, transparent 50%),
          radial-gradient(circle at 75% 75%, rgba(25, 119, 204, 0.02) 0%, transparent 50%);
      z-index: 1;
  }

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

  #services h2 {
      color: var(--primary-color);
  }

  #services h2::after {
      background: var(--secondary-color);
  }

  /* Treatments Section - Darker Blue-Gray */
  #treatments {
      background: linear-gradient(135deg, #e1e8ed 0%, #d4dde4 100%) !important;
      position: relative;
  }

  #treatments::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background:
          radial-gradient(circle, rgba(44, 73, 100, 0.04) 1px, transparent 1px);
      background-size: 50px 50px;
      animation: subtleMove 30s linear infinite;
      z-index: 1;
  }

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

  #treatments h2 {
      color: var(--primary-color);
  }

  #treatments h2::after {
      background: var(--secondary-color);
  }

  /* Section Headers */
  .section h2 {
      font-size: 2.5rem;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      padding-bottom: 15px;
      font-weight: 700;
  }

  .section h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--secondary-color);
      border-radius: 2px;
  }

  /* Cards */
  .services-grid,
  .treatments-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 20px;
  }

  .service-card,
  .treatment-item {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.6);
  }

  .service-card:hover,
  .treatment-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  .service-icon,
  .treatment-icon {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      padding: 30px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .service-icon::before,
  .treatment-icon::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
      transform: rotate(45deg);
      animation: subtleShine 4s infinite;
  }

  @keyframes subtleShine {
      0% {
          transform: translateX(-100%) translateY(-100%) rotate(45deg);
      }

      50% {
          transform: translateX(100%) translateY(100%) rotate(45deg);
      }

      100% {
          transform: translateX(-100%) translateY(-100%) rotate(45deg);
      }
  }

  .service-icon i,
  .treatment-icon i {
      font-size: 40px;
      color: #fff;
      position: relative;
      z-index: 2;
  }

  .service-content,
  .treatment-content {
      padding: 30px;
      color: var(--text-color);
  }

  .service-content h3,
  .treatment-content h3 {
      color: var(--primary-color);
      margin-bottom: 15px;
      font-size: 1.5rem;
      font-weight: 600;
  }

  .service-features,
  .treatment-features {
      list-style: none;
      padding: 0;
      margin-top: 20px;
  }

  .service-features li,
  .treatment-features li {
      padding: 8px 0;
      padding-left: 25px;
      position: relative;
      font-size: 0.9rem;
  }

  .service-features li::before,
  .treatment-features li::before {
      content: '✓';
      color: var(--accent-color);
      position: absolute;
      left: 0;
      font-weight: bold;
      font-size: 1.1rem;
  }

  /* About Section */
  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
  }

  .about-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

  .about-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(25, 119, 204, 0.2), rgba(44, 73, 100, 0.1));
      z-index: 1;
  }

  .about-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
  }

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

  .about-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--text-color);
      margin-bottom: 30px;
  }

  .credentials {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }

  .credential-item {
      text-align: center;
      padding: 25px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.5);
      transition: transform 0.3s ease;
  }

  .credential-item:hover {
      transform: translateY(-3px);
  }

  .credential-item .number {
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--secondary-color);
      display: block;
      line-height: 1;
      margin-bottom: 8px;
  }

  /* Contact Section */
  #contact {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      position: relative;
  }

  #contact::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
          radial-gradient(circle at 30% 20%, rgba(25, 119, 204, 0.05) 0%, transparent 50%),
          radial-gradient(circle at 70% 80%, rgba(44, 73, 100, 0.03) 0%, transparent 50%);
      z-index: 1;
  }

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

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

  .contact-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
  }

  .contact-card {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 15px;
      padding: 25px 20px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.6);
      transition: all 0.3s ease;
      backdrop-filter: blur(5px);
  }

  .contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  .contact-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      position: relative;
      overflow: hidden;
  }

  .contact-icon::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transform: rotate(45deg);
      animation: subtleShine 4s infinite;
  }

  .contact-icon i {
      font-size: 24px;
      color: white;
      position: relative;
      z-index: 2;
  }

  .contact-content h3 {
      font-size: 1.2rem;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: 600;
  }

  .contact-content p {
      color: var(--text-color);
      margin: 0;
      line-height: 1.5;
  }

  .contact-content a {
      color: var(--secondary-color);
      text-decoration: none;
      font-weight: 500;
  }

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

  .availability {
      display: block;
      font-size: 0.85rem;
      color: var(--accent-color);
      margin-top: 5px;
      font-weight: 500;
  }

  /* Map Container */
  .map-container {
      position: relative;
  }

  .map-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      background: white;
      border: 1px solid rgba(255, 255, 255, 0.6);
  }

  .map-overlay {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.95);
      padding: 15px 20px;
      border-radius: 50px;
      z-index: 10;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .map-info {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--primary-color);
      font-weight: 600;
      font-size: 0.9rem;
  }

  .map-info i {
      color: var(--secondary-color);
      font-size: 16px;
  }

  .map-wrapper iframe {
      width: 100%;
      height: 500px;
      border: none;
      display: block;
      transition: filter 0.3s ease;
  }

  .map-wrapper:hover iframe {
      filter: saturate(1.1) brightness(1.05);
  }

  /* CTA Section */
  .cta-section {
      text-align: center;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
      padding: 50px 40px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(10px);
  }

  .cta-section h3 {
      font-size: 2rem;
      color: var(--primary-color);
      margin-bottom: 15px;
      font-weight: 600;
  }

  .cta-section p {
      font-size: 1.1rem;
      color: var(--text-color);
      margin-bottom: 30px;
      opacity: 0.9;
  }

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

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

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

  /* Responsive Design for Contact */
  @media (max-width: 768px) {
      .contact-grid {
          grid-template-columns: 1fr;
          gap: 40px;
          margin-bottom: 40px;
      }

      .contact-cards {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .map-wrapper iframe {
          height: 300px;
      }

      .cta-section {
          padding: 30px 20px;
      }

      .cta-section h3 {
          font-size: 1.5rem;
      }

      .cta-buttons {
          flex-direction: column;
          align-items: center;
      }

      .btn {
          width: 100%;
          max-width: 280px;
      }
  }

  footer {
      background: linear-gradient(135deg, var(--primary-color) 0%, #1a365d 100%);
      color: white;
      padding: 60px 0 20px;
      position: relative;
  }

  footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      opacity: 0.5;
  }

  .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 50px;
      margin-bottom: 40px;
      position: relative;
      z-index: 2;
  }

  .footer-info h3 {
      font-size: 24px;
      margin-bottom: 20px;
      color: #fff;
  }

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

  .footer-contact .contact-item i {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
  }

  .footer-bottom {
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      position: relative;
      z-index: 2;
  }

  /* WhatsApp Button */
  .whatsapp-fixed {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: white;
      border-radius: 50px;
      padding: 15px 25px;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
      z-index: 9999;
      transition: all 0.3s ease;
  }

  .whatsapp-fixed:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  }

  .whatsapp-fixed i {
      font-size: 24px;
  }

  /* Animations */
  .fade-in-up {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
  }

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

  .delay-1 {
      transition-delay: 0.2s;
  }

  .delay-2 {
      transition-delay: 0.4s;
  }

  .delay-3 {
      transition-delay: 0.6s;
  }

  .delay-4 {
      transition-delay: 0.8s;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .navbar {
          display: none;
      }

      .top-bar {
          display: none;
      }

      .hero h1 {
          font-size: 2.2rem;
      }

      .hero-features {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .services-grid,
      .treatments-list {
          grid-template-columns: 1fr;
          max-width: 400px;
          margin: 0 auto;
      }

      .about-grid {
          grid-template-columns: 1fr;
          gap: 30px;
      }

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

      .section {
          padding: 60px 0;
      }

      .whatsapp-fixed {
          padding: 0;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          justify-content: center;
      }

      .whatsapp-fixed span {
          display: none;
      }

      .whatsapp-fixed i {
          font-size: 28px;
      }

      .credentials {
          grid-template-columns: 1fr;
      }
  }