/* =========================================================
   ASTRO MUHURAT
   Premium Maroon + Gold Landing Page
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --maroon-950: #21080d;
    --maroon-900: #2d0a11;
    --maroon-800: #3d0d17;
    --maroon-700: #50111c;
    --maroon-600: #681624;

    --gold-100: #fff6d8;
    --gold-200: #f9e7a8;
    --gold-300: #eecf78;
    --gold-400: #dcb65a;
    --gold-500: #c99c3c;
    --gold-600: #a97b25;

    --cream: #fffaf0;
    --text-light: #f6ead0;
    --text-muted: #cdbda0;

    --white: #ffffff;
    --black: #090306;

    --border-gold: rgba(220, 182, 90, 0.28);
    --gold-glow: rgba(220, 182, 90, 0.18);

    --shadow-dark: 0 25px 70px rgba(0, 0, 0, 0.35);

    --font-display: "Cinzel", serif;
    --font-heading: "Playfair Display", serif;
    --font-body: "DM Sans", sans-serif;

    --container: 1200px;

    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    background: var(--maroon-950);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

::selection {
    background: var(--gold-400);
    color: var(--maroon-950);
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--maroon-950);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-600);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-400);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}


/* =========================================================
   PRELOADER
========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at center,
            var(--maroon-700),
            var(--maroon-950) 65%
        );

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.om-symbol {
    font-family: serif;
    font-size: 70px;
    line-height: 1;
    color: var(--gold-300);

    text-shadow:
        0 0 20px rgba(220, 182, 90, 0.35);

    animation: preloaderPulse 1.6s ease-in-out infinite;
}

.preloader-inner span {
    font-family: var(--font-display);
    color: var(--gold-200);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

@keyframes preloaderPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(33, 8, 13, 0.12);

    border-bottom: 1px solid transparent;

    transition:
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(33, 8, 13, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-color: var(--border-gold);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    min-height: 82px;

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

    gap: 30px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    flex-shrink: 0;
}

.brand-symbol {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border-gold);
    

    color: var(--gold-300);

    font-family: serif;
    font-size: 25px;

    box-shadow:
        inset 0 0 20px rgba(220, 182, 90, 0.06);
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.brand-text strong {
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: 1px;
    color: var(--gold-200);
}

.brand-text span {
    margin-top: 5px;

    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: var(--text-muted);
}


/* =========================================================
   NAV MENU
========================================================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;

    font-size: 13px;
    font-weight: 500;

    color: rgba(255, 250, 240, 0.76);

    transition:
        color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--gold-400);

    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-300);
}

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


/* =========================================================
   NAV CTA
========================================================= */

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 11px 18px;

    border: 1px solid var(--gold-500);
    border-radius: 50px;

    color: var(--gold-200);

    font-size: 12px;
    font-weight: 600;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.nav-cta:hover {
    background: var(--gold-400);
    color: var(--maroon-950);

    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(220, 182, 90, 0.18);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    background: transparent;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;

    width: 23px;
    height: 2px;

    background: var(--gold-300);

    transition: transform 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;
    min-height: 760px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(33, 8, 13, 0.97) 0%,
            rgba(33, 8, 13, 0.88) 40%,
            rgba(33, 8, 13, 0.52) 75%,
            rgba(33, 8, 13, 0.7) 100%
        ),
        url("https://images.unsplash.com/photo-1532968961962-8a0cb3a2d7f1?auto=format&fit=crop&w=2000&q=90")
        center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(220, 182, 90, 0.12),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            rgba(33, 8, 13, 0.18),
            var(--maroon-950)
        );
}

.hero-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.09;

    background-image:
        radial-gradient(
            circle,
            rgba(238, 207, 120, 0.9) 1px,
            transparent 1px
        );

    background-size: 38px 38px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent
    );
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;

    align-items: center;

    gap: 60px;

    padding-top: 60px;
    padding-bottom: 100px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 24px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--gold-300);
}

.eyebrow span {
    width: 28px;
    height: 1px;

    background: var(--gold-400);
}

.hero h1 {
    max-width: 760px;

    font-family: var(--font-heading);

    font-size: clamp(50px, 6vw, 82px);

    font-weight: 600;

    line-height: 1.05;
    letter-spacing: -2px;

    color: var(--cream);
}

.hero h1 span {
    display: block;

    color: var(--gold-300);

    font-style: italic;
}

