:root {
      --primary: #c1121f;
      --primary-red: #c1121f;
      --primary-dark-red: #9b0d18;
      --accent-orange: #d9480f;
      --slate-dark: #22252a;
      --slate-light: #2d3139;
      --text-dark: #1f242e;
      --text-muted: #64748b;
      --bg-light: #f8fafc;
      --white: #ffffff;
      --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
      --card-hover-shadow: 0 20px 40px rgba(193, 18, 31, 0.12);
      --border-radius: 16px;
      --transition: all 0.3s ease;
    }

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

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background-color: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    ul {
      list-style: none;
    }
	
.eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: rgba(193, 18, 31, 0.09);
    color: #C21C1C;
    padding: 7px 14px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 18px;
}
	
.page-hero {
    padding: 150px 0 75px;
    background: linear-gradient(135deg, #fff1f2, #f6f8fb);
    text-align: center;
}
.page-hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
}
.page-hero p {
    color: var(--muted);
    max-width: 700px;
    margin: auto;
}

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    /* ================= BUTTONS ================= */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 28px;
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 50px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: var(--transition);
    }

    .btn-primary {
      background-color: var(--primary-red);
      color: var(--white);
      box-shadow: 0 6px 18px rgba(193, 18, 31, 0.25);
    }

    .btn-primary:hover {
      background-color: var(--primary-dark-red);
      transform: translateY(-3px);
      box-shadow: 0 10px 24px rgba(193, 18, 31, 0.35);
    }

    .btn-outline {
      border-color: var(--slate-dark);
      color: var(--slate-dark);
      background: transparent;
    }

    .btn-outline:hover {
      background-color: var(--slate-dark);
      color: var(--white);
      transform: translateY(-3px);
    }

    /* ================= SECTION HEADERS ================= */
    .section-header {
      text-align: center;
      margin-bottom: 55px;
    }

    .section-header span {
      display: inline-block;
      color: var(--primary-red);
      text-transform: uppercase;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }

    .section-header h2 {
      font-size: 2.3rem;
      font-weight: 800;
      color: var(--slate-dark);
    }

    .section-header p {
      color: var(--text-muted);
      max-width: 600px;
      margin: 10px auto 0;
      font-size: 1rem;
    }

    /* ================= NAVBAR ================= */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      z-index: 1000;
      padding: 14px 0;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
      transition: var(--transition);
    }
	.nav-links a.active {
    color: #c71b1f;
}

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

    .logo-box {
      display: flex;
      flex-direction: column;
    }

    .brand-logo-text {
      font-size: 1.9rem;
      font-weight: 800;
      line-height: 1;
      color: var(--primary-red);
      display: flex;
      align-items: center;
    }

    .brand-logo-text .dark-part {
      color: var(--slate-dark);
    }

    .brand-logo-text .it-tag {
      background: var(--slate-dark);
      color: #fff;
      font-size: 0.75rem;
      padding: 3px 6px;
      border-radius: 4px;
      margin-left: 6px;
      font-weight: 700;
      font-style: italic;
    }

    .brand-subtext {
      font-size: 0.65rem;
      font-weight: 700;
      color: var(--slate-dark);
      letter-spacing: 0.5px;
      margin-top: 3px;
    }

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

    .nav-links li a {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--slate-dark);
      position: relative;
    }

    .nav-links li a:hover {
      color: var(--primary-red);
    }

    .nav-links li a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0%;
      height: 2px;
      background: var(--primary-red);
      transition: var(--transition);
    }

    .nav-links li a:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      color: var(--slate-dark);
      cursor: pointer;
    }

    /* ================= HERO SECTION ================= */
    .hero {
      padding: 160px 0 100px;
      background: linear-gradient(135deg, #fff5f5 0%, #f8fafc 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: center;
      gap: 40px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: rgba(193, 18, 31, 0.08);
      color: var(--primary-red);
      border-radius: 30px;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .hero-title {
      font-size: 3.2rem;
      font-weight: 800;
      color: var(--slate-dark);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .hero-title span {
      color: var(--primary-red);
    }

    .hero-description {
      font-size: 1.1rem;
      color: var(--text-muted);
      margin-bottom: 30px;
      line-height: 1.7;
    }

    .hero-cta {
      display: flex;
      gap: 15px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .hero-stats-row {
      display: flex;
      gap: 30px;
      border-top: 1px solid #e2e8f0;
      padding-top: 25px;
    }

    .hero-stat-item h3 {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--slate-dark);
    }

    .hero-stat-item p {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .hero-image-wrapper {
      position: relative;
    }

    .hero-image-wrapper img {
      width: 100%;
      border-radius: var(--border-radius);
      box-shadow: var(--card-shadow);
      object-fit: cover;
    }

    .floating-card {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 16px 22px;
      border-radius: var(--border-radius);
      box-shadow: var(--card-shadow);
      display: flex;
      align-items: center;
      gap: 14px;
      border: 1px solid rgba(255, 255, 255, 0.5);
      animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .floating-card i {
      font-size: 2rem;
      color: var(--primary-red);
    }

    /* ================= SERVICES SECTION ================= */
    .services {
      padding: 100px 0;
      background: var(--white);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
      gap: 25px;
    }

    .service-card {
      background: var(--bg-light);
      padding: 35px 25px;
      border-radius: var(--border-radius);
      border: 1px solid #eef2f6;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-card:hover {
      background: var(--white);
      transform: translateY(-8px);
      box-shadow: var(--card-hover-shadow);
      border-color: rgba(193, 18, 31, 0.2);
    }

    .service-icon-box {
      width: 60px;
      height: 60px;
      background: rgba(193, 18, 31, 0.08);
      color: var(--primary-red);
      font-size: 1.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      margin-bottom: 22px;
      transition: var(--transition);
    }

    .service-card:hover .service-icon-box {
      background: var(--primary-red);
      color: var(--white);
    }

    .service-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--slate-dark);
      margin-bottom: 10px;
    }

    .service-card p {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ================= ABOUT SECTION ================= */
    .about {
      padding: 100px 0;
      background: linear-gradient(135deg, #1e2229 0%, #121418 100%);
      color: #fff;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .about-content h2 {
      font-size: 2.3rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .about-content h2 span {
      color: var(--primary-red);
    }

    .about-content p {
      color: #94a3b8;
      margin-bottom: 30px;
    }

    .feature-points {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .feature-box {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .feature-box i {
      color: var(--primary-red);
      font-size: 1.2rem;
      margin-top: 3px;
    }

    .feature-box h4 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .feature-box p {
      font-size: 0.85rem;
      color: #94a3b8;
      margin-bottom: 0;
    }

    /* ================= COUNTERS ================= */
    .counter-section {
      padding: 70px 0;
      background-color: var(--primary-red);
      color: #fff;
    }

    .counter-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .counter-box h3 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .counter-box p {
      font-size: 1rem;
      opacity: 0.95;
    }

    /* ================= CONTACT SECTION ================= */
    .contact {
      padding: 100px 0;
      background: var(--bg-light);
    }

    .contact-card-wrap {
      display: grid;
      grid-template-columns: 1fr 1.25fr;
      gap: 0;
      background: var(--white);
      border-radius: var(--border-radius);
      box-shadow: var(--card-shadow);
      overflow: hidden;
    }

    .contact-details {
      background: var(--slate-dark);
      color: #fff;
      padding: 50px 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .contact-details h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .contact-list {
      margin: 35px 0;
    }

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

    .contact-item i {
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.08);
      color: var(--primary-red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    .contact-item strong {
      display: block;
      font-size: 0.85rem;
      color: #94a3b8;
    }

    .contact-form-area {
      padding: 50px 40px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 8px;
      color: var(--slate-dark);
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      font-family: inherit;
      font-size: 0.95rem;
      transition: var(--transition);
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary-red);
      box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.12);
    }

    /* ================= FOOTER ================= */
    footer {
      background: #111317;
      color: #94a3b8;
      padding: 70px 0 25px;
    }

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

    .footer-col h4 {
      color: #fff;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .footer-col ul li {
      margin-bottom: 12px;
    }

    .footer-col ul li a:hover {
      color: var(--primary-red);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 25px;
      text-align: center;
      font-size: 0.85rem;
    }

    /* ================= FLOATING WHATSAPP BUTTON ================= */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #25d366;
      color: #fff;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
      z-index: 1000;
      transition: var(--transition);
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
      color: #fff;
    }

    /* ================= RESPONSIVE DESIGN ================= */
    @media (max-width: 992px) {
      .hero-grid, .about-grid, .contact-card-wrap {
        grid-template-columns: 1fr;
      }
      .hero-title {
        font-size: 2.5rem;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }
      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 25px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        display: none;
      }
      .nav-links.active {
        display: flex;
      }
      .feature-points {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }