/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= BODY ================= */
body {
    display: flex;
    background: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #222;
}

/* ================= SIDEBAR ================= */
.sidebar {
    width: 240px;
    height: 100vh;
    background: #000;
    color: #fff;

    position: sticky;
    top: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 20px 0;
}

/* LOGO */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
}

.logo img {
    width: 140px;
}

/* NAV (CENTERED) */
.sidebar nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* LINKS */
.sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 20px;
    margin: 6px 0 6px 10px; /* ONLY LEFT SPACE */

    font-size: 14px;
    letter-spacing: 0.4px;

    color: #aaa;
    text-decoration: none;

    border-radius: 14px 0 0 14px;
    transition: all 0.25s ease;
}

/* ICON */
.sidebar a i {
    width: 18px;
    height: 18px;
}

/* HOVER */
.sidebar a:hover {
    background: #111;
    color: #fff;
}

/* ACTIVE (CONNECTED PROPERLY) */
.sidebar a.active {
    background: #fff;
    color: #e53935;
    font-weight: 600;
}

/* ================= CTA ================= */
.sidebar-cta {
    margin: 10px;
    padding: 20px 16px;
    background: #111;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-cta p {
    font-size: 13px;
    color: #ddd;
    margin-bottom: 10px;
    line-height: 1.4;
}

.sidebar-cta button {
    width: 90%;
    padding: 10px;

    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 10px;

    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.sidebar-cta button:hover {
    background: #c62828;
}

/* ================= MAIN WINDOW ================= */
.main {
    flex: 1;
    background: #fff;
    overflow-x: hidden;
    margin: 20px 20px 20px 0; /* TOP + RIGHT + BOTTOM */
    border-radius: 20px;

    padding: 30px;
    min-height: calc(100vh - 40px);
}

/* ================= CONTENT ================= */
.container {
    max-width: 1200px;
    margin: auto;
}

/* ================= TYPOGRAPHY ================= */
h1 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

p {
    font-size: 14px;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    margin-top: 50px;
}

/* FULL SCREEN HERO */
.footer-hero {
    position: relative;
    height: 80vh; /* 🔴 FULL SCREEN */
    border-radius: 30px;
    overflow: hidden;
}

/* VIDEO */
.footer-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK LAYER */
.footer-dark {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

/* CENTER BUTTON */
.footer-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-btn {
    padding: 14px 28px;
    border-radius: 30px;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    color: black;
}

/* GLASS BAR */
.footer-glass {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    padding: 20px 30px;

    display: flex;
    justify-content: space-between;
    text-align: center;

    border-radius: 20px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);

    color: #fff;
}

.footer-glass p {
    font-size: 12px;
    opacity: 0.7;
}

.footer-glass h4 {
    font-size: 14px;
    font-weight: 400;
}

/* BOTTOM BAR */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 0;
}

.footer-bottom span {
    color: red;
}

/* ICONS */
.footer-icons {
    display: flex;
    gap: 12px;
}

.footer-icons a {
    width: 40px;
    height: 40px;
    background: #eee;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #000;
    transition: 0.3s;
}

.footer-icons a:hover {
    background: #000;
    color: #fff;
}
/* ================= MOBILE SYSTEM ================= */

/* HIDE MOBILE ELEMENTS BY DEFAULT */
.mobile-bar,
.mobile-menu {
    display: none;
}


