:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-grey: #1a1a1a;
    --mid-grey: #222222;
    --border: #2a2a2a;
    --red: #e01c1c;
    --red-dark: #b81515;
    --red-glow: rgba(224,28,28,0.15);
    --white: #f5f5f5;
    --muted: #888888;
    --light-grey: #cccccc;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--dark); }
  ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

  /* ── NAVBAR ── */
  #navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 3rem;
    height: 72px;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
  }

  #navbar.scrolled { background: rgba(10,10,10,0.97); }

  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
    min-width: 0;
    overflow: visible;
  }
  .nav-logo img {
    display: block;
    visibility: visible;
    opacity: 1;
  }
  .nav-logo-icon {
    width: 40px; height: 40px;
    background: var(--red);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px; color: #fff;
    flex-shrink: 0;
  }
  .nav-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 3px; color: var(--white);
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
  }
  .nav-logo-text span { color: var(--red); }

  .nav-links {
    display: flex; align-items: center; gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    color: var(--light-grey);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
    padding: 8px 0;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: var(--red); transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .btn-login {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
    white-space: nowrap;
  }
  .btn-login:hover { background: var(--red-dark); transform: translateY(-1px); }

  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 8px;
    min-width: 44px; min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px; background: var(--white);
    transition: all 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  .mobile-menu {
    display: none;
    position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem 2rem;
    flex-direction: column; gap: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--light-grey);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600; font-size: 1rem;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .mobile-menu a:last-of-type {
    border-bottom: none;
    margin-top: 0.5rem;
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 72px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.85) 100%),
      url('../images/hero-bg.jpg') center/cover no-repeat;
  }
  /* Subtle grid overlay */
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.02) 80px),
                      repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.02) 80px);
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 760px;
    padding: 2rem 3rem;
    margin-left: 5vw;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.65rem, 1.5vw, 0.75rem); font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 0.6s 0.3s forwards;
    flex-wrap: wrap;
  }
  .hero-tag::before {
    content: ''; display: block; width: 32px; height: 1px; background: var(--red);
    flex-shrink: 0;
  }
  .hero-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1rem;
    opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
    word-break: break-word;
    hyphens: auto;
  }
  .hero-h1 .accent { color: var(--red); }
  .hero-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1rem, 3vw, 1.3rem); font-weight: 500;
    color: var(--red);
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    opacity: 0; animation: fadeUp 0.7s 0.7s forwards;
  }
  .hero-desc {
    font-size: clamp(0.9rem, 2vw, 1rem); line-height: 1.8;
    color: var(--light-grey); max-width: 500px;
    margin-bottom: 2.5rem;
    opacity: 0; animation: fadeUp 0.7s 0.9s forwards;
  }
  .hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.7s 1.1s forwards;
  }
  .btn-primary {
    background: var(--red);
    color: #fff; border: none;
    padding: 14px 32px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700; font-size: 0.9rem;
    letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    text-align: center;
    min-height: 48px;
    min-width: 140px;
  }
  .btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--red-glow);
  }
  .btn-secondary {
    background: transparent;
    color: var(--white); border: 1px solid rgba(255,255,255,0.3);
    padding: 14px 32px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700; font-size: 0.9rem;
    letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
    display: inline-block;
    text-align: center;
    min-height: 48px;
    min-width: 140px;
  }
  .btn-secondary:hover {
    border-color: var(--red); color: var(--red);
    transform: translateY(-2px);
  }
  .hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--muted);
    animation: bounce 2s infinite;
  }
  .hero-scroll::after {
    content: ''; display: block; width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--muted), transparent);
  }

  /* ── SECTION COMMONS ── */
  section { padding: 6rem 3rem; }
  .section-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.65rem, 1.5vw, 0.72rem); font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--red);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
  .section-tag::before {
    content: ''; display: block; width: 28px; height: 1px; background: var(--red);
    flex-shrink: 0;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1; letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1rem;
    word-break: break-word;
  }
  .section-title span { color: var(--red); }
  .section-line {
    width: 48px; height: 2px;
    background: var(--red);
    margin-bottom: 2rem;
  }

  .container { max-width: 1200px; margin: 0 auto; width: 100%; }

  /* ── ABOUT ── */
  #about { background: var(--dark); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .about-text p {
    color: var(--light-grey); line-height: 1.9;
    margin-bottom: 1.2rem; font-size: clamp(0.9rem, 2vw, 0.97rem);
  }
  .about-quote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--red);
    background: var(--mid-grey);
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.4rem); font-weight: 700;
    color: var(--white); letter-spacing: 1px;
    font-style: italic;
    word-break: break-word;
  }
  .about-visual {
    position: relative;
  }
  .about-img {
    width: 100%; max-width: 100%; height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: grayscale(30%);
    border: 1px solid var(--border);
    display: block;
  }
  .about-stat-box {
    position: absolute; bottom: -1.5rem; left: -1.5rem;
    background: var(--red);
    padding: 1.5rem 2rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    min-width: 200px;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem); line-height: 1; color: #fff;
  }
  .stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.6rem, 1.5vw, 0.65rem); font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }

  /* ── SERVICES ── */
  #services { background: var(--black); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 3rem;
  }
  .service-card {
    background: var(--dark);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .service-card:hover { background: var(--dark-grey); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 48px; height: 48px;
    background: var(--red-glow);
    border: 1px solid rgba(224,28,28,0.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    transition: background 0.3s;
    flex-shrink: 0;
  }
  .service-card:hover .service-icon {
    background: var(--red);
    border-color: var(--red);
  }
  .service-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.1rem); font-weight: 700;
    letter-spacing: 1px; color: var(--white);
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    word-break: break-word;
  }
  .service-desc {
    color: var(--muted);
    font-size: clamp(0.82rem, 2vw, 0.88rem); line-height: 1.7;
  }

  /* ── WHY RPM ── */
  #why { background: var(--dark-grey); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .why-card {
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
  }
  .why-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
  }
  .why-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem); line-height: 1;
    color: rgba(224,28,28,0.12);
    margin-bottom: 1rem;
    transition: color 0.3s;
  }
  .why-card:hover .why-num { color: rgba(224,28,28,0.25); }
  .why-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem); font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--white); margin-bottom: 0.6rem;
    word-break: break-word;
  }
  .why-desc {
    color: var(--muted); font-size: clamp(0.8rem, 2vw, 0.87rem); line-height: 1.7;
  }
  .why-icon-line {
    width: 28px; height: 2px; background: var(--red);
    margin-bottom: 1.2rem;
    transition: width 0.3s;
  }
  .why-card:hover .why-icon-line { width: 48px; }

  /* ── GALLERY ── */
  #gallery { background: var(--black); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 8px;
    margin-top: 3rem;
  }
  .gallery-item {
    overflow: hidden; position: relative;
    background: var(--dark-grey);
    cursor: pointer;
  }
  .gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 4; }
  .gallery-item:nth-child(3) { grid-column: span 3; }
  .gallery-item:nth-child(4) { grid-column: span 4; }
  .gallery-item:nth-child(5) { grid-column: span 3; }
  .gallery-item:nth-child(6) { grid-column: span 5; }
  .gallery-img {
    width: 100%; height: 100%; min-height: 200px;
    object-fit: cover;
    filter: grayscale(50%);
    transition: transform 0.5s, filter 0.5s;
    display: block;
  }
  .gallery-item:hover .gallery-img {
    transform: scale(1.06);
    filter: grayscale(10%);
  }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }

  /* ── ENQUIRY ── */
  #enquiry { background: var(--dark); }
  .enquiry-wrapper {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: start;
  }
  .enquiry-form {
    display: flex; flex-direction: column; gap: 1rem;
    margin-top: 2rem;
  }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.65rem, 1.5vw, 0.72rem); font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--muted);
  }
  .form-input, .form-textarea {
    background: var(--mid-grey);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 14px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
    width: 100%;
    min-height: 48px;
  }
  .form-input:focus, .form-textarea:focus { border-color: var(--red); }
  .form-textarea { min-height: 130px; }
  .enquiry-info { padding-top: 1rem; }
  .enquiry-info p {
    color: var(--muted); font-size: clamp(0.88rem, 2vw, 0.95rem); line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  .enquiry-note {
    display: flex; align-items: flex-start; gap: 12px;
    background: var(--mid-grey);
    border-left: 3px solid var(--red);
    padding: 1rem 1.2rem;
    margin-top: 1.5rem;
  }
  .enquiry-note p { color: var(--light-grey); margin: 0; font-size: clamp(0.82rem, 2vw, 0.88rem); }

  /* ── CONTACT ── */
  #contact { background: var(--black); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; margin-top: 3rem;
  }
  .contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
  .contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .contact-item:last-child { border-bottom: none; }
  .contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--red-glow); border: 1px solid rgba(224,28,28,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }
  .contact-icon svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  .contact-detail-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.65rem, 1.5vw, 0.7rem); font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--muted); margin-bottom: 3px;
  }
  .contact-detail-value {
    color: var(--white); font-size: clamp(0.88rem, 2vw, 0.95rem);
    word-break: break-word;
  }
  .contact-detail-value a { color: var(--white); text-decoration: none; }
  .contact-detail-value a:hover { color: var(--red); }
  .map-container {
    width: 100%; height: 100%; min-height: 360px;
    background: var(--dark-grey);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
  }
  .map-container iframe { 
    width: 100%; height: 100%; min-height: 360px; border: none; 
    filter: grayscale(80%) contrast(1.1);
    display: block;
  }

  .hours-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.4rem; margin-top: 0.4rem;
  }
  .hours-day { color: var(--muted); font-size: clamp(0.8rem, 2vw, 0.85rem); }
  .hours-time { color: var(--light-grey); font-size: clamp(0.8rem, 2vw, 0.85rem); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 4rem 3rem 2rem;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem; margin-bottom: 3rem;
  }
  .footer-brand p {
    color: var(--muted); font-size: clamp(0.85rem, 2vw, 0.9rem); line-height: 1.8;
    margin: 1rem 0 1.5rem;
    max-width: 300px;
  }
  .social-links { display: flex; gap: 10px; flex-wrap: wrap; }
  .social-link {
    width: 44px; height: 44px;
    background: var(--mid-grey);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; text-decoration: none; color: var(--muted);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
  }
  .social-link:hover { background: var(--red); color: #fff; border-color: var(--red); }
  .social-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  .footer-col-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.7rem, 1.5vw, 0.75rem); font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--red); margin-bottom: 1.2rem;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-links a {
    color: var(--muted); text-decoration: none;
    font-size: clamp(0.85rem, 2vw, 0.9rem); transition: color 0.2s;
    display: flex; align-items: center; gap: 6px;
    min-height: 36px;
  }
  .footer-links a::before { content: '›'; color: var(--red); }
  .footer-links a:hover { color: var(--white); }
  .footer-contact-item {
    display: flex; align-items: flex-start; gap: 8px;
    color: var(--muted); font-size: clamp(0.82rem, 2vw, 0.88rem);
    margin-bottom: 0.8rem;
    word-break: break-word;
  }
  .footer-contact-item span { color: var(--red); font-size: 0.9rem; margin-top: 1px; flex-shrink: 0; }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.72rem, 1.5vw, 0.8rem); font-weight: 600;
    letter-spacing: 2px; color: var(--muted);
    text-transform: uppercase;
  }
  .footer-tagline span { color: var(--red); }
  .footer-copy {
    color: var(--muted); font-size: clamp(0.72rem, 1.5vw, 0.78rem);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }
  .reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.7s, transform 0.7s;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── TABLET (max-width: 900px) ── */
  @media (max-width: 900px) {
    #navbar { padding: 0 1.5rem; }
    .nav-links, .btn-login { display: none; }
    .nav-hamburger { display: flex; }

    section { padding: 4rem 1.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-stat-box { 
      position: relative; left: 0; bottom: 0; margin-top: 1.5rem;
      width: 100%;
    }
    .about-visual { order: -1; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .enquiry-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-content { margin-left: 0; padding: 2rem 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .map-container { min-height: 300px; }
    .map-container iframe { min-height: 300px; }
  }

  /* ── MOBILE (max-width: 600px) ── */
  @media (max-width: 600px) {
    .hero-h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hours-grid { grid-template-columns: 1fr; }

    .hero-btns { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; }

    .about-stat-box { 
      grid-template-columns: 1fr 1fr; 
      padding: 1rem;
      gap: 0.8rem;
    }

    .contact-icon {
      width: 40px;
      height: 40px;
    }

    .footer-grid { gap: 2.5rem; }
    .footer-brand p { max-width: 100%; }

    .enquiry-note {
      flex-direction: column;
      gap: 8px;
    }
  }

  /* ── SMALL MOBILE (max-width: 380px) ── */
  @media (max-width: 380px) {
    #navbar { padding: 0 1rem; height: 64px; }
    .mobile-menu { top: 64px; max-height: calc(100vh - 64px); }
    .logo-fallback {
      width: 32px !important;
      height: 32px !important;
      font-size: 12px !important;
    }
    .nav-logo-text {
      font-size: 16px !important;
    }

    .hero-content { padding: 1.5rem 1rem; }
    section { padding: 3rem 1rem; }

    .hero-h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 0.9rem; }
    .hero-desc { font-size: 0.85rem; }

    .about-quote { padding: 1rem 1.2rem; font-size: 1rem; }
    .about-stat-box { padding: 0.8rem; }
    .stat-num { font-size: 1.4rem; }
    .stat-label { font-size: 0.55rem; }

    .service-card { padding: 0.8rem; }
    .service-icon { width: 32px; height: 32px; }
    .services-grid { grid-template-columns: 1fr; }

    .why-card { padding: 0.8rem; }
    .why-num { font-size: 1.4rem; }

    .contact-icon { width: 28px; height: 28px; }
    .contact-icon svg { width: 14px; height: 14px; }
    .contact-grid { gap: 1rem; }
    .contact-list { gap: 0.4rem; }
    .contact-item { padding: 0.6rem 0.3rem; }
    .contact-item:last-child { grid-column: span 2; }
    .map-container { min-height: 200px; }
    .map-container iframe { min-height: 200px; }

    .social-link { width: 40px; height: 40px; }
    .social-link svg { width: 16px; height: 16px; }

    footer { padding: 3rem 1rem 1.5rem; }
  }

  /* ── REDUCED MOTION ── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
  }

  /* ── HIGH CONTRAST MODE ── */
  @media (prefers-contrast: high) {
    :root {
      --muted: #aaaaaa;
      --light-grey: #eeeeee;
      --border: #444444;
    }
    .service-card, .why-card, .contact-item {
      border-width: 2px;
    }
  }

  /* ── DARK MODE (already dark, but ensure consistency) ── */
  @media (prefers-color-scheme: dark) {
    /* Already optimized for dark mode */
  }

  /* ═══════════════════════════════════════════════════════════════
     MOBILE OPTIMIZATION — Screens below 768px
     Only affects mobile devices. Desktop styles remain untouched.
     ═══════════════════════════════════════════════════════════════ */

  @media (max-width: 767.98px) {
    /* ── GLOBAL MOBILE COMPACT SPACING ── */
    section {
      padding: 2.5rem 1rem !important;
    }
    .container {
      padding: 0;
    }

    /* ── HERO MOBILE ── */
    #hero {
      min-height: auto;
      padding-top: 64px;
      padding-bottom: 3rem;
    }
    .hero-content {
      padding: 1.5rem 1rem;
      margin-left: 0;
      max-width: 100%;
    }
    .hero-tag {
      margin-bottom: 1rem;
      font-size: 0.65rem;
      letter-spacing: 2px;
    }
    .hero-tag::before {
      width: 20px;
    }
    .hero-h1 {
      font-size: clamp(2.4rem, 10vw, 3.2rem);
      margin-bottom: 0.6rem;
      letter-spacing: 1px;
    }
    .hero-sub {
      font-size: 1rem;
      margin-bottom: 0.8rem;
      letter-spacing: 1px;
    }
    .hero-desc {
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      max-width: 100%;
    }
    .hero-btns {
      gap: 0.6rem;
    }
    .btn-primary, .btn-secondary {
      padding: 12px 24px;
      font-size: 0.8rem;
      letter-spacing: 1.5px;
      min-height: 44px;
    }
    .hero-scroll {
      display: none;
    }

    /* ── LOGO MOBILE FIX ── */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 0;
      flex-shrink: 1;
      overflow: visible;
    }
    .logo-fallback {
      width: 36px !important;
      height: 36px !important;
      font-size: 14px !important;
    }
    .nav-logo-text {
      font-size: 18px !important;
      letter-spacing: 2px !important;
    }

    /* ── SECTION HEADINGS MOBILE ── */
    .section-tag {
      font-size: 0.65rem;
      letter-spacing: 2px;
      margin-bottom: 0.6rem;
    }
    .section-tag::before {
      width: 20px;
    }
    .section-title {
      font-size: clamp(1.8rem, 7vw, 2.5rem);
      margin-bottom: 0.6rem;
      letter-spacing: 1px;
    }
    .section-line {
      width: 36px;
      margin-bottom: 1.5rem;
    }

    /* ── ABOUT MOBILE ── */
    .about-grid {
      gap: 2rem;
    }
    .about-text p {
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 0.8rem;
    }
    .about-quote {
      margin: 1.2rem 0;
      padding: 1rem 1.2rem;
      font-size: 1.1rem;
    }
    .about-stat-box {
      position: relative;
      left: 0;
      bottom: 0;
      margin-top: 1rem;
      padding: 1rem;
      gap: 0.6rem;
      grid-template-columns: repeat(2, 1fr);
    }
    .stat-num {
      font-size: 1.6rem;
    }
    .stat-label {
      font-size: 0.55rem;
      letter-spacing: 1px;
    }

    /* ── SERVICES MOBILE ── */
    .services-grid {
      margin-top: 1.5rem;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
    }
    .service-card {
      padding: 1rem;
    }
    .service-icon {
      width: 36px;
      height: 36px;
      margin-bottom: 0.6rem;
    }
    .service-icon svg {
      width: 16px;
      height: 16px;
    }
    .service-title {
      font-size: 0.75rem;
      margin-bottom: 0.3rem;
      letter-spacing: 0.5px;
    }
    .service-desc {
      font-size: 0.72rem;
      line-height: 1.5;
    }

    /* ── WHY RPM MOBILE ── */
    .why-grid {
      margin-top: 1.5rem;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.6rem;
    }
    .why-card {
      padding: 1rem;
      display: flex;
      flex-direction: column;
    }
    .why-num {
      font-size: 1.6rem;
      margin-bottom: 0.4rem;
    }
    .why-icon-line {
      width: 20px;
      margin-bottom: 0.5rem;
    }
    .why-title {
      font-size: 0.8rem;
      margin-bottom: 0.3rem;
      letter-spacing: 1px;
    }
    .why-desc {
      font-size: 0.75rem;
      line-height: 1.5;
    }

    /* ── GALLERY MOBILE — 2 COLUMNS ── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr) !important;
      grid-template-rows: auto !important;
      gap: 6px;
      margin-top: 1.5rem;
    }
    .gallery-item {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
      aspect-ratio: 4/3;
      min-height: auto;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
    }
    .gallery-img {
      min-height: auto;
      height: 100%;
      width: 100%;
      object-fit: cover;
    }

    /* ── ENQUIRY MOBILE ── */
    .enquiry-wrapper {
      gap: 2rem;
    }
    .enquiry-info p {
      font-size: 0.88rem;
      margin-bottom: 1rem;
    }
    .enquiry-note {
      padding: 0.8rem 1rem;
      margin-top: 1rem;
    }
    .enquiry-note p {
      font-size: 0.8rem;
    }
    .enquiry-form {
      margin-top: 1rem;
      gap: 0.8rem;
    }
    .form-label {
      font-size: 0.65rem;
    }
    .form-input, .form-textarea {
      padding: 12px 14px;
      font-size: 0.9rem;
    }
    .form-textarea {
      min-height: 100px;
    }

    /* ── CONTACT MOBILE ── */
    .contact-grid {
      margin-top: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .contact-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.6rem;
      list-style: none;
    }
    .contact-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.5rem;
      padding: 1rem 0.6rem;
      border: 1px solid var(--border);
      background: var(--dark);
      border-radius: 0;
      transition: border-color 0.3s, transform 0.3s;
    }
    .contact-item:hover {
      border-color: var(--red);
      transform: translateY(-4px);
    }
    .contact-item:last-child {
      grid-column: span 1;
      padding: 1rem 0.6rem;
    }
    .contact-item:last-child .contact-icon {
      margin-bottom: 0;
    }
    .contact-item:last-child .hours-grid {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.2rem 0.6rem;
      margin-top: 0.2rem;
    }
    .contact-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      background: var(--red-glow);
      border: 1px solid rgba(224,28,28,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      transition: background 0.2s, border-color 0.2s;
    }
    .contact-item:hover .contact-icon {
      background: var(--red);
      border-color: var(--red);
    }
    .contact-icon svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }
    .contact-detail-label {
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.2rem;
    }
    .contact-detail-value {
      color: var(--white);
      font-size: 0.78rem;
      line-height: 1.4;
      word-break: break-word;
    }
    .contact-detail-value a {
      color: var(--white);
      text-decoration: none;
    }
    .contact-detail-value a:hover {
      color: var(--red);
    }
    .hours-grid {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.2rem 0.6rem;
      margin-top: 0.2rem;
    }
    .hours-day, .hours-time {
      font-size: 0.72rem;
      white-space: nowrap;
    }
    .map-container {
      min-height: 220px;
      width: 100%;
    }
    .map-container iframe {
      min-height: 220px;
      width: 100%;
    }

    /* ── FOOTER MOBILE ── */
    footer {
      padding: 2.5rem 1rem 1.5rem;
    }
    .footer-grid {
      gap: 2rem;
      margin-bottom: 2rem;
    }
    .footer-brand p {
      font-size: 0.85rem;
      margin: 0.8rem 0 1rem;
      max-width: 100%;
    }
    .social-links {
      gap: 8px;
    }
    .social-link {
      width: 40px;
      height: 40px;
    }
    .footer-col-title {
      font-size: 0.7rem;
      margin-bottom: 0.8rem;
    }
    .footer-links {
      gap: 0.4rem;
    }
    .footer-links a {
      font-size: 0.85rem;
      min-height: 32px;
    }
    .footer-contact-item {
      font-size: 0.82rem;
      margin-bottom: 0.6rem;
    }
    .footer-bottom {
      padding-top: 1rem;
      gap: 0.6rem;
    }
    .footer-tagline {
      font-size: 0.7rem;
      letter-spacing: 1px;
    }
    .footer-copy {
      font-size: 0.7rem;
    }
  }

  /* ═══════════════════════════════════════════════════════════════
     TABLET OPTIMIZATION — Screens 768px to 991px
     3-column gallery for larger phones/small tablets
     ═══════════════════════════════════════════════════════════════ */

  @media (min-width: 768px) and (max-width: 991.98px) {
    section {
      padding: 3rem 1.5rem !important;
    }

    /* Gallery 3 columns on tablets */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr) !important;
      grid-template-rows: auto !important;
      gap: 8px;
      margin-top: 2rem;
    }
    .gallery-item {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
      aspect-ratio: 4/3;
      min-height: auto;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
    }
    .gallery-img {
      min-height: auto;
      height: 100%;
      width: 100%;
      object-fit: cover;
    }

    /* Compact spacing for tablet */
    .about-grid {
      gap: 3rem;
    }
    .why-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .enquiry-wrapper {
      gap: 3rem;
    }
    .contact-grid {
      gap: 2rem;
    }
    .footer-grid {
      gap: 2rem;
    }
  }