@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* =======================================
   MYSTICAL GLASSMORPHISM VARIABLES
   ======================================= */
:root {
    --bg-deep: #050208; 
    --bg-surface: rgba(20, 15, 25, 0.35); 
    --bg-dark: rgba(10, 5, 12, 0.75);     
    --bg-card: rgba(25, 15, 35, 0.45);    
    --text-main: #fdfbf7;
    --text-muted: #b8b0c5;
    --border-dark: rgba(255, 255, 255, 0.08);
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: var(--global-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -10;
    opacity: 0.85; 
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.03em;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover { color: var(--accent); }

/* =======================================
   SECTION TITLES & DECORATORS
   ======================================= */
.section-subheading {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 0 20px color-mix(in srgb, var(--primary) 30%, transparent);
}

.decorator-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0 3rem 0;
}

.decorator-line::before, .decorator-line::after {
    content: '';
    height: 1px;
    width: 80px;
    background: linear-gradient(to right, transparent, var(--accent));
}
.decorator-line::after {
    background: linear-gradient(to left, transparent, var(--accent));
}

.decorator-line i {
    color: var(--accent); 
    font-size: 0.6rem;
    margin: 0 15px;
    filter: drop-shadow(0 0 5px var(--accent));
}

/* =======================================
   TOP BAR & NAVBAR
   ======================================= */
.top-bar {
    background-color: rgba(5, 2, 8, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dark);
    font-size: 0.8rem;
    padding: 10px 0;
    color: var(--text-muted);
}

.top-bar a { color: var(--text-muted); }
.top-bar a:hover { color: var(--accent); }
.top-bar i { color: var(--accent); } 

#mainNavbar {
    transition: all 0.4s ease;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid transparent;
}

.navbar-dynamic.navbar-transparent { background-color: transparent !important; }

.navbar-dynamic.navbar-scrolled, .navbar-solid {
    background-color: rgba(8, 4, 10, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-dark);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.nav-link {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-main) !important;
    margin: 0 0.5rem;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent) !important; 
    text-shadow: 0 0 10px color-mix(in srgb, var(--accent) 50%, transparent);
}

/* =======================================
   HERO SECTION (Updated Padding)
   ======================================= */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 150px;
    /* Added massive bottom padding to keep buttons away from absolute stats bar */
    padding-bottom: 100px; 
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, rgba(5,2,8,0.7) 70%, var(--bg-deep) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center; 
}

/* =======================================
   MYSTICAL CARDS & ARCHED IMAGES
   ======================================= */
.img-arch {
    border-top-left-radius: 50vw;
    border-top-right-radius: 50vw;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    box-shadow: 0 20px 50px color-mix(in srgb, var(--primary) 15%, transparent);
    object-fit: cover;
}

.mystic-card {
    background-color: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-dark);
    border-radius: 16px; 
    overflow: hidden; 
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02), 0 10px 30px rgba(0,0,0,0.5);
}

.mystic-card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--accent) 50%, transparent);
    box-shadow: inset 0 0 20px color-mix(in srgb, var(--primary) 10%, transparent), 0 15px 40px color-mix(in srgb, var(--primary) 20%, transparent);
}

.card-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-dark);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.mystic-card:hover .card-img-wrapper img { transform: scale(1.08); }

.card-body-custom {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title-custom {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* =======================================
   DYNAMIC BUTTONS
   ======================================= */
.btn-primary-custom { 
    background-color: var(--primary); 
    border: 1px solid var(--primary); 
    color: #ffffff; 
    padding: 1rem 3rem;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px color-mix(in srgb, var(--primary) 40%, transparent);
}

.btn-primary-custom:hover { 
    background-color: transparent; 
    color: var(--primary); 
    box-shadow: 0 0 30px color-mix(in srgb, var(--primary) 60%, transparent);
}

.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    background: color-mix(in srgb, var(--primary) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--accent);
    box-shadow: inset 0 0 15px color-mix(in srgb, var(--accent) 20%, transparent);
}

/* =======================================
   GLOW BLOBS & WHATSAPP FLOAT
   ======================================= */
.glow-blob {
    position: absolute;
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--primary) 15%, transparent) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}
.glow-blob.top-left { top: -20%; left: -10%; }
.glow-blob.bottom-right { bottom: -20%; right: -10%; }
.glow-blob.center { top: 50%; left: 50%; transform: translate(-50%, -50%); }

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 25px rgba(37, 211, 102, 0.5);
}

.bg-surface { background-color: var(--bg-surface) !important; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.bg-dark { background-color: var(--bg-dark) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.text-muted { color: var(--text-muted) !important; }