:root {
    --mcg-dark: #020912;
    --mcg-green: #22e37c;
    --mcg-green-soft: rgba(34, 227, 124, 0.25);
    --mcg-orange: #ff9b26;
    --mcg-light: #f5f7fb;
    --mcg-card-bg: rgba(6, 16, 30, 0.92);
    --mcg-border: rgba(255, 255, 255, 0.08);
    --mcg-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #072020 0, #020912 40%, #000 100%);
    color: #e5ecff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Global decorative background */
body::before,
body::after {
    content: "";
    position: fixed;
    inset: -10%;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(34, 227, 124, 0.3) 0, transparent 55%),
        radial-gradient(circle at 85% 10%, rgba(255, 155, 38, 0.4) 0, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(34, 227, 124, 0.3) 0, transparent 60%);
    z-index: -2;
}

body::after {
    opacity: 0.06;
    background-image:
        radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.16) 0, transparent 55%),
        radial-gradient(circle at 60% 40%, rgba(19, 90, 90, 0.5) 0, transparent 55%);
    mix-blend-mode: screen;
}

.mcg-preloader-logo {
  width: 110px;
  height: auto;
  animation: logo-pulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(34, 227, 124, 0.6));
}

#mcg-preloader {
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#mcg-preloader.hide-loader {
  opacity: 0;
  visibility: hidden;
}


@keyframes logo-pulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
}

/* Ball loader (preloader) */
#mcg-preloader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 0, #033 0, #020912 40%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
    gap: 1.5rem;
}

.mcg-ball-orbit {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px dashed rgba(34, 227, 124, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: orbit-rotate 3.4s linear infinite;
}

.mcg-ball {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff 0, #ffe7d2 20%, #ff9b26 60%, #b35004 100%);
    box-shadow:
        0 0 15px rgba(255, 155, 38, 0.9),
        0 0 40px rgba(255, 155, 38, 0.4);
    position: absolute;
    top: -7px;
    animation: ball-bounce 0.9s ease-in-out infinite alternate;
}

.mcg-stump {
    width: 8px;
    height: 54px;
    border-radius: 20px;
    background: linear-gradient(to bottom, #fefefe, #fffcf5 40%, #d2c9b1 100%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.32);
    margin: 0 6px;
    position: relative;
    overflow: hidden;
}

.mcg-stump::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(34, 227, 124, 0.5), transparent 60%);
    mix-blend-mode: screen;
}

.mcg-stumps-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 24px;
    gap: 2px;
}

.mcg-preloader-text {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    color: rgba(229, 236, 255, 0.7);
}

.mcg-preloader-bar {
    width: 160px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    overflow: hidden;
    position: relative;
}

.mcg-preloader-bar span {
    position: absolute;
    inset: 0;
    width: 45%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--mcg-green), var(--mcg-orange));
    animation: bar-slide 1.4s ease-in-out infinite alternate;
}

@keyframes orbit-rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ball-bounce {
    0% {
        transform: translate(-16px, 0) scale(1);
    }

    100% {
        transform: translate(16px, 10px) scale(1.05);
    }
}

@keyframes bar-slide {
    0% {
        transform: translateX(-10%);
    }

    100% {
        transform: translateX(70%);
    }
}



/* Navbar */
.mcg-navbar {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90), rgba(2, 9, 18, 0.96));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.navbar-brand span {
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mcg-nav-link {
    color: rgba(229, 236, 255, 0.75) !important;
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    padding-inline: 0.9rem !important;
}

.mcg-nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.1rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--mcg-green), var(--mcg-orange));
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.mcg-nav-link:hover::after,
.mcg-nav-link.active::after {
    width: 60%;
}

.mcg-nav-cta {
    border-radius: 999px;
    border: 1px solid var(--mcg-green);
    color: var(--mcg-dark);
    background: linear-gradient(135deg, var(--mcg-green), var(--mcg-orange));
    box-shadow:
        0 0 20px rgba(34, 227, 124, 0.4),
        0 0 35px rgba(255, 155, 38, 0.35);
    font-weight: 600;
    padding-inline: 1.3rem;
    font-size: 0.9rem;
}