.hero-description {
    max-width: 620px;

    margin-top: 28px;

    color: rgba(255, 250, 240, 0.72);

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 35px;
}

.btn {
    min-height: 52px;

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

    gap: 12px;

    padding: 0 25px;

    border-radius: 3px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.5px;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--gold-300),
        var(--gold-500)
    );

    color: var(--maroon-950);

    box-shadow:
        0 12px 30px rgba(201, 156, 60, 0.18);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(201, 156, 60, 0.28);
}

.btn-outline {
    border: 1px solid rgba(238, 207, 120, 0.45);

    color: var(--gold-200);

    background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
    background: rgba(220, 182, 90, 0.1);

    border-color: var(--gold-300);

    transform: translateY(-3px);
}


/* =========================================================
   HERO TRUST
========================================================= */

.hero-trust {
    display: flex;
    align-items: center;

    margin-top: 55px;
}

.trust-item {
    display: flex;
    flex-direction: column;

    padding-right: 30px;
}

.trust-item strong {
    font-family: var(--font-heading);

    font-size: 24px;

    color: var(--gold-300);
}

.trust-item span {
    margin-top: 3px;

    font-size: 10px;

    color: rgba(255, 250, 240, 0.58);

    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-divider {
    width: 1px;
    height: 35px;

    margin-right: 30px;

    background: var(--border-gold);
}


/* =========================================================
   HERO SYMBOL
========================================================= */

.hero-symbol-card {
    position: relative;

    width: 360px;
    height: 360px;

    margin-inline: auto;

    display: grid;
    place-items: center;

    

    border: 1px solid rgba(220, 182, 90, 0.25);

    background:
        radial-gradient(
            circle,
            rgba(220, 182, 90, 0.12),
            rgba(220, 182, 90, 0.02) 55%,
            transparent 70%
        );

    box-shadow:
        inset 0 0 70px rgba(220, 182, 90, 0.06),
        0 0 100px rgba(220, 182, 90, 0.08);

    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.symbol-ring {
    position: absolute;

    border: 1px solid rgba(220, 182, 90, 0.24);

    border-radius: 50%;
}

.ring-one {
    width: 76%;
    height: 76%;

    border-style: dashed;

    animation: rotateRing 25s linear infinite;
}

.ring-two {
    width: 90%;
    height: 90%;

    border-color: rgba(220, 182, 90, 0.11);

    animation: rotateRingReverse 35s linear infinite;
}

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

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

.hero-symbol {
    font-family: serif;

    font-size: 125px;

    color: var(--gold-300);

    text-shadow:
        0 0 30px rgba(220, 182, 90, 0.3);
}

.symbol-caption {
    position: absolute;
    bottom: 42px;

    font-family: var(--font-heading);

    font-size: 16px;

    letter-spacing: 5px;

    color: var(--gold-200);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
    position: absolute;

    z-index: 5;

    bottom: 28px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;

    color: rgba(255, 250, 240, 0.48);

    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator i {
    color: var(--gold-400);

    animation: scrollArrow 1.5s ease-in-out infinite;
}

@keyframes scrollArrow {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    position: relative;

    padding: 115px 0;
}

.intro-section,
.about-section,
.contact-section {
    background: var(--maroon-950);
}

.muhurat-section,
.services-section,
.payment-section {
    background: var(--maroon-900);
}

.color-section,
.consultation-section {
    background:
        linear-gradient(
            135deg,
            var(--maroon-800),
            var(--maroon-950)
        );
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    margin-bottom: 60px;
}

.section-heading.centered {
    text-align: center;

    max-width: 800px;

    margin-left: auto;
    margin-right: auto;
}

.section-kicker {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--gold-400);

    font-family: var(--font-display);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.section-heading h2,
.about-content h2,
.consultation-info h2,
.color-content h2,
.payment-content h2 {
    font-family: var(--font-heading);

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 600;

    line-height: 1.15;

    color: var(--cream);
}

.section-heading h2 span,
.about-content h2 span,
.consultation-info h2 span,
.color-content h2 span,
.payment-content h2 span {
    color: var(--gold-300);
}

.section-heading p {
    max-width: 650px;

    margin: 20px auto 0;

    color: var(--text-muted);

    font-size: 15px;
}

.heading-line {
    position: relative;

    width: 80px;
    height: 1px;

    margin: 25px auto 0;

    background: var(--gold-400);
}

.heading-line::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    top: -2px;
    left: 50%;

    transform: translateX(-50%);

    background: var(--gold-300);

    border-radius: 50%;
}


/* =========================================================
   INTRO
========================================================= */

.intro-grid {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 90px;
}

.intro-content {
    max-width: 680px;
}

.intro-content p,
.about-content p,
.muhurat-copy p {
    margin-bottom: 20px;

    color: var(--text-muted);

    font-size: 15px;
}

.intro-content .lead-text,
.about-content .lead-text {
    color: var(--text-light);

    font-family: var(--font-heading);

    font-size: 21px;

    line-height: 1.65;
}

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 10px;

    color: var(--gold-300);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-link i {
    transition: transform var(--transition);
}

.text-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   MANDALA CARD
========================================================= */

.intro-visual {
    display: flex;
    justify-content: center;
}

.mandala-card {
    position: relative;

    width: min(100%, 460px);
    aspect-ratio: 1;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(220, 182, 90, 0.25);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(220, 182, 90, 0.1),
            transparent 65%
        );
}

.mandala {
    position: relative;

    width: 70%;
    aspect-ratio: 1;

    display: grid;
    place-items: center;

    border: 1px solid var(--border-gold);

    border-radius: 50%;
}

.mandala-circle {
    position: absolute;

    border: 1px dashed rgba(220, 182, 90, 0.3);

    border-radius: 50%;
}

.circle-1 {
    width: 80%;
    height: 80%;
}

.circle-2 {
    width: 60%;
    height: 60%;
}

.circle-3 {
    width: 40%;
    height: 40%;
}

.mandala-center {
    font-family: serif;

    font-size: 70px;

    color: var(--gold-300);

    text-shadow:
        0 0 25px rgba(220, 182, 90, 0.3);
}

.mandala-label {
    position: absolute;

    bottom: 28px;

    display: flex;
    flex-direction: column;

    text-align: center;
}

.mandala-label span {
    font-size: 9px;

    letter-spacing: 2px;

    color: var(--text-muted);

    text-transform: uppercase;
}

.mandala-label strong {
    margin-top: 3px;

    font-family: var(--font-heading);

    color: var(--gold-200);

    font-size: 15px;
}


/* =========================================================
   MUHURAT
========================================================= */

.muhurat-content-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 70px;

    align-items: start;
}

