    :root {
      --navy: #071827;
      --navy-2: #0d263d;
      --blue: #1288ff;
      --cyan: #24d6c8;
      --mint: #e9fff9;
      --soft: #f4fbff;
      --white: #ffffff;
      --text: #0f172a;
      --muted: #64748b;
      --green: #12b981;
      --red: #ef4444;
      --shadow: 0 26px 80px rgba(7, 24, 39, 0.16);
      --radius: 28px;
      --transition: 0.28s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Tahoma, Arial, sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--soft);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.75;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    .container {
      width: min(1180px, 92%);
      margin: auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      border-radius: 999px;
      padding: 14px 25px;
      font-weight: 900;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-5px);
    }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      box-shadow: 0 18px 40px rgba(18, 136, 255, 0.28);
    }

    .btn-primary:hover {
      box-shadow: 0 24px 55px rgba(18, 136, 255, 0.38);
    }

    .btn-outline {
      color: var(--navy);
      background: rgba(255, 255, 255, 0.74);
      border: 1px solid rgba(18, 136, 255, 0.18);
    }

    .btn-dark {
      color: white;
      background: var(--navy);
    }

    .header {
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      z-index: 1000;
      background: rgba(244, 251, 255, 0.78);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      transition: var(--transition);
    }

    .header.scrolled {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    }

    .nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 17px;
      color: white;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      box-shadow: 0 14px 35px rgba(18, 136, 255, 0.24);
      font-size: 24px;
    }

    .brand small {
      display: block;
      color: var(--muted);
      font-size: 12px;
      letter-spacing: 1px;
    }

    .links {
      display: flex;
      gap: 26px;
      align-items: center;
      color: #334155;
      font-size: 15px;
      font-weight: 800;
    }

    .links a {
      position: relative;
      transition: var(--transition);
    }

    .links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 2px;
      background: var(--cyan);
      transition: var(--transition);
    }

    .links a:hover {
      color: var(--blue);
    }

    .links a:hover::after {
      width: 100%;
    }

    .menu-btn {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 16px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      color: var(--navy);
      background: white;
      font-size: 25px;
      cursor: pointer;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      align-items: center;
      padding: 135px 0 80px;
      overflow: hidden;
      background:
        radial-gradient(circle at 85% 14%, rgba(36, 214, 200, 0.22), transparent 32%),
        radial-gradient(circle at 12% 78%, rgba(18, 136, 255, 0.16), transparent 30%),
        linear-gradient(135deg, #f9fdff 0%, #eaf9ff 55%, #effff9 100%);
    }

    .hero::before {
      content: "PHARMACY";
      position: absolute;
      left: -18px;
      bottom: 0;
      font-size: clamp(70px, 15vw, 215px);
      font-weight: 900;
      color: rgba(7, 24, 39, 0.035);
      letter-spacing: 8px;
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 55px;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 999px;
      color: #047a70;
      background: rgba(36, 214, 200, 0.14);
      border: 1px solid rgba(36, 214, 200, 0.25);
      font-weight: 900;
      font-size: 14px;
      margin-bottom: 18px;
    }

    .hero h1 {
      font-size: clamp(42px, 6vw, 78px);
      line-height: 1.1;
      margin-bottom: 22px;
      letter-spacing: -1px;
      color: var(--navy);
    }

    .gradient-text {
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      max-width: 680px;
      color: #475569;
      font-size: 20px;
      margin-bottom: 30px;
    }

    .hero-actions,
    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .chip {
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.75);
      border: 1px solid rgba(15, 23, 42, 0.06);
      color: #334155;
      font-weight: 800;
      font-size: 14px;
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    }

    .hero-visual {
      position: relative;
      padding: 18px;
      border-radius: 38px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.9);
      box-shadow: var(--shadow);
    }

    .pharmacy-photo {
      min-height: 545px;
      border-radius: 30px;
      overflow: hidden;
      background:
        linear-gradient(to top, rgba(7,24,39,0.78), rgba(7,24,39,0.05)),
        url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?auto=format&fit=crop&w=1200&q=80') center/cover;
      display: flex;
      align-items: flex-end;
      padding: 26px;
    }

    .hero-glass {
      width: 100%;
      padding: 22px;
      border-radius: 24px;
      color: white;
      background: rgba(7, 24, 39, 0.74);
      border: 1px solid rgba(255,255,255,0.14);
      backdrop-filter: blur(14px);
    }

    .hero-glass h3 {
      font-size: 26px;
      margin-bottom: 5px;
    }

    .floating-card {
      position: absolute;
      top: 38px;
      left: -24px;
      width: 185px;
      padding: 18px;
      border-radius: 24px;
      background: white;
      color: var(--navy);
      box-shadow: 0 24px 55px rgba(15,23,42,.2);
      animation: float 4s ease-in-out infinite;
    }

    .floating-card strong {
      display: block;
      color: var(--green);
      font-size: 34px;
      line-height: 1;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }

    .section {
      padding: 92px 0;
      position: relative;
    }

    .section-white {
      background: white;
    }

    .section-head {
      max-width: 780px;
      margin: 0 auto 54px;
      text-align: center;
    }

    .section-head.left {
      text-align: left;
      margin: 0 0 24px;
    }

    .eyebrow {
      display: inline-block;
      color: #047a70;
      background: rgba(36, 214, 200, 0.12);
      border: 1px solid rgba(36, 214, 200, 0.23);
      border-radius: 999px;
      padding: 7px 15px;
      font-weight: 900;
      font-size: 14px;
      margin-bottom: 14px;
    }

    .section-head h2,
    .about-content h2 {
      font-size: clamp(30px, 4vw, 50px);
      line-height: 1.25;
      color: var(--navy);
      margin-bottom: 14px;
    }

    .section-head p,
    .about-content p {
      color: var(--muted);
      font-size: 17px;
    }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .category-card,
    .product-card,
    .service-card,
    .testimonial-card,
    .contact-card,
    .stat-card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      background: white;
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow: 0 18px 55px rgba(15, 23, 42, 0.07);
      transition: var(--transition);
    }

    .category-card:hover,
    .product-card:hover,
    .service-card:hover,
    .testimonial-card:hover,
    .contact-card:hover,
    .stat-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 26px 75px rgba(15, 23, 42, 0.12);
      border-color: rgba(18,136,255,.18);
    }

    .category-card {
      padding: 26px;
      text-align: center;
    }

    .icon {
      width: 62px;
      height: 62px;
      margin: 0 auto 16px;
      display: grid;
      place-items: center;
      border-radius: 21px;
      font-size: 29px;
      background: linear-gradient(135deg, rgba(18,136,255,.12), rgba(36,214,200,.16));
      border: 1px solid rgba(18,136,255,.12);
    }

    .category-card h3,
    .service-card h3,
    .product-card h3 {
      color: var(--navy);
      font-size: 21px;
      margin-bottom: 6px;
    }

    .category-card p,
    .service-card p,
    .product-card p,
    .testimonial-card p,
    .contact-card p {
      color: var(--muted);
      font-size: 15px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 50px;
      align-items: center;
    }

    .about-image {
      min-height: 480px;
      border-radius: 36px;
      background:
        linear-gradient(to top, rgba(7,24,39,.72), rgba(7,24,39,.05)),
        url('https://images.unsplash.com/photo-1579154204601-01588f351e67?auto=format&fit=crop&w=1200&q=80') center/cover;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .about-badge {
      position: absolute;
      right: 24px;
      bottom: 24px;
      left: 24px;
      border-radius: 24px;
      padding: 22px;
      color: white;
      background: rgba(7,24,39,.76);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(14px);
    }

    .check-list {
      display: grid;
      gap: 13px;
      margin: 26px 0 30px;
    }

    .check-list li {
      list-style: none;
      color: #334155;
      font-weight: 700;
      display: flex;
      gap: 10px;
    }

    .check-list li::before {
      content: "✓";
      flex: 0 0 25px;
      width: 25px;
      height: 25px;
      display: grid;
      place-items: center;
      color: white;
      background: var(--green);
      border-radius: 50%;
      font-weight: 900;
      margin-top: 3px;
    }

    .service-card {
      padding: 30px;
    }

    .service-card .icon {
      margin: 0 0 18px;
    }

    .product-card {
      padding: 18px;
    }

    .product-image {
      height: 220px;
      border-radius: 22px;
      background: linear-gradient(135deg, #e8f7ff, #eafff9);
      display: grid;
      place-items: center;
      font-size: 74px;
      margin-bottom: 18px;
    }

    .product-body {
      padding: 0 8px 10px;
    }

    .product-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }

    .price {
      color: var(--blue);
      font-size: 22px;
      font-weight: 900;
    }

    .pill {
      display: inline-flex;
      border-radius: 999px;
      padding: 6px 11px;
      color: #047a70;
      background: rgba(36,214,200,.12);
      font-size: 12px;
      font-weight: 900;
      margin: 14px 0;
    }

    .product-actions {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      margin-top: 16px;
    }

    .small-btn {
      border: 0;
      border-radius: 14px;
      padding: 11px 14px;
      cursor: pointer;
      font-weight: 900;
      transition: var(--transition);
    }

    .small-btn:hover {
      transform: translateY(-3px);
    }

    .order-btn {
      color: white;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
    }

    .cart-btn {
      color: var(--navy);
      background: #eaf6ff;
    }

    .banner {
      border-radius: 38px;
      padding: 42px;
      background:
        radial-gradient(circle at 88% 20%, rgba(36,214,200,.25), transparent 30%),
        linear-gradient(135deg, var(--navy), var(--navy-2));
      color: white;
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 30px;
      align-items: center;
    }

    .banner h2 {
      font-size: clamp(30px, 4vw, 50px);
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .banner p {
      color: #c9d9e8;
      margin-bottom: 24px;
    }

    .banner-card {
      padding: 26px;
      border-radius: 28px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(12px);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .stat-card {
      text-align: center;
      padding: 27px 14px;
    }

    .stat-card strong {
      display: block;
      color: var(--blue);
      font-size: 42px;
      line-height: 1.15;
    }

    .stat-card span {
      color: var(--muted);
      font-weight: 800;
      font-size: 14px;
    }

    .testimonial-card {
      padding: 30px;
    }

    .stars {
      color: #f59e0b;
      margin-bottom: 14px;
      font-size: 18px;
    }

    .testimonial-card h4 {
      margin-top: 18px;
      color: var(--navy);
      font-size: 18px;
    }

    .contact-section {
      background:
        radial-gradient(circle at 85% 15%, rgba(36,214,200,.17), transparent 30%),
        linear-gradient(135deg, #f9fdff, #eaf9ff);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 42px;
      align-items: start;
    }

    .contact-card {
      padding: 25px;
      margin-bottom: 16px;
    }

    .contact-card a,
    .contact-card p {
      direction: ltr;
      display: block;
    }

    .form-box {
      padding: 35px;
      border-radius: 34px;
      background: white;
      color: var(--text);
      box-shadow: var(--shadow);
    }

    .form-box h3 {
      font-size: 31px;
      color: var(--navy);
      margin-bottom: 7px;
    }

    .form-box > p {
      color: var(--muted);
      margin-bottom: 22px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      display: block;
      color: #263347;
      font-size: 14px;
      font-weight: 900;
      margin-bottom: 7px;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 13px 14px;
      border: 1px solid #dfe7f3;
      background: #fbfdff;
      border-radius: 16px;
      outline: none;
      color: #111827;
      transition: var(--transition);
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(18,136,255,.12);
      background: white;
    }

    input[type="tel"], input[type="email"] {
      direction: ltr;
      text-align: left;
    }

    .submit-btn {
      width: 100%;
      margin-top: 16px;
      border-radius: 18px;
    }

    .form-message {
      display: none;
      margin-top: 14px;
      color: var(--green);
      font-weight: 900;
    }

    .form-message.show {
      display: block;
    }

    .footer {
      background: var(--navy);
      color: #cbd5e1;
      padding: 42px 0;
      text-align: center;
    }

    .whatsapp-float,
    .back-top {
      position: fixed;
      z-index: 900;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 0;
      display: grid;
      place-items: center;
      cursor: pointer;
      box-shadow: 0 15px 38px rgba(15, 23, 42, 0.18);
      transition: var(--transition);
    }

    .whatsapp-float {
      right: 22px;
      bottom: 22px;
      color: white;
      background: #25d366;
      font-size: 25px;
    }

    .back-top {
      left: 22px;
      bottom: 22px;
      color: white;
      background: var(--navy);
      font-size: 22px;
      opacity: 0;
      pointer-events: none;
      transform: translateY(12px);
    }

    .back-top.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 0.85s ease, transform 0.85s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }

    .toast {
      position: fixed;
      right: 22px;
      bottom: 88px;
      z-index: 1200;
      padding: 14px 18px;
      border-radius: 16px;
      color: white;
      background: var(--navy);
      box-shadow: 0 16px 45px rgba(15,23,42,.22);
      transform: translateY(20px);
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
      font-weight: 800;
    }

    .toast.show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1020px) {
      .hero-grid,
      .about-grid,
      .banner,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        max-width: 640px;
        margin: auto;
      }

      .grid-4,
      .stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .grid-3 {
        grid-template-columns: repeat(2, 1fr);
      }

      .links,
      .nav > .btn {
        display: none;
      }

      .menu-btn {
        display: block;
      }

      .links.open {
        position: absolute;
        top: 78px;
        left: 4%;
        right: 4%;
        display: grid;
        gap: 0;
        padding: 10px;
        border-radius: 22px;
        background: rgba(255,255,255,.98);
        border: 1px solid rgba(15,23,42,.08);
        box-shadow: var(--shadow);
      }

      .links.open a {
        padding: 14px;
        border-radius: 14px;
      }

      .links.open a:hover {
        background: #edf8ff;
      }
    }

    @media (max-width: 680px) {
      .section {
        padding: 68px 0;
      }

      .hero {
        padding-top: 115px;
      }

      .hero h1 {
        font-size: 42px;
      }

      .hero p {
        font-size: 17px;
      }

      .hero-actions {
        display: grid;
      }

      .btn {
        width: 100%;
      }

      .pharmacy-photo {
        min-height: 410px;
      }

      .floating-card {
        display: none;
      }

      .grid-4,
      .grid-3,
      .stats,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .brand strong {
        font-size: 15px;
      }

      .brand small {
        font-size: 10px;
      }

      .form-box,
      .banner {
        padding: 24px;
      }
    }