.mcg-nav-cta:hover {
    color: var(--mcg-dark);
    filter: brightness(1.06);
}

/* Hero section */
.mcg-section {
    padding: 5rem 0;
    position: relative;
}

#hero {
    padding-top: 7.5rem;
    padding-bottom: 5rem;
}

.mcg-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.77rem;
    background: rgba(3, 26, 18, 0.8);
    border: 1px solid rgba(34, 227, 124, 0.4);
    color: var(--mcg-green);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.mcg-tag-pill i {
    font-size: 0.9rem;
}

.mcg-hero-title {
    font-size: clamp(2.3rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.8);
}

.mcg-hero-gradient {
    background: linear-gradient(120deg, #ffffff, #e2ffe8, #ffe7c6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mcg-hero-sub {
    font-size: 0.97rem;
    color: rgba(229, 236, 255, 0.8);
    max-width: 540px;
}

.mcg-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.mcg-badge {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: radial-gradient(circle at top left, rgba(34, 227, 124, 0.15), rgba(2, 9, 18, 0.95));
}

.mcg-badge i {
    color: var(--mcg-green);
}

.mcg-hero-cta-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    border: none;
    padding: 0.75rem 1.6rem;
    margin-right: 0.75rem;
    background: linear-gradient(135deg, var(--mcg-orange), #ffe18f);
    color: #2b1705;
    font-weight: 600;
    font-size: 0.96rem;
    box-shadow:
        0 0 25px rgba(255, 155, 38, 0.7),
        0 0 55px rgba(255, 155, 38, 0.36);
}

.mcg-hero-cta-main i {
    font-size: 1.1rem;
}

.mcg-hero-cta-main:hover {
    filter: brightness(1.06);
    color: #2b1705;
}

.mcg-hero-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.75rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(229, 236, 255, 0.9);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
}

.mcg-hero-cta-ghost i {
    color: var(--mcg-green);
}

.mcg-hero-cta-ghost:hover {
    border-color: var(--mcg-green);
    color: #ffffff;
}

/* Hero right: animated ground */
.mcg-hero-ground {
    position: relative;
    border-radius: 32px;
    padding: 1.2rem;
    background:
        radial-gradient(circle at 10% 0, rgba(34, 227, 124, 0.3), transparent 60%),
        radial-gradient(circle at 90% 0, rgba(255, 155, 38, 0.35), transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.96));
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    overflow: hidden;
    min-height: 320px;
}

.img-carousel {
  overflow: hidden;
}

.img-track {
  display: flex;
}

.img-track img {
  flex-shrink: 0;
  margin-right: 12px;
  border-radius: 1.5rem;
}

.img-carousel:hover .img-track {
  animation-play-state: paused;
}



.mcg-ground-inner {
    position: relative;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: radial-gradient(circle at 50% 0, rgba(34, 227, 124, 0.5), rgba(2, 9, 18, 0.96));
    overflow: hidden;
    padding: 1.4rem 1.4rem 1.8rem;
}

.mcg-ground-strip {
    position: absolute;
    inset: 50% 6%;
    height: 76px;
    margin-top: -38px;
    border-radius: 120px;
    background: repeating-linear-gradient(90deg,
            #497c30 0,
            #497c30 10px,
            #61923f 10px,
            #61923f 20px);
    box-shadow:
        0 0 0 3px rgba(10, 40, 12, 0.9),
        0 26px 40px rgba(0, 0, 0, 0.9);
}

.mcg-pitch {
    position: absolute;
    inset: 50% 40%;
    height: 150px;
    margin-top: -75px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f7f1d7, #e5d2a6);
    box-shadow:
        0 0 0 3px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 0, 0, 0.75);
}