.muhurat-highlight {
    position: relative;

    padding: 45px;

    border: 1px solid var(--border-gold);

    background:
        linear-gradient(
            145deg,
            rgba(220, 182, 90, 0.09),
            rgba(220, 182, 90, 0.015)
        );

    box-shadow:
        var(--shadow-dark);
}

.highlight-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    border: 1px solid var(--border-gold);

    color: var(--gold-300);

    font-size: 22px;
}

.muhurat-highlight h3 {
    max-width: 360px;

    font-family: var(--font-heading);

    font-size: 34px;

    line-height: 1.25;

    color: var(--cream);
}

.muhurat-highlight p {
    margin-top: 20px;

    color: var(--text-muted);

    font-size: 14px;
}

.muhurat-copy {
    padding-top: 10px;
}

.mini-feature {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 18px 20px;

    border-top: 1px solid rgba(220, 182, 90, 0.13);
}

.mini-feature i {
    color: var(--gold-400);
}

.mini-feature span {
    color: var(--text-light);

    font-size: 12px;
    font-weight: 600;
}

.muhurat-features {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 55px;

    border-bottom: 1px solid rgba(220, 182, 90, 0.13);
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 90px;
}

.about-image-wrapper {
    position: relative;

    max-width: 480px;

    padding: 15px;

    border: 1px solid var(--border-gold);
}

.about-image-wrapper::before {
    content: "";

    position: absolute;

    inset: -12px;

    border: 1px solid rgba(220, 182, 90, 0.12);

    z-index: -1;
}

.about-image-wrapper img {
    height: 560px;

    object-fit: cover;

    filter: saturate(0.72) sepia(0.15);
}

.experience-badge {
    position: absolute;

    right: -28px;
    bottom: 35px;

    width: 150px;
    height: 150px;

    display: flex;
    flex-direction: column;

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

    text-align: center;

    border-radius: 50%;

    background: var(--maroon-700);

    border: 1px solid var(--gold-500);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);
}

.experience-badge strong {
    font-family: var(--font-heading);

    color: var(--gold-300);

    font-size: 40px;

    line-height: 1;
}

