 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    /* FONT VARIABLES - Passion One as accent */
    :root {
      --brand: #C9A227;
      --brand-light: #e0b544;
      --brand-dark: #a87e1f;
      
      /* Font families - Passion One for accent */
      --font-headers: 'Racing Sans One', cursive;      /* Headers only */
      --font-body: 'Rajdhani', sans-serif;             /* Body text everywhere */
      --font-accent: 'Passion One', cursive;           /* Accents, tags, buttons - changed to Passion One */
      
      /* Light mode */
      --bg-primary: #ffffff;
      --bg-secondary: #f8f8f8;
      --bg-card: #fbfbfb;
      --bg-special: #f2f2f2;
      --bg-performance: #f5f5f5;
      --text-primary: #1e1e1e;
      --text-secondary: #444;
      --text-muted: #666;
      --border-light: #f0f0f0;
      --border-card: #efefef;
      --card-hover: rgba(201,162,39,0.15);
      --nav-link: #2e2e2e;
      --footer-bg: #111111;
      --footer-text: #ddd;
      --footer-border: #333;
      --hero-gradient: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
      --malco-badge-bg: #1a1a1a;
      --malco-badge-text: white;
      --map-bg: linear-gradient(145deg, #dad5c5, #f0ead8);
      --address-block-bg: #fbfbfb;
      --instagram-handle-bg: #fff;
      --instagram-handle-border: #ddd;
      --spec-item-bg: white;
      --mobile-menu-bg: rgba(0,0,0,0.95);
    }

    /* Dark mode */
    body.dark-mode {
      --bg-primary: #0a0f1a;
      --bg-secondary: #141c2c;
      --bg-card: #1e2a3a;
      --bg-special: #0f172a;
      --bg-performance: #111b2b;
      --text-primary: #e0e0e0;
      --text-secondary: #b0b0b0;
      --text-muted: #888888;
      --border-light: #2a3440;
      --border-card: #2a3a4a;
      --card-hover: rgba(201,162,39,0.25);
      --nav-link: #d0d0d0;
      --footer-bg: #030711;
      --footer-text: #a0a0a0;
      --footer-border: #1f2a3a;
      --hero-gradient: linear-gradient(145deg, #0f172a 0%, #1a2538 100%);
      --malco-badge-bg: #1e2a3a;
      --malco-badge-text: #f0f0f0;
      --map-bg: linear-gradient(145deg, #1a2a3a, #2a3a4a);
      --address-block-bg: #1e2a3a;
      --instagram-handle-bg: #2a3a4a;
      --instagram-handle-border: #3a4a5a;
      --spec-item-bg: #1e2a3a;
      --mobile-menu-bg: rgba(10,15,26,0.98);
    }

    body {
      background-color: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.5;
      transition: background-color 0.3s ease, color 0.3s ease;
      font-family: var(--font-body);  /* Rajdhani for ALL body text */
      font-weight: 400;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* HEADER FONT - Racing Sans One for all headings */
    h1, h2, h3, h4, h5, h6,
    .section-title,
    .brand-name,
    .card-header h3,
    .performance-content h3,
    .address-block h4,
    .footer-logo,
    .hero-title 
    {
      font-family: var(--font-headers);  /* Racing Sans One */
      letter-spacing: 0.5px;
      font-weight: 400;  /* Racing Sans One only has regular weight */
      text-transform: uppercase;
    }

    /* ACCENT FONT - Passion One for special elements */
    .hero-badge,
    .malco-note,
    .performance-tag,
    .spec-item,
    .nav-links a,
    .contact-top,
    .theme-toggle .toggle-icon,
    .image-label,
    .malco-footer-tag,
    .stat-item,
    .btn, button,
    .social-handle,
    .tagline-header,
    .malco-hero-badge,
    .copyright,
    .mobile-menu a,
    .book-now-btn {
      font-family: var(--font-accent);  /* Passion One */
      font-weight: 700;  /* Passion One has bold weights */
      letter-spacing: 0.5px;
    }

    /* BODY FONT - Rajdhani is default on body, but ensure these */
    p, li, .service-sublist li, .hero-desc,
    .section-sub, .performance-content p,
    .address-block p, .footer-col p {
      font-family: var(--font-body);  /* Rajdhani */
      font-weight: 400;
    }

    .section-title {
      font-size: 2.4rem;
      margin-bottom: 16px;
      position: relative;
      color: var(--text-primary);
    }
    .section-title:after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--brand);
      margin-top: 10px;
    }

    .section-sub {
      color: var(--text-muted);
      font-size: 1.2rem;
      max-width: 700px;
      margin-bottom: 30px;
    }

    /* theme toggle */
    .theme-toggle {
      display: flex;
      align-items: center;
      margin-left: 20px;
      cursor: pointer;
    }
    .theme-toggle .toggle-icon {
      background: var(--bg-card);
      border-radius: 30px;
      padding: 5px 12px;
      border: 1px solid var(--brand);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .theme-toggle .fa-sun { color: #f39c12; }
    .theme-toggle .fa-moon { color: #7f8c8d; }
    body.dark-mode .theme-toggle .fa-sun { color: #7f8c8d; }
    body.dark-mode .theme-toggle .fa-moon { color: #f1c40f; }

    /* navbar */
    .navbar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
      border-bottom: 2px solid var(--border-light);
      background: var(--bg-primary);
      position: sticky;
      top: 0;
      z-index: 100;
      transition: background-color 0.3s ease;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo-icon {
      font-size: 2.4rem;
      color: var(--brand);
    }

    .brand-name {
      font-size: 2.2rem;
      color: var(--text-primary);
      padding-left: 1.2rem;
    }

    .brand-name span {
      color: var(--brand);
    }

    .tagline-header {
      font-size: 1rem;
      color: var(--brand);
      /*color: var(--text-muted);*/
      text-transform: uppercase;
      padding-bottom: 1rem;
    }

    /* Desktop Navigation */
    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--nav-link);
      font-size: 1.2rem;
      transition: color 0.2s;
      cursor: pointer;
      text-transform: uppercase;
    }

    .nav-links a:hover {
      color: var(--brand);
    }

    /* Mobile Menu Styles - Menu on RIGHT side */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 6px;
      z-index: 101;
    }

    .hamburger span {
      width: 30px;
      height: 4px;
      background: var(--brand);
      border-radius: 4px;
      transition: 0.3s;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      right: -100%;  /* Start off-screen to the right */
      width: 70%;
      height: 100vh;
      background: var(--mobile-menu-bg);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 100px 40px;
      transition: right 0.3s ease;  /* Slide from right */
      flex-direction: column;
      gap: 30px;
    }

    .mobile-menu.active {
      right: 0;  /* Slide in from right */
    }

    .mobile-menu a {
      color: white;
      text-decoration: none;
      font-size: 2rem;
      text-transform: uppercase;
      border-bottom: 2px solid var(--brand);
      padding-bottom: 10px;
      width: fit-content;
    }

    .mobile-menu .theme-toggle {
      margin-left: 0;
      margin-top: 20px;
    }

    .mobile-menu .theme-toggle .toggle-icon {
      background: rgba(255,255,255,0.1);
      border-color: var(--brand);
    }

    .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0,0,0,0.5);
      z-index: 999;
    }

    .overlay.active {
      display: block;
    }

    /* top bar */
    .contact-top {
      background: var(--bg-secondary);
      padding: 10px 0;
      font-size: 1.1rem;
      border-bottom: 1px solid var(--border-light);
      text-transform: uppercase;
    }

    .contact-top .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-primary);
    }

    .contact-item i {
      color: var(--brand);
    }

    .contact-item a {
      color: var(--text-primary);
      text-decoration: none;
      transition: color 0.2s;
    }

    .contact-item a:hover {
      color: var(--brand);
    }

    .social-handle {
      background: var(--instagram-handle-bg);
      padding: 6px 16px;
      border-radius: 40px;
      border: 1px solid var(--instagram-handle-border);
      transition: all 0.2s;
      display: inline-block;
      color: var(--text-primary);
      text-transform: uppercase;
      font-size: 1.1rem;
      text-decoration: none;
    }
    .social-handle:hover {
      color: var(--brand);
      
    }

    .clickable-link {
      cursor: pointer;
      transition: color 0.2s;
      color: var(--text-primary);
      text-decoration: none;
    }
    .clickable-link:hover {
      color: var(--brand);
    }

    /* MALCO Showcase (now moved above hero) */
    .malco-showcase {
      background: linear-gradient(135deg, #0a0f1a 0%, #1a2538 100%);
      color: white;
      padding: 110px 0;
      position: relative;
      overflow: hidden;
    }
    .malco-showcase:before {
      content: "MALCO";
      font-size: 12rem;
      font-weight: 900;
      position: absolute;
      right: -30px;
      bottom: -50px;
      color: rgba(201,162,39,0.03);
      letter-spacing: 15px;
      font-family: var(--font-headers);
    }
    .malco-grid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 50px;
    }
    .malco-logo-large i {
      font-size: 7rem;
      color: var(--brand);
      padding-left: 6rem;
      filter: drop-shadow(0 0 15px rgba(201,162,39,0.5));
    }
    .malco-logo-large h2 {
      font-size: 3.5rem;
      color: var(--brand);
    }
    .malco-quote {
      flex: 1;
      font-size: 1.8rem;
      line-height: 1.4;
      border-left: 6px solid var(--brand);
      padding-left: 30px;
      font-family: var(--font-body);
      font-weight: 600;
    }
    .malco-quote strong {
      color: var(--brand);
      font-size: 2.4rem;
      font-family: var(--font-headers);
    }
    .book-now-btn {
      flex: 0 0 auto;
      background: var(--brand);
      color: black;
      border: none;
      padding: 16px 36px;
      font-size: 1.5rem;
      border-radius: 60px;
      cursor: pointer;
      transition: 0.3s;
      text-transform: uppercase;
      letter-spacing: 2px;
      border: 2px solid var(--brand);
      white-space: nowrap;
      text-decoration: none;
      display: inline-block;
    }
    .book-now-btn:hover {
      background: transparent;
      color: var(--brand);
      transform: scale(1.05);
    }

    /* hero */
    .hero {
      padding: 60px 0 40px 0;
      background: var(--hero-gradient);
    }

    .hero-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }

    .hero-text {
      flex: 1 1 300px;
    }

    .hero-badge {
      color: var(--brand);
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 1.1rem;
      margin-bottom: 8px;
    }

    .hero-title {
      font-size: 3.5rem;
      line-height: 1.2;
      margin-bottom: 16px;
      color: var(--text-primary);
    }

    .hero-title span {
      color: var(--brand);
      border-bottom: 4px solid var(--brand);
      display: inline-block;
      padding-bottom: 4px;
    }

    .hero-desc {
      font-size: 1.3rem;
      color: var(--text-secondary);
      max-width: 500px;
      margin-bottom: 30px;
    }

    .malco-hero-badge {
      display: inline-flex;
      align-items: center;
      background: var(--malco-badge-bg);
      color: var(--malco-badge-text);
      padding: 10px 28px 10px 24px;
      border-radius: 60px;
      gap: 12px;
      margin-top: 15px;
      border-left: 5px solid var(--brand);
      font-size: 1.3rem;
      text-transform: uppercase;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin: 30px 0 20px;
    }

    .stat-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-primary);
      text-transform: uppercase;
      font-size: 1.1rem;
    }

    .stat-icon {
      background: var(--brand);
      color: white;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
    }

    .hero-image {
      flex: 1 1 300px;
      border-radius: 28px;
      min-height: 300px;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300" width="400" height="300"><rect width="400" height="300" fill="%23C9A227" opacity="0.06"/><text x="50" y="120" font-family="Racing Sans One" font-size="32" fill="%23C9A227" font-weight="bold">MALCO</text><text x="50" y="170" font-family="Rajdhani" font-size="20" fill="%23333333">#1 choice worldwide</text><circle cx="280" cy="180" r="50" fill="%23C9A227" opacity="0.2"/><text x="200" y="240" font-family="Passion One" font-size="28" fill="%23C9A227">since 1952</text></svg>');
      background-size: cover;
      background-position: center;
      box-shadow: 0 25px 35px -12px rgba(0,0,0,0.15);
      overflow: hidden;
    }

    /* service cards */
    .services-detailed {
      padding: 70px 0;
      background: var(--bg-primary);
      scroll-margin-top: 100px;
    }

    .service-grid-detailed {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 35px;
      margin-top: 30px;
    }

    .service-card-detailed {
      background: var(--bg-card);
      border-radius: 28px;
      padding: 30px 25px;
      border: 1px solid var(--border-card);
      transition: 0.25s;
    }
    .service-card-detailed:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 30px -10px var(--card-hover);
      border-color: var(--brand);
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 25px;
      border-bottom: 1px dashed var(--border-light);
      padding-bottom: 15px;
    }
    .card-header-icon {
      background: var(--brand);
      width: 60px;
      height: 60px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
    }
    .card-header h3 {
      font-size: 2rem;
      color: var(--text-primary);
    }

    .service-sublist {
      list-style: none;
    }
    .service-sublist li {
      padding: 12px 0;
      border-bottom: 1px solid var(--border-light);
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.1rem;
      color: var(--text-primary);
    }
    .service-sublist li i {
      color: var(--brand);
      width: 24px;
    }

    .malco-note {
      margin-top: 20px;
      background: rgba(201,162,39,0.08);
      padding: 12px 20px;
      border-radius: 50px;
      font-size: 1.2rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px dashed var(--brand);
      color: var(--text-primary);
      text-transform: uppercase;
    }

    /* performance gallery */
    .performance-gallery {
      padding: 80px 0;
      background: var(--bg-performance);
      scroll-margin-top: 100px;
    }

    .performance-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }

    .performance-card {
      background: var(--bg-card);
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 15px 25px -12px rgba(0,0,0,0.1);
      transition: 0.3s;
      border: 1px solid var(--border-card);
    }
    .performance-card:hover {
      transform: scale(1.02);
      box-shadow: 0 25px 35px -12px var(--brand);
    }

    .compare-images {
      display: flex;
      position: relative;
      height: 220px;
    }
    .before-img, .after-img {
      flex: 1;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .before-img { background-color: #2a2a2a; }
    .after-img { background-color: #3a3a3a; }
    .image-label {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: var(--brand);
      color: #3a3a3a;
      padding: 6px 16px;
      border-radius: 40px;
      font-size: 0.9rem;
      text-transform: uppercase;
    }
    .after-img .image-label {
      left: auto;
      right: 12px;
      background: var(--brand);
      color: black;
    }

    .performance-content {
      padding: 0 20px 20px;
    }
    .performance-content h3 {
      font-size: 1.8rem;
      margin: 20px 0 10px;
      color: var(--text-primary);
    }
    .performance-content p {
      color: var(--text-secondary);
      margin-bottom: 15px;
    }
    .performance-tag {
      display: inline-block;
      background: rgba(201,162,39,0.12);
      padding: 8px 22px;
      border-radius: 60px;
      font-size: 1.2rem;
      border: 1px solid var(--brand);
      text-transform: uppercase;
    }

    /* specialities */
    .specialities {
      background: var(--bg-special);
      padding: 50px 0;
    }
    .spec-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .spec-item {
      background: var(--spec-item-bg);
      border-radius: 60px;
      padding: 15px 35px;
      font-size: 1.4rem;
      display: flex;
      align-items: center;
      gap: 10px;
      border-left: 5px solid var(--brand);
      text-transform: uppercase;
    }

        /* BOOKING FORM SECTION - NEW at the end */
    .form-section {
      padding: 80px 0;
      background: var(--form-bg);
      color: white;
      scroll-margin-top: 100px;
    }
    .form-section .container {
      max-width: 700px;
    }
    .form-section h2 {
      color: var(--brand);
      font-size: 3rem;
      text-align: center;
      margin-bottom: 20px;
    }
    .form-section .section-sub {
      color: #aaa;
      text-align: center;
      margin-bottom: 50px;
    }
    .booking-form {
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(10px);
      padding: 50px;
      border-radius: 40px;
      border: 2px solid var(--brand);
    }
    .form-group {
      margin-bottom: 25px;
    }
    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: var(--brand);
      font-size: 1.2rem;
      text-transform: uppercase;
    }
    .form-group input,
    .form-group select {
      width: 100%;
      padding: 15px 20px;
      border: 2px solid rgba(255,255,255,0.1);
      border-radius: 30px;
      background: rgba(0,0,0,0.3);
      color: white;
      font-size: 1.1rem;
      transition: 0.3s;
    }
    .form-group input:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--brand);
      background: rgba(0,0,0,0.5);
    }
    .form-group input::placeholder {
      color: #888;
    }
    .submit-btn {
      width: 100%;
      padding: 18px;
      background: var(--brand);
      color: black;
      border: none;
      border-radius: 60px;
      font-size: 2rem;
      cursor: pointer;
      transition: 0.3s;
      text-transform: uppercase;
      border: 2px solid var(--brand);
      margin-top: 20px;
    }
    .submit-btn:hover {
      background: transparent;
      color: var(--brand);
    }
    /* contact section */
    .location-decor {
      padding: 60px 0;
      scroll-margin-top: 100px;
    }
    .info-row {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      background: var(--address-block-bg);
      border-radius: 40px;
      padding: 48px 40px;
      align-items: center;
      border: 1px solid var(--border-light);
    }
    .map-placeholder {
      flex: 1 1 200px;
      height: 200px;
      border-radius: 28px;
      background: var(--map-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-primary);
      font-size: 1.5rem;
      border: 2px dashed var(--brand);
      font-family: var(--font-headers);
      text-transform: uppercase;
      overflow: hidden;
    }
    .address-block h4 {
      font-size: 2.2rem;
      color: var(--brand);
      margin-bottom: 20px;
    }
    .address-block p {
      font-size: 1.2rem;
      margin: 10px 0;
      color: var(--text-primary);
    }
    .address-block a {
      color: var(--text-primary);
      text-decoration: none;
      border-bottom: 1px dashed var(--brand);
      font-family: var(--font-body);
    }

    /* footer */
    .footer {
      background: var(--footer-bg);
      color: var(--footer-text);
      padding: 48px 0 28px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-logo {
      font-size: 2.2rem;
      color: white;
      margin-bottom: 15px;
    }
    .footer-logo span { color: var(--brand); }
    .footer-col h4 {
      font-family: var(--font-headers);
      color: white;
      margin-bottom: 18px;
      font-size: 1.4rem;
    }
    .footer-col p { 
      margin-bottom: 10px;
      font-family: var(--font-body);
    }
    .footer-col i { color: var(--brand); width: 25px; }
    .footer-col a {
      color: var(--footer-text);
      text-decoration: none;
    }
    .footer-col a:hover {
      color: var(--brand);
    }
    .instagram-handle {
      background: #222;
      display: inline-block;
      padding: 8px 20px;
      border-radius: 40px;
      border: 1px solid #444;
      color: #ddd;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 1rem;
      font-family: var(--font-accent);
    }
    .instagram-handle:hover {
      background: var(--brand);
      color: black;
    }
    .malco-footer-tag {
      background: rgba(201,162,39,0.15);
      padding: 8px 18px;
      border-radius: 40px;
      color: var(--brand);
      display: inline-block;
      text-transform: uppercase;
      font-size: 1.1rem;
    }
    .copyright {
      text-align: center;
      border-top: 1px solid var(--footer-border);
      padding-top: 28px;
      color: #888;
      font-size: 1.1rem;
      text-transform: uppercase;
    }

    /* Mobile Responsive - Menu on RIGHT side */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      
      .hamburger {
        display: flex;
      }
      
      .mobile-menu {
        display: flex;
      }
      
      .hero-title {
        font-size: 2.5rem;
      }
      
      .contact-top .container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
      }
      
      /* Ensure menu slides from right */
      .mobile-menu {
        right: -100%;
      }
      .mobile-menu.active {
        right: 0;
      }
    }
    @media (max-width: 500px) {
      .hero-image {
        min-height: 225px;
      }
    }