.mcg-stumps-set {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.mcg-stump-mini {
    width: 6px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(to bottom, #fafafa, #f4e9cf);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.mcg-boundary-dots {
    position: absolute;
    inset: 20px 12px 14px;
    border-radius: 999px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    opacity: 0.7;
}

.mcg-hero-ball-orbit {
    position: absolute;
    top: 15%;
    left: 12%;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: orbit-rotate 3.6s linear infinite;
}

.mcg-hero-ball {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, #ffe0c3, #ff9b26);
    box-shadow:
        0 0 15px rgba(255, 155, 38, 0.8),
        0 0 24px rgba(255, 155, 38, 0.4);
}

.mcg-bat {
    position: absolute;
    right: 6%;
    bottom: 12%;
    width: 96px;
    height: 210px;
    transform-origin: bottom right;
    transform: rotate(-20deg);
    animation: bat-swing 2.3s ease-in-out infinite;
}

.mcg-bat-body {
    position: absolute;
    inset: 18% 22% 0 24%;
    border-radius: 12px 12px 28px 28px;
    background: linear-gradient(135deg, #f5e0b7, #f0cb8a);
    box-shadow:
        0 0 18px rgba(0, 0, 0, 0.8),
        0 0 22px rgba(255, 227, 158, 0.7);
}

.mcg-bat-face {
    position: absolute;
    inset: 24% 28% 4%;
    border-radius: 10px 10px 22px 22px;
    border: 2px solid rgba(206, 160, 86, 0.9);
}

.mcg-bat-handle {
    position: absolute;
    top: -2%;
    right: 35%;
    width: 38px;
    height: 80px;
    border-radius: 999px;
    background: linear-gradient(180deg, #171f25, #05090f);
    box-shadow:
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 18px rgba(34, 227, 124, 0.65);
    border: 2px solid rgba(34, 227, 124, 0.8);
}

@keyframes bat-swing {
    0% {
        transform: rotate(-22deg) translateY(0);
    }

    40% {
        transform: rotate(6deg) translateY(-4px);
    }

    100% {
        transform: rotate(-22deg) translateY(0);
    }
}

.mcg-ground-caption {
    position: absolute;
    top: 1.4rem;
    right: 1.6rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.7rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.mcg-ground-caption span {
    color: var(--mcg-green);
}

.mcg-ground-footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.4rem;
    font-size: 0.75rem;
    color: rgba(229, 236, 255, 0.8);
}

.mcg-ground-pill {
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.mcg-glow-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mcg-green);
    box-shadow: 0 0 10px rgba(34, 227, 124, 0.8);
}

/* Section headings */
.mcg-section-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: rgba(229, 236, 255, 0.65);
}

.mcg-section-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.mcg-section-title span {
    background: linear-gradient(120deg, #ffffff, #c8ffd8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mcg-section-sub {
    font-size: 0.95rem;
    color: rgba(229, 236, 255, 0.78);
    max-width: 640px;
}

/* Generic card */
.mcg-card {
    background: var(--mcg-card-bg);
    border-radius: 18px;
    border: 1px solid var(--mcg-border);
    box-shadow: var(--mcg-shadow);
    padding: 1.4rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.mcg-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0 0, rgba(34, 227, 124, 0.21) 0, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mcg-card:hover::before {
    opacity: 1;
}

.mcg-icon-pill {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.16);
    margin-bottom: 0.8rem;
    color: var(--mcg-green);
    box-shadow: 0 0 16px rgba(34, 227, 124, 0.4);
}

.mcg-card h5 {
    font-size: 1.02rem;
    margin-bottom: 0.3rem;
}

.mcg-card p {
    font-size: 0.88rem;
    color: rgba(229, 236, 255, 0.8);
}

/* Services / features */
.mcg-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.5);
    font-size: 0.75rem;
}

.mcg-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(6, 34, 16, 0.9);
    border: 1px solid rgba(34, 227, 124, 0.6);
    font-size: 0.75rem;
    color: #caffdb;
}