.experience-badge span {
    margin-top: 8px;

    color: var(--text-muted);

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-points {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px 25px;

    margin-top: 30px;
}

.about-points div {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--text-light);

    font-size: 12px;
}

.about-points i {
    color: var(--gold-400);
}


/* =========================================================
   SERVICES
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.service-card {
    position: relative;

    min-height: 330px;

    padding: 32px;

    overflow: hidden;

    border: 1px solid rgba(220, 182, 90, 0.15);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.025),
            rgba(0, 0, 0, 0.08)
        );

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.service-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background: rgba(220, 182, 90, 0.06);

    transition:
        transform var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(220, 182, 90, 0.45);

    background:
        linear-gradient(
            145deg,
            rgba(220, 182, 90, 0.07),
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.22);
}

.service-card:hover::before {
    transform: scale(2);
}

.service-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border: 1px solid var(--border-gold);

    color: var(--gold-300);

    font-size: 18px;

    transition:
        background var(--transition),
        color var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold-300);

    color: var(--maroon-950);
}

.service-number {
    position: absolute;

    top: 28px;
    right: 28px;

    font-family: var(--font-display);

    color: rgba(220, 182, 90, 0.22);

    font-size: 12px;
}

.service-card h3 {
    max-width: 260px;

    margin-bottom: 13px;

    font-family: var(--font-heading);

    font-size: 22px;

    line-height: 1.3;

    color: var(--cream);
}

.service-card p {
    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.75;
}

.service-link {
    position: absolute;

    left: 32px;
    bottom: 27px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    background: transparent;

    color: var(--gold-300);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-link i {
    transition: transform var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   COLOR CONSULTATION
========================================================= */

.color-consultation {
    display: grid;

    grid-template-columns: 1fr 0.7fr;

    align-items: center;

    gap: 100px;

    padding: 70px;

    border: 1px solid var(--border-gold);

    background:
        radial-gradient(
            circle at 90% 50%,
            rgba(220, 182, 90, 0.1),
            transparent 35%
        );
}

.color-content {
    max-width: 650px;
}

.color-content h2 {
    margin-bottom: 25px;
}

.color-content p {
    margin-bottom: 17px;

    color: var(--text-muted);

    font-size: 14px;
}

.color-content .btn {
    margin-top: 10px;
}

.color-wheel {
    width: min(100%, 330px);
    aspect-ratio: 1;

    margin-inline: auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        conic-gradient(
            from 0deg,
            #8e1e2f,
            #d2a647,
            #8a5525,
            #54101a,
            #b6862e,
            #8e1e2f
        );

    box-shadow:
        0 0 0 15px rgba(220, 182, 90, 0.05),
        0 0 70px rgba(220, 182, 90, 0.1);

    animation: colorWheel 25s linear infinite;
}

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

.color-wheel-inner {
    width: 67%;
    aspect-ratio: 1;

    display: flex;
    flex-direction: column;

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

    border-radius: 50%;

    background: var(--maroon-900);

    border: 1px solid var(--gold-400);

    animation: colorWheelText 25s linear infinite;
}

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

.color-wheel-inner span {
    font-family: var(--font-heading);

    color: var(--gold-300);

    font-size: 32px;
}

.color-wheel-inner strong {
    color: var(--text-muted);

    font-size: 10px;

    letter-spacing: 4px;
}


/* =========================================================
   CONSULTATION
========================================================= */

.consultation-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 80px;

    align-items: center;
}

.consultation-info h2 {
    margin-bottom: 25px;
}

.consultation-info > p {
    max-width: 530px;

    color: var(--text-muted);

    font-size: 15px;
}

.consultation-benefits {
    margin-top: 35px;
}

.consultation-benefits div {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 17px;

    color: var(--text-light);

    font-size: 13px;
}

.consultation-benefits i {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border-gold);

    color: var(--gold-300);

    font-size: 12px;
}

.consultation-form-wrapper {
    padding: 38px;

    border: 1px solid var(--border-gold);

    background:
        rgba(33, 8, 13, 0.55);

    box-shadow:
        var(--shadow-dark);
}

.form-header {
    margin-bottom: 30px;
}

.form-header span {
    color: var(--gold-400);

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 2px;
}

.form-header h3 {
    margin-top: 7px;

    font-family: var(--font-heading);

    color: var(--cream);

    font-size: 28px;
}

