/* ═══════════════════════════════════════
       BRAND TOKENS
    ═══════════════════════════════════════ */
        :root {
            --gold: #C9A227;
            --gold2: #E8B84B;
            --g: #4CAF50;
            --r: #E53935;
            --b: #42A5F5;
            --y: #F5C518;
            --dark: #0d0d0d;
            --dark2: #111111;
            --dark3: #161616;
            --card: rgba(255, 255, 255, .04);
            --border: rgba(255, 255, 255, .08);
        }

        /* marketing-agency main-color override */
        body.marketing-agency {
            --main-color: #C9A227;
        }

        /* ═══════════════════════════════════════
       GLOBAL DARK SITE TEXT FIX
       The theme body color is #1f1f1f — we
       override ALL text on our dark sections
    ═══════════════════════════════════════ */
        .lrc-hero,
        .lrc-sec,
        .lrc-stats,
        .lrc-gallery,
        .lrc-testim,
        .lrc-contact,
        .lrc-footer,
        .lrc-marq {
            color: rgba(255, 255, 255, .87) !important;
        }

        /* Headings */
        .lrc-hero h1,
        .lrc-hero h2,
        .lrc-hero h3,
        .lrc-hero h4,
        .lrc-hero h5,
        .lrc-hero h6,
        .lrc-sec h1,
        .lrc-sec h2,
        .lrc-sec h3,
        .lrc-sec h4,
        .lrc-sec h5,
        .lrc-sec h6,
        .lrc-stats h1,
        .lrc-stats h2,
        .lrc-stats h3,
        .lrc-stats h4,
        .lrc-stats h5,
        .lrc-stats h6,
        .lrc-gallery h1,
        .lrc-gallery h2,
        .lrc-gallery h3,
        .lrc-gallery h4,
        .lrc-gallery h5,
        .lrc-gallery h6,
        .lrc-testim h1,
        .lrc-testim h2,
        .lrc-testim h3,
        .lrc-testim h4,
        .lrc-testim h5,
        .lrc-testim h6,
        .lrc-contact h1,
        .lrc-contact h2,
        .lrc-contact h3,
        .lrc-contact h4,
        .lrc-contact h5,
        .lrc-contact h6,
        .lrc-footer h1,
        .lrc-footer h2,
        .lrc-footer h3,
        .lrc-footer h4,
        .lrc-footer h5,
        .lrc-footer h6 {
            color: #ffffff !important;
        }

        /* Para / spans */
        .lrc-hero p,
        .lrc-sec p,
        .lrc-gallery p,
        .lrc-testim p,
        .lrc-contact p,
        .lrc-footer p {
            color: rgba(255, 255, 255, .65) !important;
        }

        .lrc-hero span,
        .lrc-sec span,
        .lrc-gallery span,
        .lrc-testim span,
        .lrc-contact span,
        .lrc-footer span {
            color: inherit;
        }

        /* Links */
        .lrc-sec a:not(.btn-gold):not(.btn-outline):not(.butn):not(.wa-float),
        .lrc-footer a,
        .lrc-contact a:not(.btn-gold):not(.butn) {
            color: rgba(255, 255, 255, .75);
            transition: color .2s;
        }

        .lrc-sec a:hover,
        .lrc-footer a:hover {
            color: var(--gold);
        }

        /* Opacity helpers re-scoped */
        .lrc-hero .dim,
        .lrc-sec .dim,
        .lrc-gallery .dim,
        .lrc-testim .dim {
            color: rgba(255, 255, 255, .55) !important;
        }

        /* ═══════════════════════════════════════
       WHATSAPP FLOAT
    ═══════════════════════════════════════ */
        .wa-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 64px;
            height: 64px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            text-decoration: none;
            box-shadow: 0 4px 24px rgba(37, 211, 102, .45);
            transition: transform .3s, box-shadow .3s;
        }

        .wa-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 32px rgba(37, 211, 102, .65);
        }

        .wa-float svg {
            width: 34px;
            height: 34px;
            fill: #fff;
        }

        @keyframes waPulse {

            0%,
            100% {
                box-shadow: 0 4px 24px rgba(37, 211, 102, .45);
            }

            50% {
                box-shadow: 0 4px 40px rgba(37, 211, 102, .75), 0 0 0 10px rgba(37, 211, 102, .1);
            }
        }

        .wa-float {
            animation: waPulse 2.5s ease-in-out infinite;
        }

        /* ═══════════════════════════════════════
       NAVBAR — DARK SITE OVERRIDES
       All nav links white (site is 100% dark,
       no light sections so this is always safe)
    ═══════════════════════════════════════ */
        /* Hamburger icon — white */
        .navbar .icon-bar {
            color: #fff !important;
        }

        /* Contact button "Book Now" — gold outline style */
        .navbar .contact-button .butn {
            border-color: rgba(201, 162, 39, .5) !important;
            color: #fff !important;
        }

        .navbar .contact-button .butn:hover {
            background: var(--gold) !important;
            border-color: var(--gold) !important;
            color: #0d0d0d !important;
        }

        /* Active nav link (set by JS on scroll) */
        .navbar-nav .nav-link.lrc-active {
            color: var(--gold) !important;
        }

        .navbar-nav .nav-link.lrc-active::after {
            content: '';
            display: block;
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            margin: 2px auto 0;
        }

        /* Scrolled state: frosted glass — more transparent */
        .navbar.nav-scroll {
            background: rgba(10, 10, 10, .72) !important;
            border-bottom: 1px solid rgba(255, 255, 255, .06) !important;
            -webkit-backdrop-filter: blur(20px) !important;
            backdrop-filter: blur(20px) !important;
            box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
        }

        /* ═══════════════════════════════════════
       LOADER
    ═══════════════════════════════════════ */
        .loader-wrap-heading .load-text span {
            color: var(--gold);
        }

        /* ═══════════════════════════════════════
       LOGO
    ═══════════════════════════════════════ */
        .navbar .logo {
            height: 90px;
            display: inline-flex;
            align-items: center;
        }

        .lrc-logo {
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
        }

        .lrc-logo img {
            height: 90px;
            width: auto;
            display: block;
            filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
            transition: filter .3s, transform .3s;
        }

        .lrc-logo img:hover {
            filter: drop-shadow(0 0 14px rgba(201,162,39,0.5));
            transform: scale(1.04);
        }

        .lrc-footer .lrc-logo img {
            height: 90px;
        }

        /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
        .lrc-hero {
            background: var(--dark);
            min-height: 100vh;
            padding: 150px 0 80px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .lrc-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to right, rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.7)),
                url('https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&q=80&w=1920');
            background-size: cover;
            background-position: center;
            opacity: 0.4;
            pointer-events: none;
        }

        .lrc-hero-overlay {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 70% at 8% 50%, rgba(201, 162, 39, .13) 0%, transparent 65%),
                radial-gradient(ellipse 45% 55% at 88% 15%, rgba(76, 175, 80, .07) 0%, transparent 60%),
                radial-gradient(ellipse 40% 60% at 50% 90%, rgba(66, 165, 245, .05) 0%, transparent 60%);
            pointer-events: none;
            z-index: 1;
        }

        .lrc-hero::after {
            content: '&#9820;';
            position: absolute;
            right: -80px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 600px;
            line-height: 1;
            opacity: .025;
            user-select: none;
            pointer-events: none;
            color: #fff;
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201, 162, 39, .13);
            border: 1px solid rgba(201, 162, 39, .40);
            color: var(--gold) !important;
            padding: 7px 22px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 28px;
        }

        .lrc-hero h1 {
            font-size: clamp(44px, 6.5vw, 88px);
            font-weight: 800;
            line-height: 1.04;
            color: #fff !important;
        }

        .lrc-hero h1 .g {
            color: var(--gold) !important;
        }

        .lrc-hero .sub {
            font-size: 18px;
            line-height: 1.75;
            color: rgba(255, 255, 255, .65) !important;
            max-width: 560px;
            margin: 28px 0 44px;
        }

        .hero-nums {
            display: flex;
            gap: 0;
            flex-wrap: wrap;
            border: 1px solid rgba(255, 255, 255, .09);
            border-radius: 16px;
            overflow: hidden;
            margin-top: 60px;
        }

        .hero-num {
            flex: 1;
            min-width: 100px;
            padding: 24px 20px;
            border-right: 1px solid rgba(255, 255, 255, .09);
            text-align: center;
        }

        .hero-num:last-child {
            border-right: none;
        }

        .hero-num .n {
            font-size: 36px;
            font-weight: 800;
            color: var(--gold) !important;
            display: block;
        }

        .hero-num .l {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, .45) !important;
            margin-top: 4px;
            display: block;
        }

        /* Mode badges floating card */
        .hero-card {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .09);
            border-radius: 20px;
            padding: 36px 32px;
            position: relative;
        }

        .dice-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            margin-bottom: 16px;
        }

        .dice {
            font-size: 78px;
            line-height: 1;
            display: inline-block;
            transform-origin: center center;
        }

        /* Phase 1 0-18%  : dono apni jagah ruk kar wait karte hain          */
        /* Phase 2 18-23% : ek doosre ki taraf slide karte hain              */
        /* Phase 3 23-27% : takrao — impact flash + scale up                 */
        /* Phase 4 27-60% : bikh jaate hain — wild tumble / fall             */
        /* Phase 5 60-85% : settle — gentle continuous rolling               */
        /* Phase 6 85-100%: rest before next loop                            */

        @keyframes diceCollide1 {
            0%   { transform: translate(0,    0)    rotate(0deg)    scale(1);    }
            18%  { transform: translate(0,    0)    rotate(0deg)    scale(1);    }
            23%  { transform: translate(44px, 0)    rotate(0deg)    scale(1);    }
            27%  { transform: translate(42px, -10px) rotate(-22deg) scale(1.18); }
            36%  { transform: translate(-28px, 6px)  rotate(-200deg) scale(0.94); }
            48%  { transform: translate(10px, -4px)  rotate(-310deg) scale(1.03); }
            58%  { transform: translate(0,    0)    rotate(-360deg) scale(1);    }
            65%  { transform: translate(0,    0)    rotate(-367deg) scale(1);    }
            74%  { transform: translate(0,    0)    rotate(-353deg) scale(1);    }
            83%  { transform: translate(0,    0)    rotate(-361deg) scale(1);    }
            100% { transform: translate(0,    0)    rotate(-360deg) scale(1);    }
        }

        @keyframes diceCollide2 {
            0%   { transform: translate(0,    0)     rotate(0deg)    scale(1);    }
            18%  { transform: translate(0,    0)     rotate(0deg)    scale(1);    }
            23%  { transform: translate(-44px, 0)    rotate(0deg)    scale(1);    }
            27%  { transform: translate(-42px, -10px) rotate(22deg)  scale(1.18); }
            36%  { transform: translate(28px,  6px)   rotate(200deg) scale(0.94); }
            48%  { transform: translate(-10px, -4px)  rotate(310deg) scale(1.03); }
            58%  { transform: translate(0,    0)     rotate(360deg)  scale(1);    }
            65%  { transform: translate(0,    0)     rotate(367deg)  scale(1);    }
            74%  { transform: translate(0,    0)     rotate(353deg)  scale(1);    }
            83%  { transform: translate(0,    0)     rotate(361deg)  scale(1);    }
            100% { transform: translate(0,    0)     rotate(360deg)  scale(1);    }
        }

        /* impact flash on the wrapper */
        @keyframes collisionFlash {
            0%, 22%, 28%, 100% { filter: drop-shadow(0 4px 20px rgba(201,162,39,.45)); }
            25%                 { filter: drop-shadow(0 0  30px rgba(255,220,80,.95)) brightness(1.4); }
        }

        .dice-1 {
            animation: diceCollide1 5s cubic-bezier(.4,0,.2,1) infinite;
        }

        .dice-2 {
            animation: diceCollide2 5s cubic-bezier(.4,0,.2,1) infinite;
        }

        .dice-wrap {
            animation: collisionFlash 5s ease-in-out infinite;
        }

        .mode-badge {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.5px;
            margin: 4px;
        }

        .mb-g {
            background: rgba(76, 175, 80, .2);
            border: 1px solid rgba(76, 175, 80, .4);
            color: #7ED97E !important;
        }

        .mb-y {
            background: rgba(245, 197, 24, .2);
            border: 1px solid rgba(245, 197, 24, .4);
            color: #F5C518 !important;
        }

        .mb-r {
            background: rgba(229, 57, 53, .2);
            border: 1px solid rgba(229, 57, 53, .4);
            color: #FF7070 !important;
        }

        .mb-b {
            background: rgba(66, 165, 245, .2);
            border: 1px solid rgba(66, 165, 245, .4);
            color: #74C8FF !important;
        }

        .hero-card .card-label {
            margin-top: 20px;
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, .4) !important;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* ═══════════════════════════════════════
       MARQUEE
    ═══════════════════════════════════════ */
        .lrc-marq {
            background: rgba(201, 162, 39, .07);
            border-top: 1px solid rgba(201, 162, 39, .22);
            border-bottom: 1px solid rgba(201, 162, 39, .22);
        }

        .lrc-marq .item h4 {
            color: rgba(255, 255, 255, .8) !important;
        }

        .lrc-marq .gold h4 {
            color: var(--gold) !important;
        }

        /* ═══════════════════════════════════════
       SECTION COMMONS
    ═══════════════════════════════════════ */
        .lrc-sec {
            background: var(--dark);
            padding: 110px 0;
        }

        .lrc-sec.alt {
            background: var(--dark2);
        }

        .lrc-sec.alt2 {
            background: var(--dark3);
        }

        .sec-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold) !important;
            margin-bottom: 16px;
            display: block;
        }

        .sec-h {
            font-size: clamp(36px, 4.5vw, 62px);
            font-weight: 400;
            color: #fff !important;
        }

        .sec-h .it {
            font-style: italic;
            font-family: 'Playfair Display', serif;
            color: var(--gold) !important;
        }

        .hl-box {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            border-left: 4px solid var(--gold);
            border-radius: 16px;
            padding: 42px 38px;
            height: 100%;
        }

        .check-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 24px;
        }

        .check-list span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, .75) !important;
        }

        .check-list i {
            color: var(--gold) !important;
            font-size: 16px;
        }

        /* ═══════════════════════════════════════
       STATS BAR
    ═══════════════════════════════════════ */
        .lrc-stats {
            background: #090909;
            border-top: 1px solid rgba(255, 255, 255, .06);
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            padding: 80px 0;
        }

        .stat-n {
            font-size: clamp(52px, 6vw, 80px);
            font-weight: 800;
            color: var(--gold) !important;
            line-height: 1;
        }

        .stat-l {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, .45) !important;
            margin-top: 10px;
        }

        /* ═══════════════════════════════════════
       ACCORDION — text + background overrides
    ═══════════════════════════════════════ */
        /* Kill Bootstrap's white accordion background */
        .lrc-sec .accordion-item {
            --bs-accordion-bg: transparent !important;
            background-color: transparent !important;
            background: transparent !important;
        }

        .lrc-sec .accordion-button,
        .lrc-sec .accordion-button:not(.collapsed) {
            background: transparent !important;
            background-color: transparent !important;
        }

        .lrc-sec .accordion-item h3,
        .lrc-sec .accordion-item h6 {
            color: #fff !important;
        }

        .lrc-sec .accordion-body p {
            color: rgba(255, 255, 255, .65) !important;
        }

        /* Tags: spaced pill badges */
        .lrc-sec .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .lrc-sec .tags a {
            color: rgba(255, 255, 255, .55) !important;
            border: 1px solid rgba(255, 255, 255, .12);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            letter-spacing: 1px;
            text-decoration: none;
            transition: border-color .2s, color .2s;
        }

        .lrc-sec .tags a:hover {
            color: var(--gold) !important;
            border-color: rgba(201, 162, 39, .4);
        }

        /* ═══════════════════════════════════════
       GALLERY
    ═══════════════════════════════════════ */
        .lrc-gallery {
            background: var(--dark2);
            padding: 110px 0;
        }

        .gal-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
        }

        .gal-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .6s ease;
        }

        .gal-item:hover img {
            transform: scale(1.06);
        }

        .gal-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .25) 50%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 28px;
            transition: background .3s;
        }

        .gal-item:hover .gal-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .35) 60%, rgba(0, 0, 0, .1) 100%);
        }

        .gal-tag {
            display: inline-block;
            background: var(--gold);
            color: #0d0d0d !important;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 10px;
            width: fit-content;
        }

        .gal-overlay h5 {
            color: #fff !important;
            font-weight: 700;
            margin: 0;
            font-size: 18px;
        }

        .gal-overlay p {
            color: rgba(255, 255, 255, .65) !important;
            font-size: 13px;
            margin: 6px 0 0;
        }

        .h-300 {
            height: 300px;
        }

        .h-400 {
            height: 400px;
        }

        .h-full {
            height: 100%;
            min-height: 300px;
        }

        /* ═══════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════ */
        .lrc-testim {
            background: var(--dark3);
            padding: 110px 0;
        }

        .testim-card {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 20px;
            padding: 44px 40px;
            height: 100%;
            transition: border-color .3s, transform .3s;
            position: relative;
        }

        .testim-card:hover {
            border-color: rgba(201, 162, 39, .4);
            transform: translateY(-4px);
        }

        .testim-card::before {
            content: '\201C';
            font-size: 120px;
            line-height: 1;
            font-family: Georgia, serif;
            color: rgba(201, 162, 39, .15);
            position: absolute;
            top: 16px;
            left: 30px;
        }

        .stars {
            color: var(--gold) !important;
            font-size: 15px;
            margin-bottom: 20px;
        }

        .testim-card blockquote {
            font-size: 16px;
            line-height: 1.75;
            color: rgba(255, 255, 255, .75) !important;
            margin: 0 0 32px;
            font-style: italic;
        }

        .testim-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .testim-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid rgba(201, 162, 39, .4);
            flex-shrink: 0;
        }

        .testim-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testim-name {
            font-weight: 700;
            color: #fff !important;
            font-size: 16px;
        }

        .testim-role {
            font-size: 12px;
            color: rgba(255, 255, 255, .45) !important;
            margin-top: 3px;
        }

        /* ═══════════════════════════════════════
       EXPERIENCE SECTION
    ═══════════════════════════════════════ */
        .step-row {
            display: flex;
            align-items: flex-start;
            gap: 22px;
            margin-bottom: 44px;
        }

        .step-row:last-child {
            margin-bottom: 0;
        }

        .step-num {
            width: 56px;
            height: 56px;
            background: var(--gold);
            color: #0d0d0d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .step-row h6 {
            color: #fff !important;
            font-size: 17px;
            margin-bottom: 8px;
        }

        .step-row p {
            color: rgba(255, 255, 255, .6) !important;
            font-size: 14px;
            line-height: 1.65;
            margin: 0;
        }

        /* USP feature cards */
        .feat-card {
            padding: 36px 30px;
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: all .3s;
            position: relative;
        }

        .feat-card:hover {
            border-color: rgba(201, 162, 39, .4);
            transform: translateY(-4px);
        }

        .feat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: var(--gold);
            border-radius: 3px 0 0 3px;
            transition: height .3s;
        }

        .feat-card:hover::before {
            height: 100%;
        }

        .feat-icon {
            width: 54px;
            height: 54px;
            background: rgba(201, 162, 39, .12);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--gold) !important;
            margin-bottom: 20px;
        }

        .feat-card h5 {
            color: #fff !important;
            font-weight: 700;
            font-size: 17px;
            margin-bottom: 12px;
        }

        .feat-card p {
            color: rgba(255, 255, 255, .6) !important;
            font-size: 14px;
            line-height: 1.65;
            margin: 0;
        }

        /* CTA box */
        .cta-box {
            background: rgba(201, 162, 39, .08);
            border: 1px solid rgba(201, 162, 39, .25);
            border-radius: 24px;
            padding: 52px 44px;
            text-align: center;
        }

        .cta-box h3 {
            color: var(--gold) !important;
        }

        .cta-box p {
            color: rgba(255, 255, 255, .65) !important;
        }

        /* ═══════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════ */
        .btn-gold {
            background: var(--gold);
            color: #0d0d0d !important;
            padding: 15px 38px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all .3s;
            text-decoration: none;
            border: none;
            cursor: pointer;
        }

        .btn-gold:hover {
            background: #fff !important;
            color: #0d0d0d !important;
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 2px solid rgba(255, 255, 255, .22);
            color: #fff !important;
            padding: 13px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all .3s;
            text-decoration: none;
        }

        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold) !important;
        }

        /* ═══════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════ */
        .lrc-contact {
            background: var(--dark);
            padding: 110px 0;
        }

        .lrc-contact .info-box h4 {
            color: #fff !important;
        }

        .lrc-contact .morinfo h6 {
            color: #fff !important;
        }

        .lrc-contact .morinfo p {
            color: rgba(255, 255, 255, .65) !important;
        }

        /* Form fields — visible outlined style */
        #lrc-form input,
        #lrc-form textarea {
            background: rgba(255, 255, 255, .04) !important;
            border: 1px solid rgba(255, 255, 255, .14) !important;
            border-radius: 10px !important;
            color: rgba(255, 255, 255, .9) !important;
            padding: 14px 20px !important;
            transition: border-color .25s, background .25s;
            width: 100%;
        }

        #lrc-form input:focus,
        #lrc-form textarea:focus {
            border-color: rgba(201, 162, 39, .55) !important;
            background: rgba(201, 162, 39, .04) !important;
            outline: none;
        }

        #lrc-form input::placeholder,
        #lrc-form textarea::placeholder {
            color: rgba(255, 255, 255, .3) !important;
        }

        #lrc-form select {
            width: 100%;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 10px;
            color: rgba(255, 255, 255, .7) !important;
            padding: 14px 20px;
            font-size: 15px;
            outline: none;
            font-family: inherit;
            cursor: pointer;
            transition: border-color .25s;
            -webkit-appearance: none;
            appearance: none;
        }

        #lrc-form select:focus {
            border-color: rgba(201, 162, 39, .55);
        }

        #lrc-form select option {
            background: #111;
            color: #fff;
        }

        .wa-link {
            color: #25D366 !important;
            font-weight: 600;
            text-decoration: none;
        }

        .wa-link:hover {
            color: #1ebe5c !important;
        }

        /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
        .lrc-footer {
            background: var(--dark);
            padding-bottom: 0 !important;
        }

        .lrc-footer p {
            margin-bottom: 0 !important;
        }


        /* ═══════════════════════════════════════
       UTILITIES
    ═══════════════════════════════════════ */
        .text-gold {
            color: var(--gold) !important;
        }

        .text-white {
            color: #fff !important;
        }

        .wa-color {
            color: #25D366 !important;
        }

        .d-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            align-items: center;
        }

        .mt-12 {
            margin-top: 12px;
        }

        .mt-20 {
            margin-top: 20px;
        }

        .mt-30 {
            margin-top: 30px;
        }

        .mt-50 {
            margin-top: 50px;
        }

        .mt-60 {
            margin-top: 60px;
        }

        .mb-60 {
            margin-bottom: 60px;
        }

        @media(max-width:991px) {
            .lrc-sec {
                padding: 70px 0;
            }

            .lrc-gallery {
                padding: 70px 0;
            }

            .lrc-testim {
                padding: 70px 0;
            }

            .lrc-contact {
                padding: 70px 0;
            }
        }

        /* ═══════════════════════════════════════
       UI POLISH — ROUND 2
    ═══════════════════════════════════════ */

        /* Italic gold "Royalty" word */
        .play-text {
            font-style: italic;
            font-family: 'Playfair Display', serif;
            color: var(--gold) !important;
        }

        /* Accordion number → gold circle badge */
        .lrc-sec .accordion-header h6 {
            width: 46px;
            height: 46px;
            background: rgba(201, 162, 39, .10);
            border: 1px solid rgba(201, 162, 39, .30);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 15px;
            color: var(--gold) !important;
            transition: all .3s;
            margin: 0;
            line-height: 1;
            flex-shrink: 0;
        }

        .lrc-sec .accordion-button:not(.collapsed) h6 {
            background: var(--gold);
            color: #0d0d0d !important;
            border-color: var(--gold);
            box-shadow: 0 4px 20px rgba(201, 162, 39, .35);
        }

        /* Accordion open item: gold left border */
        .lrc-sec .accordion-item {
            border-left: 3px solid transparent;
            padding-left: 10px;
            border-radius: 6px;
            transition: border-color .3s, background .3s;
        }

        .lrc-sec .accordion-item.active,
        .lrc-sec .accordion-item:has(.show) {
            border-left-color: var(--gold);
            background: rgba(201, 162, 39, .03);
            border-radius: 6px;
        }

        /* Keep accordion h3 white and properly sized */
        .lrc-sec .accordion-header h3 {
            color: #fff !important;
            font-size: 17px;
            font-weight: 600;
        }

        /* Feat-card icon color variants (LUDO brand: G/Y/R/B) */
        .feat-icon-g {
            background: rgba(76, 175, 80, .18) !important;
            color: #7ED97E !important;
        }

        .feat-icon-y {
            background: rgba(245, 197, 24, .18) !important;
            color: #F5C518 !important;
        }

        .feat-icon-r {
            background: rgba(229, 57, 53, .18) !important;
            color: #FF7070 !important;
        }

        .feat-icon-b {
            background: rgba(66, 165, 245, .18) !important;
            color: #74C8FF !important;
        }

        /* Feat-card icon hop animation */
        .feat-icon {
            transition: transform .3s;
        }

        .feat-card:hover .feat-icon {
            transform: scale(1.12) rotate(-6deg);
        }

        /* Stats bar: center text + column separators */
        .stat-n,
        .stat-l {
            text-align: center;
            display: block;
        }

        .lrc-stats .col-lg-3 {
            position: relative;
        }

        .lrc-stats .col-lg-3:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 15%;
            height: 70%;
            width: 1px;
            background: rgba(255, 255, 255, .09);
        }

        /* Hero card subtle glow pulse */
        @keyframes cardGlow {

            0%,
            100% {
                box-shadow: 0 0 0 1px rgba(201, 162, 39, .08), 0 24px 64px rgba(0, 0, 0, .5);
            }

            50% {
                box-shadow: 0 0 0 1px rgba(201, 162, 39, .22), 0 24px 64px rgba(0, 0, 0, .5), 0 0 50px rgba(201, 162, 39, .10);
            }
        }

        .hero-card {
            animation: cardGlow 5s ease-in-out infinite;
        }

        /* Testimonial: gold top accent line on hover */
        .testim-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 15%;
            right: 15%;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity .3s;
        }

        .testim-card:hover::after {
            opacity: 1;
        }

        /* Section divider: thin gold gradient line */
        .sec-divider {
            height: 1px;
            margin: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(201, 162, 39, .28) 30%, rgba(201, 162, 39, .28) 70%, transparent 100%);
        }

        /* Gallery subtle radial tint at bottom */
        .lrc-gallery {
            background-image: radial-gradient(ellipse 80% 40% at 50% 100%, rgba(201, 162, 39, .05) 0%, transparent 70%);
        }

        /* Contact form gold submit button */
        #lrc-form .btn-submit {
            background: var(--gold);
            color: #0d0d0d !important;
            padding: 15px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all .3s;
            border: none;
            cursor: pointer;
            flex: 1;
            min-width: 180px;
        }

        #lrc-form .btn-submit:hover {
            background: #fff !important;
            color: #0d0d0d !important;
            transform: translateY(-2px);
        }

        /* Placeholder notice styling */
        .placeholder-note {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 20px;
            padding: 6px 18px;
            font-size: 12px;
            color: rgba(255, 255, 255, .35) !important;
            margin-top: 30px;
        }

        /* ═══════════════════════════════════════
           MOBILE RESPONSIVENESS & MENUS (ROUND 3)
           ═══════════════════════════════════════ */
        @media (max-width: 991px) {
            /* 1. Mobile Menu Dropdown Panel & Overlap Fix */
            .navbar .navbar-collapse {
                background: rgba(13, 13, 13, 0.98) !important;
                -webkit-backdrop-filter: blur(25px) !important;
                backdrop-filter: blur(25px) !important;
                border: 1px solid rgba(255, 255, 255, 0.08) !important;
                border-radius: 16px !important;
                padding: 24px !important;
                margin-top: 15px !important;
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8) !important;
            }

            /* Container overflow fix for Bootstrap mobile expand */
            .navbar .container {
                overflow: visible !important;
            }

            /* Links inside mobile menu */
            .navbar-nav {
                margin-bottom: 15px !important;
            }
            
            .navbar-nav .nav-item {
                width: 100% !important;
                text-align: center !important;
                margin-bottom: 6px !important;
            }
            
            .navbar-nav .nav-item:last-child {
                margin-bottom: 0 !important;
            }
            
            .navbar-nav .nav-link {
                padding: 12px 20px !important;
                display: block !important;
                border-radius: 8px !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
                transition: background 0.2s, color 0.2s !important;
                color: rgba(255, 255, 255, 0.85) !important;
            }
            
            .navbar-nav .nav-link:hover,
            .navbar-nav .nav-link.lrc-active {
                background: rgba(201, 162, 39, 0.1) !important;
                color: var(--gold) !important;
                border-bottom-color: rgba(201, 162, 39, 0.2) !important;
            }
            
            /* Remove dot below active nav link in mobile menu as it is not needed and looks messy */
            .navbar-nav .nav-link.lrc-active::after {
                display: none !important;
            }


            /* 2. Logo & Toggler Scaling Down on Mobile */
            .navbar .logo,
            .lrc-logo {
                height: 65px !important;
            }
            
            .lrc-logo img {
                height: 65px !important;
            }
            
            .navbar-toggler {
                border-color: rgba(255, 255, 255, 0.15) !important;
                padding: 6px 10px !important;
            }

            /* 3. Spacing, Gaps, and Padding Overrides */
            /* Add scroll-margin-top to prevent sticky header cutoffs */
            section[id], header[id] {
                scroll-margin-top: 85px !important;
            }

            /* Sections Padding: Clean breathing space */
            .lrc-sec {
                padding: 85px 0 !important;
            }

            .lrc-gallery {
                padding: 85px 0 !important;
            }

            .lrc-testim {
                padding: 85px 0 !important;
            }

            .lrc-contact {
                padding: 85px 0 !important;
            }

            /* Column stacks margins (proper gap between vertically stacked components) */
            .row > [class*="col-"] {
                margin-bottom: 24px;
            }
            
            .row > [class*="col-"]:last-child {
                margin-bottom: 0;
            }

            /* Specific fixes for Hero */
            .lrc-hero {
                padding: 130px 0 60px !important;
                min-height: auto !important;
            }

            .lrc-hero h1 {
                font-size: 38px !important;
                line-height: 1.15 !important;
                text-align: center !important;
            }

            .lrc-hero .sub {
                font-size: 15px !important;
                line-height: 1.6 !important;
                text-align: center !important;
                margin: 20px auto 30px !important;
            }

            .lrc-hero .hero-pill {
                display: flex !important;
                justify-content: center !important;
                text-align: center !important;
                margin: 0 auto 24px !important;
                font-size: 10px !important;
                width: fit-content !important;
            }

            .lrc-hero .d-row {
                justify-content: center !important;
                gap: 12px !important;
            }

            .lrc-hero .d-row a {
                width: 100% !important;
                text-align: center !important;
                justify-content: center !important;
            }

            .hero-card {
                margin-top: 40px !important;
                padding: 28px 20px !important;
            }

            /* About details */
            .hl-box {
                padding: 30px 24px !important;
            }

            .check-list {
                gap: 8px !important;
            }

            .check-list span {
                width: 100% !important; /* Full width list on mobile is cleaner */
                font-size: 13px !important;
            }

            /* Features section accordion items */
            .lrc-sec .accordion-item {
                margin-bottom: 20px !important;
            }

            .lrc-sec .accordion-button {
                padding: 15px 10px !important;
            }

            .lrc-sec .accordion-button h3 {
                font-size: 14px !important;
            }

            .lrc-sec .accordion-body {
                padding: 10px 10px 20px !important;
            }

            /* Gallery Items */
            .gal-item {
                margin-bottom: 16px !important;
            }
            
            .gal-item.h-400,
            .gal-item.h-300,
            .gal-item.h-full {
                height: 250px !important;
                min-height: 250px !important;
            }

            .gal-overlay {
                padding: 18px !important;
            }

            .gal-overlay h5 {
                font-size: 16px !important;
            }

            .gal-overlay p {
                font-size: 12px !important;
            }

            /* Experience steps spacing */
            .step-row {
                margin-bottom: 30px !important;
                gap: 16px !important;
            }

            .step-num {
                width: 44px !important;
                height: 44px !important;
                font-size: 16px !important;
            }

            .cta-box {
                margin-top: 40px !important;
                padding: 36px 24px !important;
            }

            /* Testimonials spacing */
            .testim-card {
                padding: 30px 24px !important;
                margin-bottom: 16px !important;
            }

            .testim-card blockquote {
                font-size: 14px !important;
                margin-bottom: 20px !important;
            }

            /* Contact spacing */
            .info-box {
                padding: 0 !important;
            }

            .info-box .social-icon-circle {
                margin-top: 30px !important;
                justify-content: center !important;
                display: flex !important;
            }

            #lrc-form {
                margin-top: 40px !important;
            }

            #lrc-form .form-group {
                margin-bottom: 20px !important;
            }

            #lrc-form .d-row {
                flex-direction: column !important;
                gap: 12px !important;
            }

            #lrc-form .btn-submit,
            #lrc-form .btn-outline {
                width: 100% !important;
                text-align: center !important;
                justify-content: center !important;
            }

            /* 4. Footer Mobile Centering & Polish */
            .lrc-footer {
                text-align: center !important;
                padding-bottom: 0 !important;
            }

            .lrc-footer .container {
                padding-top: 50px !important;
                padding-bottom: 20px !important;
            }

            .lrc-footer .lrc-logo {
                display: flex !important;
                justify-content: center !important;
                margin-top: 10px !important;
                margin-bottom: 20px !important;
            }

            .lrc-footer p {
                margin-left: auto !important;
                margin-right: auto !important;
                text-align: center !important;
            }

            .lrc-footer .social-icon-circle {
                justify-content: center !important;
                display: flex !important;
                margin-top: 20px !important;
                margin-bottom: 35px !important;
            }

            .lrc-footer .col-lg-4 {
                margin-bottom: 45px !important;
            }

            .lrc-footer .col-lg-4:last-child {
                margin-bottom: 0 !important;
            }

            .lrc-footer .col-lg-4 h6 {
                margin-bottom: 20px !important;
            }

            .lrc-footer .row.mt-80px {
                margin-top: 35px !important;
                flex-direction: column !important;
                gap: 12px !important;
            }

            .lrc-footer .row.mt-80px .col-md-6 {
                text-align: center !important;
                justify-content: center !important;
                display: flex !important;
            }

            .lrc-footer .justify-content-end {
                justify-content: center !important;
            }
        }