.pricing-icon-turf-v2 {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);

  color: #6ee7b7; /* soft green accent */
  background: rgba(255, 255, 255, 0.03);

  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.pricing-icon-turf-v2 i {
  font-size: 26px;
}


/* Mission / vision / goals */
.mcg-split-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--mcg-border);
    background: linear-gradient(120deg, rgba(2, 9, 18, 0.98), rgba(3, 17, 24, 0.98));
}

.mcg-split-gradient {
    background:
        radial-gradient(circle at 0 0, rgba(34, 227, 124, 0.16), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(255, 155, 38, 0.2), transparent 55%);
}

.mcg-pill-label {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* CTA stripe */
.mcg-cta-stripe {
    border-radius: 20px;
    padding: 1.2rem 1.4rem;
    background: linear-gradient(120deg, rgba(34, 227, 124, 0.1), rgba(255, 155, 38, 0.12));
    border: 1px solid rgba(34, 227, 124, 0.5);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mcg-cta-title {
    font-size: 1.02rem;
    font-weight: 600;
}

/* FAQ */
.mcg-accordion .accordion-item {
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
    overflow: hidden;
    background: rgba(2, 9, 18, 0.9);
}

.mcg-accordion .accordion-button {
    background: transparent;
    color: #f5f7fb;
    font-size: 0.9rem;
    padding-block: 0.85rem;
}

.mcg-accordion .accordion-button:not(.collapsed) {
    background: radial-gradient(circle at 0 0, rgba(34, 227, 124, 0.18), transparent 55%);
    color: #ffffff;
    box-shadow: none;
}

.mcg-accordion .accordion-body {
    font-size: 0.86rem;
    color: rgba(229, 236, 255, 0.85);
}

/* Testimonials */
.mcg-testimonial-card {
    border-radius: 18px;
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(125deg, rgba(2, 9, 18, 0.97), rgba(3, 18, 26, 0.98));
    position: relative;
    overflow: hidden;
}

.mcg-testimonial-card::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 0 0, rgba(34, 227, 124, 0.2), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
}

.mcg-testimonial-meta {
    font-size: 0.78rem;
    color: rgba(229, 236, 255, 0.72);
}

.mcg-stars {
    color: #ffd76a;
    font-size: 0.9rem;
}

/* Contact / footer */
.mcg-contact-card {
    border-radius: 16px;
    padding: 1.4rem 1.5rem;
    background: var(--mcg-card-bg);
    border: 1px solid var(--mcg-border);
}

.mcg-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    font-size: 0.86rem;
}

.mcg-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--mcg-green);
    flex-shrink: 0;
}

.mcg-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.4rem 0;
    font-size: 0.8rem;
    color: rgba(229, 236, 255, 0.7);
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(14px);
}

.mcg-footer a {
    color: rgba(229, 236, 255, 0.9);
    text-decoration: none;
}

.mcg-footer a:hover {
    color: var(--mcg-green);
}