.form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--text-light);

    font-size: 11px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid rgba(220, 182, 90, 0.18);

    border-radius: 2px;

    outline: none;

    background: rgba(255, 255, 255, 0.035);

    color: var(--cream);

    font-size: 12px;

    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 250, 240, 0.35);
}

.form-group select option {
    background: var(--maroon-900);
    color: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-400);

    background: rgba(220, 182, 90, 0.035);

    box-shadow:
        0 0 0 3px rgba(220, 182, 90, 0.06);
}

.form-group textarea {
    resize: vertical;

    min-height: 110px;
}

.form-submit {
    width: 100%;
}

.form-note {
    margin-top: 13px;

    color: rgba(255, 250, 240, 0.35);

    text-align: center;

    font-size: 10px;
}

.form-success {
    display: none;

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

    gap: 8px;

    margin-top: 18px;

    padding: 12px;

    border: 1px solid rgba(100, 200, 120, 0.25);

    color: #b9e7bd;

    background: rgba(100, 200, 120, 0.05);

    font-size: 11px;
}

.form-success.show {
    display: flex;
}


/* =========================================================
   PAYMENT
========================================================= */

.payment-card {
    display: grid;

    grid-template-columns: 1fr 300px;

    align-items: center;

    gap: 60px;

    padding: 60px;

    border: 1px solid var(--border-gold);

    background:
        linear-gradient(
            135deg,
            rgba(220, 182, 90, 0.07),
            rgba(255, 255, 255, 0.015)
        );
}

.payment-content h2 {
    margin-bottom: 20px;
}

.payment-content > p {
    max-width: 520px;

    color: var(--text-muted);

    font-size: 14px;
}

.payment-note {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 25px;

    color: var(--gold-300);

    font-size: 11px;
}

.qr-placeholder {
    width: 240px;
    height: 240px;

    margin-inline: auto;

    display: grid;
    place-items: center;

    border: 1px dashed rgba(220, 182, 90, 0.45);

    background:
        repeating-linear-gradient(
            45deg,
            rgba(220, 182, 90, 0.025),
            rgba(220, 182, 90, 0.025) 8px,
            transparent 8px,
            transparent 16px
        );
}

.qr-inner {
    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;

    color: rgba(255, 250, 240, 0.4);
}

.qr-inner i {
    margin-bottom: 10px;

    font-size: 55px;

    color: rgba(220, 182, 90, 0.4);
}

.qr-inner span {
    font-size: 11px;

    letter-spacing: 2px;
}

.qr-inner small {
    margin-top: 5px;

    font-size: 9px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.contact-card {
    min-height: 190px;

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

    padding: 25px;

    text-align: center;

    border: 1px solid rgba(220, 182, 90, 0.15);

    background: rgba(255, 255, 255, 0.018);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.contact-card:hover {
    transform: translateY(-6px);

    border-color: var(--border-gold);

    background:
        rgba(220, 182, 90, 0.045);
}

.contact-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 17px;

    border-radius: 50%;

    border: 1px solid var(--border-gold);

    color: var(--gold-300);
}

.contact-card span {
    color: var(--text-muted);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.contact-card strong {
    max-width: 100%;

    margin-top: 5px;

    color: var(--cream);

    font-family: var(--font-heading);

    font-size: 16px;

    overflow-wrap: anywhere;
}

.contact-card small {
    margin-top: 5px;

    color: rgba(255, 250, 240, 0.38);

    font-size: 10px;
}


/* =========================================================
   OFFICES
========================================================= */

.offices-section {
    padding-top: 0;

    background: var(--maroon-950);
}

.offices-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.office-card {
    padding: 38px;

    border: 1px solid rgba(220, 182, 90, 0.15);

    background:
        linear-gradient(
            145deg,
            rgba(220, 182, 90, 0.045),
            transparent
        );
}

.office-top {
    display: flex;
    align-items: center;

    gap: 13px;

    color: var(--gold-400);

    font-size: 10px;

    letter-spacing: 2px;
}

.office-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border-gold);

    font-size: 13px;
}

.office-card h3 {
    margin-top: 20px;

    font-family: var(--font-heading);

    color: var(--cream);

    font-size: 30px;
}

.office-card p {
    margin-top: 10px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.9;
}

.office-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 20px;

    color: var(--gold-300);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   SOCIAL
========================================================= */