/* ================= TABLET + MOBILE ================= */
@media (max-width: 1024px) {
    .cursor-glow{
    display: none;
    }
    /* HIDE SIDEBAR */
    .sidebar {
        display: none;
    }

    body {
        flex-direction: column;
    }

    .main {
        margin: 10px;
        border-radius: 15px;
        padding: 15px;
    }

    /* ================= BOTTOM BAR ================= */
    .mobile-bar {
        display: flex;
        position: fixed;
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);

        width: 92%;
        max-width: 480px;

        background: #000;
        border-radius: 40px;

        padding: 10px 16px;

        justify-content: space-between;
        align-items: center;

        box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        z-index: 1000;
    }

    /* SMALL CLEAN LOGO */
    .mobile-bar img {
        width: 85px;
        height: auto;
        object-fit: cover;
    }

    /* HAMBURGER */
    .hamburger {
        font-size: 24px;
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* ================= DRAWER MENU ================= */
    .mobile-menu {
        display: block;
        position: fixed;
        left: 0;
        bottom: -100%;

        width: 100%;
        height: 60vh;

        background: #000;
        color: #fff;

        border-radius: 25px 25px 0 0;

        padding: 20px 22px;

        transition: 0.35s ease;
        z-index: 999;
    }

    .mobile-menu.active {
        bottom: 0;
    }

    /* HEADER */
    .menu-header {
        margin-bottom: 20px;
    }

    .menu-header span {
        background: #fff;
        color: #000;
        padding: 6px 14px;
        border-radius: 20px;
        cursor: pointer;
        font-size: 13px;
        font-weight: 500;
    }

    /* ================= LINKS ================= */
    .menu-links {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .menu-links a {
        display: flex;
        align-items: center;
        gap: 12px;

        padding: 12px 14px;

        color: #bbb;
        text-decoration: none;

        font-size: 15px;
        font-weight: 500;

        border-radius: 12px;
        transition: 0.25s ease;
    }

    /* ICON SIZE */
    .menu-links a i {
        width: 18px;
        height: 18px;
    }

    /* HOVER */
    .menu-links a:hover {
        background: #111;
        color: #fff;
    }

    /* ACTIVE LINK */
    .menu-links a.active {
        background: #fff;
        color: #e53935;
        font-weight: 600;
    }
}

@media (max-width: 1024px) {

    /* HERO HEIGHT FIX */
    .footer-hero {
        height: 60vh;
        border-radius: 20px;
    }

    /* CENTER BUTTON */
    .footer-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    /* GLASS BAR → STACK */
    .footer-glass {
        flex-direction: column;
        gap: 14px;
        padding: 18px;
        text-align: center;
    }

    .footer-glass h4 {
        font-size: 13px;
    }

    .footer-glass p {
        font-size: 11px;
    }

    /* BOTTOM BAR */
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-bottom: 80px;
    }
}
@media (max-width: 768px) {
    .cursor-glow{
    display: none;
    }
    /* HERO */
    .footer-hero {
        height: 50vh;
        border-radius: 16px;
    }

    /* DARK OVERLAY */
    .footer-dark {
        background: rgba(0,0,0,0.6);
    }

    /* CENTER BUTTON */
    .footer-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* GLASS BAR */
    .footer-glass {
        width: 94%;
        bottom: 20px;
        padding: 14px;
        gap: 10px;
        border-radius: 14px;
    }

    /* ICONS */
    .footer-icons a {
        width: 36px;
        height: 36px;
    }
}
@media (max-width: 480px) {

    /* ===== BODY FIX ===== */
    body {
        background: #fff;   /* 🔥 remove black feel */
    }

    /* ===== MAIN FULL WIDTH ===== */
    .main {
        margin: 0;          /* 🔥 remove side gaps */
        padding: 12px 10px;
        border-radius: 0;   /* 🔥 edge-to-edge */
    }

    .container {
        width: 100%;
        padding: 0;
    }

    /* ===== MOBILE BAR ===== */
    .mobile-bar {
        padding: 8px 14px;
    }

    .mobile-bar img {
        width: 70px;
    }

    .hamburger {
        font-size: 22px;
        padding-right: 10px;
    }

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
        height: 65vh;
        padding: 18px;
    }

    .menu-links a {
        font-size: 14px;
        padding: 10px 12px;
    }

    /* ===== FOOTER ===== */
    .footer {
        margin-top: 30px;
    }

    .footer-hero {
        height: 38vh;
        border-radius: 0;   /* 🔥 match full width */
    }

    .footer-dark {
        background: rgba(0,0,0,0.6);
    }

    /* CENTER CTA */
    .footer-center {
        width: 100%;
        text-align: center;
        padding: 0 10px;
    }

    .footer-btn {
        padding: 10px 18px;
        font-size: 12px;
        border-radius: 999px;
        margin-bottom: 35px;
    }

    /* GLASS INFO */
    .footer-glass {
        width: 94%;
        bottom: 14px;

        padding: 10px;

        flex-direction: column;
        align-items: center;
        gap: 6px;

        border-radius: 12px;
    }

    .footer-glass h4 {
        font-size: 12px;
        text-align: center;
    }

    .footer-glass p {
        font-size: 10px;
    }

    /* FOOTER BOTTOM */
    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 10px 0;
    }

    .footer-bottom p {
        font-size: 16px;
    }

    /* ICONS */
    .footer-icons {
        gap: 6px;
    }

    .footer-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-bottom: 20px;
    }

}/* ================= CURSOR GLOW (RED) ================= */
/* ================= CURSOR GLOW ================= */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;

  width: 120px;
  height: 120px;

  border-radius: 50%;
  pointer-events: none;

  z-index: 999999;

  transform: translate(-50%, -50%) scale(1);

  background: radial-gradient(
    circle,
    rgba(229,57,53,0.25) 0%,
    rgba(229,57,53,0.15) 30%,
    rgba(229,57,53,0.08) 55%,
    transparent 75%
  );

  filter: blur(16px);

  transition: transform 0.2s ease; /* 🔥 smoother hover scale */
}

/* INNER DOT */
.cursor-glow::after {
  content: "";
  position: absolute;

  width: 8px;
  height: 8px;

  background: #e53935;
  border-radius: 50%;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  box-shadow:
    0 0 6px rgba(229,57,53,0.9),
    0 0 14px rgba(229,57,53,0.6);
}

/* OUTER RING */
.cursor-glow::before {
  content: "";
  position: absolute;

  width: 100%;
  height: 100%;

  border-radius: 50%;
  border: 1px solid rgba(229,57,53,0.12);

  opacity: 0.4;
}

/* ================= TOUCH GLOW ================= */
.touch-glow {
  position: fixed;

  width: 60px;
  height: 60px;

  border-radius: 50%;
  pointer-events: none;

  transform: translate(-50%, -50%) scale(0.5);

  background: radial-gradient(
    circle,
    rgba(229,57,53,0.45) 0%,
    rgba(229,57,53,0.2) 40%,
    transparent 75%
  );

  animation: touchFade 0.3s ease-out forwards;

  z-index: 9999;
}

/* CLEAN FADE (NO STICKING) */
@keyframes touchFade {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.6);
  }
}
.faq-btn,
.enquire-btn,.footer-btn {
    display: inline-block;
    text-decoration: none;
}