/* Floating call/WhatsApp */
.mcg-floating-actions {
    position: fixed;
    right: 1.2rem;
    bottom: 12.4rem;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.mcg-float-btn {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #ffffff;
    box-shadow:
        0 0 20px rgba(0, 0, 0, 0.8),
        0 0 22px rgba(34, 227, 124, 0.6);
    cursor: pointer;
}

.mcg-float-btn.call {
    background: linear-gradient(135deg, #1fe67b, #059f53);
}

.mcg-float-btn.whatsapp {
    background: linear-gradient(135deg, #30d365, #0a9f39);
}

.mcg-float-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* FAQ / testimonial small tag */
.mcg-mini-tag {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(229, 236, 255, 0.7);
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    #hero {
        padding-top: 6.5rem;
    }

    .mcg-hero-ground {
        margin-top: 2.2rem;
    }
}

@media (max-width: 575.98px) {
    .mcg-hero-title {
        font-size: 2rem;
    }

    .mcg-cta-stripe {
        padding-inline: 1rem;
    }

    .mcg-hero-ground {
        border-radius: 24px;
    }
}

/* Sticky Book Slot button on right (below existing floating actions if any) */
.mcg-book-btn {
    position: fixed;
    right: 1.2rem;
    bottom: 8.4rem;
    /* above call/WhatsApp buttons */
    background: linear-gradient(135deg, #ff9b26, #ffe18f);
    box-shadow:
        0 0 20px rgba(0, 0, 0, 0.8),
        0 0 26px rgba(255, 155, 38, 0.7);
    z-index: 1081;
}

.mcg-book-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* Mobile Sticky Bottom Navigation */
.mcg-mobile-nav {
    background: linear-gradient(180deg, rgba(2, 9, 18, 0.98), rgba(0, 0, 0, 0.95));
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
    z-index: 1079;
    /* Below floating buttons */
}

.mcg-mobile-nav .nav-link {
    color: rgba(229, 236, 255, 0.7) !important;
    padding: 0.4rem 0.2rem !important;
    border-radius: 12px;
    position: relative;
    transition: all 0.25s ease;
    flex: 1;
}

.mcg-mobile-nav .nav-link.active {
    color: var(--mcg-green) !important;
    background: rgba(34, 227, 124, 0.15);
    box-shadow:
        0 0 0 2px rgba(34, 227, 124, 0.3),
        0 4px 16px rgba(34, 227, 124, 0.2);
}

.mcg-mobile-nav .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.mcg-nav-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-top: 0.1rem;
    opacity: 0.9;
}

.mcg-mobile-nav .nav-link.active .mcg-nav-label {
    text-shadow: 0 0 8px rgba(34, 227, 124, 0.6);
}

/* Adjust floating buttons position to sit above bottom nav */
/* .mcg-floating-actions,
.mcg-book-btn {
  bottom: 5.8rem !important; 
 
} */

/* Safe area for iPhone notch */
@supports (padding: max(0px)) {
    .mcg-mobile-nav {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Responsive: hide labels on very small screens */
@media (max-width: 360px) {
    .mcg-nav-label {
        font-size: 0.6rem;
    }
}


/* CEO Section */
.ceo-spotlight-section .ceo-card {
    background: linear-gradient(135deg, rgba(6, 16, 30, 0.95), rgba(2, 9, 18, 0.9));
}

.ceo-spotlight-section .ceo-photo {
    background: radial-gradient(circle, #22e37c, #ff9b26);
}

.ceo-spotlight-section .shadow-ceo-glow {
    box-shadow: 0 0 40px rgba(34, 227, 124, 0.4);
}

.ceo-spotlight-section .text-gradient-ceo {
    background: linear-gradient(120deg, #22e37c, #ff9b26);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ceo-spotlight-section .bg-gradient-green {
    background: linear-gradient(135deg, #22e37c, #11995e);
}

.ceo-spotlight-section .bg-gradient-orange {
    background: linear-gradient(135deg, #ff9b26, #e67e22);
}

.ceo-spotlight-section .stat-big {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(120deg, var(--mcg-green), var(--mcg-orange));
    -webkit-background-clip: text;
    color: transparent;
}

/* About Section */
.about-core-section .bg-pitch-gradient {
    background: linear-gradient(180deg, #f7f1d7 0%, #e5d2a6 50%, #d2b48c 100%);
}

.about-core-section .shadow-pitch-glow {
    box-shadow: 0 20px 60px rgba(73, 124, 48, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.about-core-section .animate-orbit-ball {
    animation: orbitBall 4s linear infinite;
}

@keyframes orbitBall {
    0% {
        transform: rotate(0deg) translateX(40px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(40px) rotate(-360deg);
    }
}

.about-core-section .animate-bat-swing {
    animation: batSwing 3s ease-in-out infinite;
}

@keyframes batSwing {

    0%,
    100% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

.about-core-section .bg-hover-green:hover {
    background: rgba(34, 227, 124, 0.1);
    border: 1px solid rgba(34, 227, 124, 0.3);
}

.about-core-section .feature-icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials */
.testimonials-mosaic-section .bg-gradient-testimonial {
    background: linear-gradient(135deg, rgba(34, 227, 124, 0.15), rgba(255, 155, 38, 0.1));
}

.testimonials-mosaic-section .avatar-gradient {
    background: linear-gradient(135deg, #22e37c, #11995e);
}

.testimonials-mosaic-section .avatar-orange {
    background: linear-gradient(135deg, #ff9b26, #e67e22);
}

.testimonials-mosaic-section .bg-success-soft {
    background: rgba(34, 227, 124, 0.15);
}

.testimonials-mosaic-section .stars-rating-large i {
    text-shadow: 0 0 10px rgba(255, 215, 106, 0.8);
}

/* Shared */
.section-label-ribbon {
    background: linear-gradient(135deg, rgba(34, 227, 124, 0.2), rgba(255, 155, 38, 0.2));
    border: 1px solid rgba(34, 227, 124, 0.4);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.text-gradient-green {
    background: linear-gradient(120deg, #22e37c, #11995e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-gradient-orange {
    background: linear-gradient(120deg, #ff9b26, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bg-card-ceo {
    background: rgba(6, 16, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.bg-card-ceo:hover {
    background: rgba(34, 227, 124, 0.05);
    border-color: rgba(34, 227, 124, 0.3);
    transform: translateY(-5px);
}

.gallery {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: animate 60s linear infinite;
    animation-play-state: running;
}

.gallery:hover,
.gallery.paused {
    animation-play-state: paused;
}

@keyframes animate {
    0% {
        transform: perspective(1000px) rotateY(0deg);
    }
    100% {
        transform: perspective(1000px) rotateY(360deg);
    }
}

/* Dark input base */
input[type="date"],
input[type="time"] {
  background-color: #000;       
  color: #fff;                 
  border: 1px solid #ffc107;    
  border-radius: 8px;
  padding: 0.35rem 0.5rem;
  font-size: 0.875rem;
  transition: 0.3s ease;
}

input[type="date"]:focus,
input[type="time"]:focus {
  outline: none;
  border-color: #ffb703;
  box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.25); 
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);  
  opacity: 0.8;
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}


.gallery span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i) * 40deg)) translateZ(400px);
    -webkit-box-reflect: below 0px linear-gradient(transparent, transparent, #0004);
}

.gallery span img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
}

.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Image keeps its own size */
.image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}



.body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #000000;
}


/* Section background */
.contact-section {
    background: linear-gradient(130deg, #0b0f0e, #020202);
    padding-bottom: 80px;
}

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: 0.3s;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 120, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 100, 0.2);
}

/* Glass Inputs */
.glass-input {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #fff !important;
}

.glass-input::placeholder {
    color: #97a1a1;
}

.glass-input:focus {
    border-color: #00ff88 !important;
    box-shadow: 0 0 10px rgba(0,255,120,0.3);
    color: #fff;
}

/* Green Text */
.text-green {
    color: #00ff88;
}

/* Title Styling */
.text-glass-title {
    color: #00ff88;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Button */
.btn-green {
    background: #00ff88;
    color: #000;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s;
}

.btn-green:hover {
    background: #00cc6a;
    box-shadow: 0 0 10px rgba(0,255,120,0.4);
}

/* Map border */
iframe {
    border-radius: 18px;
}

.mcg-footer {
  padding-bottom: 20px; /* A default value */
}

/* 2. Media Query for Mobile Screens */
/* This style will only apply when the screen is 767px wide or less */
@media screen and (max-width: 767px) {
  .mcg-footer {
    /* Adjust this value (e.g., 50px, 80px, 1em) as needed. 
       This adds extra space at the very bottom of the footer. */
    padding-bottom: 100px; 
  }
}