:root {
      --primary: #1f2a44;
      --secondary: #334155;
      --accent: #7c3aed;
      --accent-2: #06b6d4;
      --accent-3: #f59e0b;
      --accent-4: #ec4899;
      --text: #1e293b;
      --muted: #64748b;
      --bg: #f8fbff;
      --bg-soft: #eef6ff;
      --white: #ffffff;
      --border: #dbe7f3;
      --shadow: 0 14px 40px rgba(31, 42, 68, 0.12);
      --radius: 20px;
      --max-width: 1200px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
	font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #f0f7ff, #fff6fb);
  line-height: 1.6;
}

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: min(92%, var(--max-width));
      margin: 0 auto;
    }

    .section {
      padding: 20px 0;
    }

    .section-title {
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      line-height: 1.15;
      margin-bottom: 14px;
      color: #009378;
    }

    .section-subtitle {
      color: #000000;
      max-width: 760px;
      margin-bottom: 15px;
      font-size: 1rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 24px;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: white;
      font-weight: 700;
      cursor: pointer;
      transition: 0.25s ease;
      box-shadow: 0 12px 26px rgba(124, 58, 237, 0.24);
    }

    .btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.03);
    }

    .btn-outline {
      background: rgba(255, 255, 255, 0.78);
      color: var(--primary);
      border: 1px solid var(--border);
      box-shadow: none;
      backdrop-filter: blur(10px);
    }

    .btn-outline:hover {
      background: white;
    }

    .topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, black, #06b6d4);
  backdrop-filter: blur(10px);
  border-bottom: none;
}
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 78px;
      gap: 18px;
    }

    .logo {
      font-size: 1.3rem;
      font-weight: 800;
      color: white;
      letter-spacing: 0.2px;
    }

    .logo span {
      color: #9affc6;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
    }

    .nav-links a {
      color: #ffffff;
      font-size: 0.96rem;
      font-weight: 600;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 11px 0 60px;
      background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.18), transparent 34%),
        radial-gradient(circle at right, rgba(6, 182, 212, 0.18), transparent 28%),
        radial-gradient(circle at bottom, rgba(245, 158, 11, 0.14), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 55%, #eef6ff 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: center;
      gap: 42px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.12));
      color: var(--accent);
      font-size: 0.92rem;
      padding: 10px 16px;
      border-radius: 999px;
      margin-bottom: 20px;
      font-weight: 700;
      border: 1px solid rgba(124, 58, 237, 0.12);
    }

    .hero h1 {
      font-size: clamp(2.4rem, 5vw, 4.6rem);
      line-height: 1.08;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .hero p {
      color: #000000;
      font-size: 1.05rem;
      max-width: 680px;
      margin-bottom: 24px;
    }

    .phone-box {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #ffffff, #f3f9ff);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 14px 18px;
      box-shadow: var(--shadow);
      margin-bottom: 28px;
      font-weight: 700;
      color: var(--primary);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .hero-menu {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .hero-menu span {
      background: white;
      border: 1px solid var(--border);
      color: var(--secondary);
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 600;
    }

    .hero-card {
      background: white;
      padding: 22px;
      border-radius: 28px;
      box-shadow: var(--shadow);
      position: relative;
      border: 1px solid rgba(226, 232, 240, 0.7);
    }

    .hero-image {
      width: 100%;
      height: 430px;
      object-fit: cover;
      border-radius: 22px;
    }

    .floating-badge {
      position: absolute;
      bottom: 64px;
      left: -18px;
      background: var(--white);
      border-radius: 18px;
      padding: 7px 9px;
      box-shadow: var(--shadow);
      max-width: 220px;
      border: 1px solid #00216c;
    }

    .floating-badge h4 {
      font-size: 1rem;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .floating-badge p {
      margin: 0;
      font-size: 0.92rem;
    }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .card {
      background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
      transition: 0.25s ease;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .card-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(6, 182, 212, 0.16));
      color: var(--accent);
      font-weight: 800;
      margin-bottom: 16px;
    }

    .card h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: var(--primary);
    }

    .card p {
      color: #000000;
      font-size: 0.96rem;
    }

    .content-block {
      background: linear-gradient(180deg, #ffffff 0%, #fdfcff 100%);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 10px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .content-block p + p {
      margin-top: 14px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .gallery-item {
      background: white;
      border: 1px solid var(--border);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    }

   .gallery-item img {
  width: 85%;
  max-height: 450px;
  object-fit: contain;
  margin: 10px auto;
  display: block;
  border-radius: 12px;
  cursor: pointer;
    }

    .gallery-item img:hover {
      transform: scale(1.03);
    }

    .gallery-content {
      padding: 18px;
    }

    .gallery-content h3 {
      margin-bottom: 12px;
      font-size: 1.06rem;
      color: var(--primary);
      text-align: center;
    }

    .review-btn {
      width: 100%;
      padding: 12px 14px;
      border: none;
      background: linear-gradient(135deg, var(--accent), var(--accent-4));
      color: white;
      border-radius: 14px;
      font-weight: 700;
      cursor: pointer;
    }

    .locations-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .location-btn {
      padding: 18px;
      border-radius: 18px;
      border: 1px solid var(--border);
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      cursor: pointer;
      font-size: 1rem;
      font-weight: 700;
      color: var(--secondary);
      box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
      transition: 0.25s ease;
    }

    .location-btn:hover {
      transform: translateY(-4px);
      border-color: rgba(37, 99, 235, 0.28);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 28px;
    }

    .step {
      background: white;
      border-radius: 22px;
      border: 1px solid var(--border);
      padding: 24px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    }

    .step-number {
      height: 44px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(245, 158, 11, 0.16));
      color: var(--accent);
      font-weight: 800;
      margin-bottom: 14px;
    }

    .benefits {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .benefit {
      background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 24px;
      box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: stretch;
    }

    .contact-card,
    .contact-form {
      background: white;
      border-radius: 26px;
      border: 1px solid var(--border);
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .contact-list {
      display: grid;
      gap: 14px;
      margin-top: 18px;
    }

    .contact-item {
      padding: 16px 18px;
      background: #f8fafc;
      border-radius: 16px;
      border: 1px solid var(--border);
    }

    .contact-form form {
      display: grid;
      gap: 14px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid var(--border);
      font-size: 1rem;
      outline: none;
    }

    .contact-form textarea {
      min-height: 140px;
      resize: vertical;
    }

    .floating-actions {
      position: fixed;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1001;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .floating-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      font-size: 1.35rem;
      font-weight: 800;
      box-shadow: var(--shadow);
    }

    .call-btn {
      background: linear-gradient(135deg, #2563eb, #06b6d4);
    }

    .whatsapp-btn {
      background: linear-gradient(135deg, #16a34a, #22c55e);
    }

    footer {
      background: linear-gradient(135deg, #1f2a44, #334155);
      color: rgba(255,255,255,0.92);
      padding: 28px 0;
      text-align: center;
      font-size: 0.95rem;
    }

    .modal {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.72);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
      z-index: 2000;
    }

    .modal.active {
      display: flex;
    }

    .modal-box {
      background: white;
      width: min(92vw, 900px);
      max-height: 90vh;
      overflow: auto;
      border-radius: 24px;
      position: relative;
      box-shadow: var(--shadow);
    }

    .modal-image {
      width: 100%;
      max-height: 90vh;
      object-fit: contain;
    }

    .modal-content {
      padding: 26px;
    }

    .close-modal {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 50%;
      background: rgba(15, 23, 42, 0.78);
      color: white;
      font-size: 1.2rem;
      cursor: pointer;
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .grid-4,
      .gallery-grid,
      .locations-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .steps,
      .benefits {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .navbar {
        flex-direction: column;
        padding: 14px 0;
      }

      .nav-links {
        justify-content: center;
      }

      .hero {
        padding-top: 46px;
      }

      .grid-4,
      .gallery-grid,
      .locations-grid {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 66px 0;
      }

      .content-block,
      .contact-card,
      .contact-form,
      .hero-card {
        padding: 22px;
      }

      .hero-image {
        height: 320px;
      }

      .floating-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
      }

      .floating-actions {
        right: 12px;
      }
    }