.social-section {
    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            var(--maroon-800),
            var(--maroon-950)
        );

    border-top: 1px solid rgba(220, 182, 90, 0.12);
    border-bottom: 1px solid rgba(220, 182, 90, 0.12);
}

.social-content {
    max-width: 700px;

    margin-inline: auto;

    text-align: center;
}

.social-content h2 {
    font-family: var(--font-heading);

    font-size: clamp(38px, 5vw, 58px);

    color: var(--cream);
}

.social-content h2 span {
    color: var(--gold-300);
}

.social-content p {
    max-width: 600px;

    margin: 17px auto 0;

    color: var(--text-muted);

    font-size: 14px;
}

.social-links {
    display: flex;
    justify-content: center;

    gap: 12px;

    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 12px 20px;

    border: 1px solid var(--border-gold);

    color: var(--gold-200);

    font-size: 11px;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.social-links a:hover {
    background: var(--gold-300);

    color: var(--maroon-950);

    transform: translateY(-3px);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #180609;

    border-top: 1px solid rgba(220, 182, 90, 0.12);
}

.footer-main {
    display: grid;

    grid-template-columns: 1.5fr repeat(3, 1fr);

    gap: 50px;

    padding: 75px 0 55px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    margin-top: 20px;

    color: rgba(255, 250, 240, 0.45);

    font-size: 12px;

    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    margin-bottom: 10px;

    color: var(--gold-300);

    font-family: var(--font-display);

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.footer-column a {
    color: rgba(255, 250, 240, 0.5);

    font-size: 11px;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-column a:hover {
    color: var(--gold-300);

    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 0;

    border-top: 1px solid rgba(220, 182, 90, 0.1);
}

.footer-bottom p {
    color: rgba(255, 250, 240, 0.32);

    font-size: 10px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    width: 33px;
    height: 33px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(220, 182, 90, 0.18);

    color: var(--gold-400);

    font-size: 12px;

    transition:
        background var(--transition),
        color var(--transition);
}

.footer-socials a:hover {
    background: var(--gold-300);

    color: var(--maroon-950);
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;

    z-index: 900;

    right: 22px;
    bottom: 22px;

    width: 54px;
    height: 54px;

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

    border-radius: 50%;

    background: #25d366;

    color: white;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.28);

    transition:
        transform var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.08);
}

.floating-whatsapp i {
    font-size: 23px;
}

.floating-whatsapp span {
    position: absolute;

    right: 64px;

    padding: 7px 10px;

    white-space: nowrap;

    border-radius: 3px;

    background: var(--maroon-900);

    color: var(--gold-200);

    font-size: 10px;

    opacity: 0;
    visibility: hidden;

    transform: translateX(5px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.floating-whatsapp:hover span {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    z-index: 899;

    right: 24px;
    bottom: 90px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border-gold);

    background: rgba(33, 8, 13, 0.92);

    color: var(--gold-300);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-300);

    color: var(--maroon-950);
}


/* =========================================================
   SERVICE MODAL
========================================================= */

.service-modal {
    position: fixed;

    z-index: 9999;

    inset: 0;

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

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

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

.modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(8, 2, 4, 0.78);

    backdrop-filter: blur(8px);
}

.modal-box {
    position: relative;

    z-index: 2;

    width: min(100%, 480px);

    padding: 45px;

    text-align: center;

    border: 1px solid var(--border-gold);

    background:
        linear-gradient(
            145deg,
            var(--maroon-800),
            var(--maroon-950)
        );

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.5);

    transform: translateY(25px) scale(0.97);

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-modal.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;

    top: 17px;
    right: 17px;

    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    background: transparent;

    color: var(--text-muted);

    transition:
        color var(--transition),
        background var(--transition);
}

.modal-close:hover {
    background: rgba(220, 182, 90, 0.1);

    color: var(--gold-300);
}

.modal-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    border: 1px solid var(--border-gold);

    color: var(--gold-300);
}

.modal-box h3 {
    margin-top: 5px;

    font-family: var(--font-heading);

    font-size: 30px;

    line-height: 1.3;

    color: var(--cream);
}

.modal-box p {
    margin: 16px auto 25px;

    color: var(--text-muted);

    font-size: 13px;
}

