
:root {
  --primary: #6a1b9a;
  --primary-dark: #4a0f73;
  --accent: #f06292;
  --accent-dark: #e0487a;
  --bg-light: #f3e5f5;
  --text-dark: #212121;
  --text-muted: #777777;
  --success: #43a047;
  --danger: #c62828;
  --border-radius: 8px;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.08);
  --max-width: 1200px;
}


    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
      color: var(--text-dark);
      background: #ffffff;
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Layout helpers */
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 16px;
    }

    .btn {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
      text-align: center;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--accent);
      color: #ffffff;
      box-shadow: var(--shadow-soft);
    }

    .btn-primary:hover {
      background: var(--accent-dark);
      transform: translateY(-1px);
    }

    .btn-outline {
      background: transparent;
      color: #ffffff;
      border: 1px solid #ffffff;
    }

    .btn-outline:hover {
      background: #ffffff;
      color: var(--primary-dark);
    }

    .btn-secondary {
      background: #ffffff;
      color: var(--primary);
      border: 1px solid var(--primary);
    }

    .btn-secondary:hover {
      background: var(--primary);
      color: #ffffff;
    }

    .section {
      padding: 64px 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-header h2 {
      font-size: 2rem;
      margin-bottom: 8px;
    }

    .section-header p {
      color: var(--text-muted);
      max-width: 640px;
      margin: 0 auto;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
      backdrop-filter: blur(10px);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      gap: 16px;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 0.03em;
    }

    .logo span {
      color: var(--accent);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 0.95rem;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 2px;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.2s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 22px;
      height: 2px;
      background: var(--text-dark);
    }

    /* Hero */
    .hero {
      position: relative;
      color: #ffffff;
      min-height: 80vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: #000;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: -2;
      background: url("../images/hero.webp")
        center/cover no-repeat;
      filter: brightness(0.55);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(
        120deg,
        rgba(13, 71, 161, 0.85),
        rgba(8, 49, 111, 0.9)
      );
      mix-blend-mode: multiply;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 40px;
      align-items: center;
      padding: 72px 0 72px;
    }

    .hero-content h1 {
      font-size: clamp(2.4rem, 4vw, 3.1rem);
      margin-bottom: 16px;
    }

    .hero-content p {
      font-size: 1.05rem;
      max-width: 520px;
      margin-bottom: 24px;
      color: #e3f2fd;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 24px;
      font-size: 0.85rem;
    }

    .hero-badge {
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 18px;
    }

    .hero-note {
      font-size: 0.85rem;
      color: #bbdefb;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 24px;
      max-width: 420px;
    }

    .hero-stat {
      padding: 12px 14px;
      border-radius: var(--border-radius);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.18);
      font-size: 0.85rem;
    }

    .hero-stat strong {
      display: block;
      font-size: 1.05rem;
      margin-bottom: 4px;
    }

    .hero-form-card {
      background: #ffffff;
      color: var(--text-dark);
      border-radius: 16px;
      padding: 24px 22px;
      box-shadow: var(--shadow-soft);
    }

    .hero-form-card h3 {
      font-size: 1.25rem;
      margin-bottom: 6px;
    }

    .hero-form-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    .form-group {
      margin-bottom: 10px;
    }

    .form-group label {
      display: block;
      font-size: 0.85rem;
      margin-bottom: 4px;
      color: var(--text-muted);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 9px 10px;
      border-radius: 6px;
      border: 1px solid #d0d7e2;
      font-size: 0.9rem;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
      font-family: inherit;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 70px;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 2px rgba(13, 71, 161, 0.15);
    }

    .form-row {
      display: flex;
      gap: 8px;
    }

    .form-row .form-group {
      flex: 1;
    }

    .form-note {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 4px;
    }

    .form-success,
    .form-error {
      font-size: 0.85rem;
      margin-top: 6px;
      display: none;
    }

    .form-success {
      color: var(--success);
    }

    .form-error {
      color: var(--danger);
    }

    /* About */
    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 40px;
      align-items: center;
    }

    .about-text p {
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    .about-highlights {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .about-item {
      padding: 14px 14px 12px;
      border-radius: var(--border-radius);
      background: #ffffff;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
      font-size: 0.9rem;
    }

    .about-item-icon {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(13, 71, 161, 0.08);
      color: var(--primary);
      margin-bottom: 8px;
      font-size: 0.9rem;
    }

    .about-item h4 {
      font-size: 0.95rem;
      margin-bottom: 4px;
    }

    .about-media {
      position: relative;
    }

    .about-card-main {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .about-card-main img {
      height: 260px;
      width: 100%;
      object-fit: cover;
    }

    .about-badge {
      position: absolute;
      bottom: -14px;
      left: 16px;
      background: #ffffff;
      padding: 10px 14px;
      border-radius: 12px;
      box-shadow: var(--shadow-soft);
      font-size: 0.85rem;
    }

    .about-badge strong {
      display: block;
    }

    /* Services */
    .services {
      background: var(--bg-light);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 16px;
      margin-bottom: 24px;
    }

    .service-card {
      background: #ffffff;
      border-radius: var(--border-radius);
      padding: 14px 14px 12px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
      font-size: 0.9rem;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .service-icon {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 152, 0, 0.12);
      color: var(--accent-dark);
      font-size: 0.9rem;
      margin-bottom: 4px;
    }

    .service-card h4 {
      font-size: 0.95rem;
    }

    .services-footer {
      text-align: center;
      margin-top: 8px;
    }

    /* Why Choose Us */
    .why {
      background: #ffffff;
    }

    .why-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 40px;
      align-items: center;
    }

    .why-text p {
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    .why-list {
      display: grid;
      gap: 10px;
    }

    .why-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 0.95rem;
    }

    .why-icon {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: #e8f5e9;
      color: var(--success);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .why-item strong {
      display: block;
    }

    .why-highlight {
      padding: 16px;
      border-radius: 16px;
      background: linear-gradient(
        135deg,
        rgba(13, 71, 161, 0.07),
        rgba(255, 152, 0, 0.08)
      );
      border: 1px solid rgba(13, 71, 161, 0.12);
      font-size: 0.9rem;
    }

    /* Warranty */
    .warranty {
      background: var(--bg-light);
    }

    .warranty-inner {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .warranty-inner p {
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    /* Testimonials */
    .testimonials {
      background: #ffffff;
    }

    .testimonial-slider {
      max-width: 760px;
      margin: 0 auto;
      position: relative;
    }

    .testimonial-card {
      background: #ffffff;
      border-radius: var(--border-radius);
      padding: 20px 18px 16px;
      box-shadow: var(--shadow-soft);
      text-align: left;
      min-height: 160px;
    }

    .testimonial-quote {
      font-style: italic;
      font-size: 0.95rem;
      margin-bottom: 12px;
    }

    .testimonial-name {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--primary);
    }

    .testimonial-controls {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 10px;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .testimonial-buttons {
      display: flex;
      gap: 8px;
    }

    .testi-btn {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      border: 1px solid #d0d7e2;
      background: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 0.75rem;
      transition: all 0.15s ease;
    }

    .testi-btn:hover {
      background: var(--primary);
      color: #ffffff;
      border-color: var(--primary);
    }

    /* Contact and Newsletter */
    .contact {
      background: var(--bg-light);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 40px;
      align-items: flex-start;
    }

    .contact-text p {
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .contact-info-item {
      display: flex;
      gap: 10px;
      margin-bottom: 8px;
      font-size: 0.9rem;
    }

    .contact-info-label {
      font-weight: 600;
      min-width: 56px;
    }

    .contact-simple-form {
      margin-top: 14px;
      background: #ffffff;
      padding: 16px;
      border-radius: 12px;
      box-shadow: var(--shadow-soft);
    }

    .newsletter {
      background: #ffffff;
      border-radius: 16px;
      padding: 18px 18px 14px;
      box-shadow: var(--shadow-soft);
    }

    .newsletter h3 {
      font-size: 1.1rem;
      margin-bottom: 6px;
    }

    .newsletter p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .newsletter-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      margin-bottom: 8px;
    }

    .newsletter-checkbox {
      display: flex;
      align-items: flex-start;
      gap: 6px;
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .newsletter-checkbox input {
      margin-top: 2px;
    }

    .newsletter-success {
      font-size: 0.85rem;
      color: var(--success);
      display: none;
    }

    /* Footer */
    footer {
      background: #0b1220;
      color: #e0e7ff;
      padding-top: 32px;
    }

    .footer-top {
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.45);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.1fr);
      gap: 28px;
      font-size: 0.9rem;
    }

    .footer-logo {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .footer-logo span {
      color: var(--accent);
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .footer-links a {
      font-size: 0.9rem;
      color: #e5e7eb;
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    .footer-contact p {
      margin-bottom: 4px;
    }

    .footer-social {
      display: flex;
      gap: 8px;
      margin-top: 8px;
    }

    .social-icon {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.25);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      cursor: pointer;
      transition: background 0.15s ease, transform 0.15s ease;
    }

    .social-icon:hover {
      background: var(--accent);
      transform: translateY(-1px);
    }

    .footer-mini-form {
      display: flex;
      margin-top: 10px;
      gap: 6px;
    }

    .footer-mini-form input {
      flex: 1;
      padding: 7px 9px;
      border-radius: 999px;
      border: none;
      font-size: 0.85rem;
    }

    .footer-mini-form button {
      padding: 7px 12px;
      border-radius: 999px;
      border: none;
      background: var(--accent);
      color: #ffffff;
      font-size: 0.8rem;
      cursor: pointer;
    }

    .footer-bottom {
      padding: 10px 0 14px;
      text-align: center;
      font-size: 0.8rem;
      color: #9ca3af;
    }

    .footer-bottom a {
      color: #e5e7eb;
    }

    .footer-bottom a:hover {
      color: var(--accent);
    }

    /* Privacy & Terms modules (simple sections) */
    .legal-section {
      padding: 32px 0;
      font-size: 0.9rem;
      color: #e5e7eb;
      border-top: 1px solid rgba(148, 163, 184, 0.45);
      margin-top: 8px;
    }

    .legal-section h3 {
      font-size: 1rem;
      margin-bottom: 4px;
      color: #f9fafb;
    }

    /* Utility */
    .error {
      border-color: var(--danger) !important;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .hero-inner,
      .about-grid,
      .why-grid,
      .contact-grid,
      .footer-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        min-height: auto;
      }

      .hero-inner {
        padding-top: 48px;
      }

      .hero-form-card {
        max-width: 420px;
        margin: 0 auto;
      }

      nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 10px 16px 14px;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
      }

      nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-links {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-cta {
        justify-content: flex-start;
      }

      .menu-toggle {
        display: flex;
      }
    }

    @media (max-width: 640px) {
      .section {
        padding: 48px 0;
      }

      .hero-inner {
        gap: 28px;
      }

      .hero-content h1 {
        font-size: 2.1rem;
      }

      .hero-stats {
        grid-template-columns: minmax(0, 1fr);
      }

      .about-highlights {
        grid-template-columns: minmax(0, 1fr);
      }

      .services-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .form-row {
        flex-direction: column;
      }

      .newsletter-row {
        grid-template-columns: minmax(0, 1fr);
      }

      .footer-mini-form {
        flex-direction: column;
      }
    }
  