.modal-box .btn {
    width: 100%;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE - 1100px
========================================================= */

@media (max-width: 1100px) {

    .nav-menu {
        gap: 20px;
    }

    .hero-container {
        grid-template-columns: 1fr 320px;

        gap: 30px;
    }

    .hero-symbol-card {
        width: 300px;
        height: 300px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .intro-grid {
        gap: 60px;
    }

    .color-consultation {
        gap: 50px;
        padding: 50px;
    }

    .footer-main {
        gap: 30px;
    }
}


/* =========================================================
   RESPONSIVE - 900px
========================================================= */

@media (max-width: 900px) {

    .navbar {
        min-height: 72px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;

        top: calc(100% + 1px);
        left: 20px;
        right: 20px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 10px;

        border: 1px solid var(--border-gold);

        background:
            rgba(33, 8, 13, 0.98);

        backdrop-filter: blur(18px);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .nav-link {
        padding: 14px 12px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        justify-content: center;

        margin-top: 5px;
    }


    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;

        padding-top: 160px;
        padding-bottom: 130px;
    }

    .hero-content {
        max-width: 750px;

        text-align: center;

        margin-inline: auto;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-symbol-card {
        display: none;
    }


    .intro-grid,
    .about-grid,
    .consultation-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .intro-content {
        max-width: none;
    }

    .intro-visual {
        order: -1;
    }

    .mandala-card {
        width: 380px;
    }


    .about-visual {
        display: flex;
        justify-content: center;
    }


    .muhurat-content-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .muhurat-features {
        grid-template-columns: repeat(2, 1fr);
    }


    .color-consultation {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .color-content {
        max-width: none;
    }


    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .payment-card {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .payment-content > p {
        margin-inline: auto;
    }


    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }
}


/* =========================================================
   RESPONSIVE - 650px
========================================================= */

@media (max-width: 650px) {

    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 80px 0;
    }


    .brand-symbol {
        width: 38px;
        height: 38px;

        font-size: 22px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text span {
        font-size: 8px;
    }


    .hero-container {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 62px);

        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;

        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        margin-top: 40px;
    }

    .trust-item {
        padding-right: 15px;
    }

    .trust-divider {
        margin-right: 15px;
    }

    .trust-item strong {
        font-size: 20px;
    }

    .trust-item span {
        font-size: 8px;
        letter-spacing: 0.5px;
    }


    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2,
    .about-content h2,
    .consultation-info h2,
    .color-content h2,
    .payment-content h2 {
        font-size: 37px;
    }


    .mandala-card {
        width: 300px;
    }

    .mandala-center {
        font-size: 55px;
    }


    .muhurat-highlight {
        padding: 30px;
    }

    .muhurat-highlight h3 {
        font-size: 29px;
    }

    .muhurat-features {
        grid-template-columns: 1fr;
    }


    .about-image-wrapper {
        width: calc(100% - 25px);
    }

    .about-image-wrapper img {
        height: 430px;
    }

    .experience-badge {
        right: -15px;

        width: 120px;
        height: 120px;
    }

    .experience-badge strong {
        font-size: 32px;
    }


    .about-points {
        grid-template-columns: 1fr;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 310px;
    }


    .color-consultation {
        padding: 35px 25px;
    }

    .color-wheel {
        width: 250px;
    }


    .consultation-form-wrapper {
        padding: 25px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .payment-card {
        padding: 35px 22px;
    }

    .qr-placeholder {
        width: 210px;
        height: 210px;
    }


    .contact-grid {
        grid-template-columns: 1fr;
    }


    .offices-grid {
        grid-template-columns: 1fr;
    }

    .office-card {
        padding: 30px;
    }


    .social-links {
        flex-direction: column;

        max-width: 240px;

        margin-inline: auto;
    }

    .social-links a {
        justify-content: center;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 15px;

        text-align: center;
    }


    .floating-whatsapp {
        right: 15px;
        bottom: 15px;

        width: 50px;
        height: 50px;
    }

    .floating-whatsapp span {
        display: none;
    }

    .back-to-top {
        right: 17px;
        bottom: 77px;
    }


    .modal-box {
        padding: 35px 22px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}


/* =========================================
   SERVICE CHARGES
========================================= */

.service-charges-section {
    position: relative;
    background: var(--maroon-900);
}

.charges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.charge-card {
    position: relative;
    padding: 34px 28px;
    text-align: center;
    background: linear-gradient(
        145deg,
        rgba(104, 22, 36, 0.65),
        rgba(45, 10, 17, 0.95)
    );
    border: 1px solid rgba(220, 182, 90, 0.25);
    border-radius: 18px;
    transition: all 0.35s ease;
    overflow: hidden;
}

.charge-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: var(--gold-400);
    opacity: 0.7;
}

.charge-card:hover {
    transform: translateY(-7px);
    border-color: rgba(220, 182, 90, 0.55);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.charge-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(220, 182, 90, 0.4);
    border-radius: 50%;
    color: var(--gold-300);
    font-size: 21px;
}

.charge-card h3 {
    margin-bottom: 18px;
    color: var(--gold-100);
    font-family: "Cinzel", serif;
    font-size: 19px;
}

.charge-price {
    margin-bottom: 14px;
    color: var(--gold-300);
    font-family: "Cinzel", serif;
    font-size: 32px;
    font-weight: 700;
}

.charge-price span {
    font-size: 17px;
    font-weight: 500;
}

.charge-card p {
    margin: 0;
    color: rgba(255, 246, 216, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

.charges-note {
    max-width: 850px;
    margin: 35px auto 0;
    padding: 20px 25px;
    text-align: center;
    border: 1px solid rgba(220, 182, 90, 0.2);
    border-radius: 12px;
    background: rgba(33, 8, 13, 0.45);
}

.charges-note p {
    margin: 0;
    color: rgba(255, 246, 216, 0.75);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   SERVICE CARD FEE
========================================= */

.service-fee {
    margin: 18px 0 15px;
    padding-top: 14px;
    border-top: 1px solid rgba(220, 182, 90, 0.18);
    color: var(--gold-300);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.service-fee span {
    color: rgba(255, 246, 216, 0.65);
    font-weight: 500;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {
    .charges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .charges-grid {
        grid-template-columns: 1fr;
    }

    .charge-card {
        padding: 28px 22px;
    }

    .charge-price {
        font-size: 28px;
    }
}

/* =========================================
   FOOTER IMAGE SECTION
========================================= */

.footer-image-section {
    position: relative;
    padding: 45px 0 55px;
    background: var(--maroon-950);
}

.footer-image-frame {
    position: relative;
    width: 100%;
    padding: 8px;
    border: 1px solid rgba(220, 182, 90, 0.55);
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(220, 182, 90, 0.18),
        rgba(45, 10, 17, 0.7),
        rgba(220, 182, 90, 0.12)
    );
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(201, 156, 60, 0.08);
    overflow: hidden;
}

.footer-image-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 246, 216, 0.08);
    pointer-events: none;
}

.footer-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 18px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .footer-image-section {
        padding: 32px 0 40px;
    }

    .footer-image-frame {
        padding: 6px;
        border-radius: 18px;
    }

    .footer-image-frame img {
        border-radius: 13px;
        max-height: 400px;
    }

}

@media (max-width: 480px) {

    .footer-image-section {
        padding: 25px 0 32px;
    }

    .footer-image-frame {
        padding: 5px;
        border-radius: 15px;
    }

    .footer-image-frame img {
        border-radius: 10px;
    }

}

/* --- Premium Golden Glow & Shimmer Effect for Price Cards --- */

.charges-grid .charge-card {
    background: linear-gradient(135deg, rgba(60, 10, 15, 0.9), rgba(40, 5, 8, 0.95)) !important;
    border: 1.5px solid #d4af37 !important; /* Rich metallic golden border */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25), inset 0 0 10px rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease-in-out;
}

/* Hover karne par card aur jyada bright aur upar uthega */
.charges-grid .charge-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #ffd700 !important; /* Bright Gold */
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 10px rgba(255, 215, 0, 0.4), inset 0 0 15px rgba(255, 215, 0, 0.2);
}

/* Price Number ko Royal Golden aur Shining Glow dene ke liye */
.charges-grid .charge-price {
    color: #ffd700 !important; /* Bright Gold Color */
    font-weight: 800 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

/* Hover par price ka glow aur bhi tez ho jayega */
.charges-grid .charge-card:hover .charge-price {
    color: #ffea75 !important;
    text-shadow: 0 0 15px rgba(255, 234, 117, 1), 0 0 25px rgba(255, 215, 0, 0.9), 0 0 40px rgba(255, 215, 0, 0.6);
}

/* Icons aur headings ko bhi thoda golden glow dene ke liye (Optional bonus) */
.charges-grid .charge-card h3 {
    color: #ffd700 !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.charges-grid .charge-icon {
    border: 1px solid #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    color: #ffd700 !important;
}