@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cinzel:wght@500;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

/* ==========================================================================
   COLOR SYSTEM & VARIABLES (MOCKUP EXACT ALIGNMENT)
   ========================================================================== */
:root {
    --primary-gold: #c59b27;
    --primary-gold-rgb: 197, 155, 39;
    --orange-cta: #e67e22;
    --orange-cta-hover: #d35400;
    
    --bg-cream: #fdf8eb;
    --text-dark-brown: #2c1a19;
    --text-dark-muted: #6e5654;
    
    --bg-dark-maroon: #290404;
    --bg-header-top: #230704;
    --bg-header-nav: #390907;
    --bg-footer: #1a0202;
    
    --border-color: rgba(197, 155, 39, 0.25);
    --card-bg: #ffffff;
    
    --shadow-sm: 0 4px 10px rgba(44, 26, 25, 0.04);
    --shadow-md: 0 10px 30px rgba(44, 26, 25, 0.08);
    --shadow-lg: 0 15px 40px rgba(44, 26, 25, 0.12);
    
    --transition-speed: 0.3s;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-hindi: 'Noto Sans Devanagari', sans-serif;
    --border-radius-custom: 12px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark-brown);
    overflow-x: hidden;
    line-height: 1.6;
    opacity: 0;
    animation: pageFadeIn 0.8s ease forwards;
}

@keyframes pageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    font-weight: 700;
    color: var(--text-dark-brown);
}

.hindi-font {
    font-family: var(--font-hindi);
}

a {
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    color: var(--primary-gold);
}

a:hover {
    color: var(--orange-cta);
}

/* ==========================================================================
   SECTION BACKGROUNDS & LAYOUT RHYTHM
   ========================================================================== */
.bg-light-cream {
    background-color: var(--bg-cream) !important;
    color: var(--text-dark-brown) !important;
}

.bg-dark-maroon {
    background-color: var(--bg-dark-maroon) !important;
    color: #ffffff !important;
}

.bg-dark-maroon h1, 
.bg-dark-maroon h2, 
.bg-dark-maroon h3, 
.bg-dark-maroon h4, 
.bg-dark-maroon h5, 
.bg-dark-maroon h6 {
    color: #ffffff !important;
}

.bg-dark-maroon p, 
.bg-dark-maroon span, 
.bg-dark-maroon li,
.bg-dark-maroon div.lead {
    color: rgba(255, 255, 255, 0.8) !important;
}

.bg-dark-maroon .section-subtitle {
    color: var(--primary-gold) !important;
}

.bg-dark-maroon .section-title::after {
    background-color: var(--primary-gold) !important;
}

.bg-dark-maroon .hero-bullets li i,
.bg-dark-maroon .guru-bullets li i {
    color: var(--primary-gold) !important;
}

.bg-dark-maroon .guru-image {
    border-color: var(--primary-gold) !important;
}

.bg-dark-maroon .guru-stat-box {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.bg-dark-maroon .guru-stat-box h3 {
    color: var(--primary-gold) !important;
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS FRAMEWORK
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity, filter;
}

.animate-on-scroll.visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* Animation Types */
.anim-fade-up {
    transform: translateY(40px);
}
.anim-fade-down {
    transform: translateY(-40px);
}
.anim-fade-left {
    transform: translateX(-40px);
}
.anim-fade-right {
    transform: translateX(40px);
}
.anim-zoom-in {
    transform: scale(0.9);
}
.anim-scale-in {
    transform: scale(0.85);
}
.anim-blur-clear {
    filter: blur(8px);
}
.anim-rotate-subtle {
    transform: rotate(-3deg) scale(0.95);
}

/* Staggered Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Slow Floating (e.g. for background elements) */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-custom {
    padding: 12px 28px;
    border-radius: var(--border-radius-custom);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-speed) ease;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.btn-custom:active {
    transform: scale(0.96) !important;
}

.btn-primary-orange {
    background: linear-gradient(135deg, var(--orange-cta), #f39c12);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary-orange:hover {
    background: linear-gradient(135deg, #f39c12, var(--orange-cta));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff !important;
    font-family: var(--font-hindi);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-call {
    background-color: var(--primary-gold);
    color: #ffffff !important;
    font-family: var(--font-hindi);
    box-shadow: 0 4px 15px rgba(197, 155, 39, 0.2);
}

.btn-call:hover {
    background-color: #ac831c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 155, 39, 0.35);
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold) !important;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & NAVIGATION (DARK MAROON STYLE)
   ========================================================================== */
.top-bar {
    background-color: var(--bg-header-top);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    font-size: 0.85rem;
    color: #ffffff;
}

.top-bar .contact-info a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.top-bar .contact-info a i {
    color: var(--primary-gold);
}

.top-bar .contact-info a:hover {
    color: var(--orange-cta);
}

.top-bar .btn-consultation {
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    font-family: var(--font-hindi);
}

.main-navbar {
    background-color: var(--bg-header-nav) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand img {
    height: 45px;
    width: auto;
}

.brand-text h5 {
    color: var(--primary-gold) !important;
    font-size: 1.05rem;
    margin-bottom: 2px;
    font-weight: 700;
}

.brand-text p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.75rem;
    margin: 0;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-family: var(--font-hindi);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 16px !important;
    position: relative;
    border-radius: 6px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--primary-gold);
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--primary-gold);
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* ==========================================================================
   HERO SECTIONS (DARK STARRY BACKGROUNDS & LIGHT REIKI COEXISTENCE)
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 90px 0 70px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

/* Glowing Aura Background */
.hero-glowing-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 155, 39, 0.15) 0%, rgba(197, 155, 39, 0) 70%);
    pointer-events: none;
    z-index: 1;
    animation: auraPulse 8s ease-in-out infinite alternate;
}

@keyframes auraPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* Floating Elements */
.hero-floating-element {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.2s ease-out;
}

.hero-floating-element i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    display: inline-block;
}

.hero-floating-element.float-1 { top: 15%; left: 10%; animation: floatY 6s ease-in-out infinite; }
.hero-floating-element.float-2 { top: 25%; right: 15%; animation: floatY 8s ease-in-out infinite 1s; }
.hero-floating-element.float-3 { bottom: 20%; left: 15%; animation: floatX 7s ease-in-out infinite 0.5s; }
.hero-floating-element.float-4 { bottom: 15%; right: 25%; animation: floatY 9s ease-in-out infinite 2s; }
.hero-floating-element.float-5 { top: 60%; left: 5%; animation: floatRotate 12s linear infinite; }
.hero-floating-element.float-6 { top: 40%; right: 8%; animation: floatY 10s ease-in-out infinite 1.5s; }

@keyframes floatY {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes floatX {
    0% { transform: translateX(0px); }
    50% { transform: translateX(-15px); }
    100% { transform: translateX(0px); }
}

@keyframes floatRotate {
    0% { transform: rotate(0deg) translateY(0px); }
    50% { transform: rotate(180deg) translateY(-10px); }
    100% { transform: rotate(360deg) translateY(0px); }
}

/* Ensure container sits on top of glowing animations */
.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-description {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.hero-bullets {
    list-style: none;
    padding-left: 0;
    margin-bottom: 35px;
}

.hero-bullets li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.hero-bullets li i {
    color: var(--primary-gold);
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-custom);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: transform 0.5s ease;
    animation: zoomEntrance 1s ease forwards;
}

@keyframes zoomEntrance {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

.hero-image-wrapper:hover {
    transform: scale(1.02);
}

.hero-feature-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-feature-card {
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    border-radius: var(--border-radius-custom);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.hero-feature-card:hover {
    transform: translateX(-5px);
    border-color: var(--orange-cta);
    box-shadow: var(--shadow-md);
}

.hero-feature-card i {
    font-size: 1.8rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.hero-feature-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.hero-feature-card h6 {
    margin-bottom: 4px;
    font-weight: 700;
}

.hero-feature-card p {
    margin: 0;
    font-size: 0.8rem;
}

/* Page-Specific Hero Custom Backgrounds */
.page-astrology .hero-section {
    background: linear-gradient(rgba(35, 7, 4, 0.85), rgba(57, 9, 7, 0.85)), url('../images/astrology-hero.jpg') center/cover no-repeat;
    color: #ffffff;
}

.page-reiki .hero-section {
    background: linear-gradient(135deg, #fdf8eb 0%, #fef4ea 100%);
    color: var(--text-dark-brown);
}

.page-yoga .hero-section {
    background: linear-gradient(rgba(57, 9, 7, 0.8), rgba(35, 7, 4, 0.85)), url('../images/yoga-hero.jpg') center/cover no-repeat;
    color: #ffffff;
}

.page-tantra .hero-section {
    background: linear-gradient(rgba(35, 7, 4, 0.9), rgba(57, 9, 7, 0.9)), url('../images/tantra-hero.jpg') center/cover no-repeat;
    color: #ffffff;
}

.page-palmistry .hero-section {
    background: linear-gradient(rgba(57, 9, 7, 0.85), rgba(35, 7, 4, 0.85)), url('../images/palmistry-hero.jpg') center/cover no-repeat;
    color: #ffffff;
}

.page-ramal .hero-section {
    background: linear-gradient(rgba(35, 7, 4, 0.85), rgba(57, 9, 7, 0.85)), url('../images/ramal-hero.jpg') center/cover no-repeat;
    color: #ffffff;
}

.page-numerology .hero-section {
    background: linear-gradient(rgba(57, 9, 7, 0.85), rgba(35, 7, 4, 0.85)), url('../images/numerology-hero.jpg') center/cover no-repeat;
    color: #ffffff;
}

/* Text styles inside Dark Heros */
.page-astrology .hero-section h1, .page-yoga .hero-section h1, .page-tantra .hero-section h1, .page-palmistry .hero-section h1, .page-ramal .hero-section h1, .page-numerology .hero-section h1 {
    color: #ffffff !important;
}

.page-astrology .hero-section p, .page-yoga .hero-section p, .page-tantra .hero-section p, .page-palmistry .hero-section p, .page-ramal .hero-section p, .page-numerology .hero-section p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.page-astrology .hero-section li, .page-yoga .hero-section li, .page-tantra .hero-section li, .page-palmistry .hero-section li, .page-ramal .hero-section li, .page-numerology .hero-section li {
    color: rgba(255, 255, 255, 0.85) !important;
}

.page-astrology .hero-section .hero-feature-card, .page-yoga .hero-section .hero-feature-card, .page-tantra .hero-section .hero-feature-card, .page-palmistry .hero-section .hero-feature-card, .page-ramal .hero-section .hero-feature-card, .page-numerology .hero-section .hero-feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(197, 155, 39, 0.3);
}

.page-astrology .hero-section .hero-feature-card h6, .page-yoga .hero-section .hero-feature-card h6, .page-tantra .hero-section .hero-feature-card h6, .page-palmistry .hero-section .hero-feature-card h6, .page-ramal .hero-section .hero-feature-card h6, .page-numerology .hero-section .hero-feature-card h6 {
    color: var(--primary-gold) !important;
}

.page-astrology .hero-section .hero-feature-card p, .page-yoga .hero-section .hero-feature-card p, .page-tantra .hero-section .hero-feature-card p, .page-palmistry .hero-section .hero-feature-card p, .page-ramal .hero-section .hero-feature-card p, .page-numerology .hero-section .hero-feature-card p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ==========================================================================
   TRUST FEATURE BAR
   ========================================================================== */
.trust-bar {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 25px 0;
    box-shadow: var(--shadow-sm);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: left;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.trust-item:hover i {
    transform: scale(1.2);
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark-brown);
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */
.section-padding {
    padding: 80px 0;
}

.section-title-wrapper {
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    transition: width 0.4s ease;
}

.section-title-wrapper:hover .section-title::after {
    width: 100px;
}

/* ==========================================================================
   CARDS & GRID UTILITIES
   ========================================================================== */

/* Service Card */
.service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-custom);
    padding: 35px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--orange-cta);
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(197, 155, 39, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 1px solid rgba(197, 155, 39, 0.15);
    transition: all var(--transition-speed) ease;
}

.service-card:hover .icon-wrapper {
    background-color: var(--primary-gold);
    transform: scale(1.05);
}

.service-card .icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-gold);
    transition: all var(--transition-speed) ease;
}

.service-card:hover .icon-wrapper i {
    color: #ffffff;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark-brown);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-dark-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Benefit/Feature Card */
.benefit-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-custom);
    padding: 24px;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
}

.benefit-card i {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.benefit-card:hover i {
    transform: scale(1.1);
}

.benefit-card h5 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-dark-brown);
}

.benefit-card p {
    font-size: 0.88rem;
    color: var(--text-dark-muted);
    margin: 0;
}

/* ==========================================================================
   GURU SECTION
   ========================================================================== */
.guru-image {
    border-radius: var(--border-radius-custom);
    border: 3px solid var(--primary-gold);
    box-shadow: var(--shadow-md);
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.guru-image:hover {
    transform: scale(1.02);
}

.guru-stat-box {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    padding: 10px 0;
}

.guru-stat-box:last-child {
    border-right: none;
}

.guru-stat-box h3 {
    font-size: 2.2rem;
    color: var(--primary-gold);
    font-weight: 800;
    margin-bottom: 5px;
}

.guru-stat-box p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ==========================================================================
   CONSULTATION FORM (IN DARK MAROON REGIONS)
   ========================================================================== */
.consultation-form-wrapper {
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-custom);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-control, .form-select {
    background-color: #ffffff;
    border: 1px solid rgba(197, 155, 39, 0.35);
    color: var(--text-dark-brown);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
}

.form-control:focus, .form-select:focus {
    background-color: #ffffff;
    border-color: var(--orange-cta);
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.2);
    color: var(--text-dark-brown);
}

.form-label {
    font-family: var(--font-hindi);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-gold) !important;
    margin-bottom: 8px;
}

.required-star {
    color: #e74c3c;
    font-weight: bold;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-custom);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.quote-text {
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-dark-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.client-info {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.client-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--primary-gold);
}

.client-city {
    font-size: 0.8rem;
    color: var(--text-dark-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.slider-btn:hover {
    background-color: var(--primary-gold);
    color: #ffffff;
    transform: scale(1.05);
}

/* ==========================================================================
   FOOTER (UNIFIED DEEP DARK MAROON SYSTEM)
   ========================================================================== */
footer {
    background-color: var(--bg-footer) !important;
    border-top: 3px solid var(--primary-gold);
    padding: 70px 0 30px 0;
    font-size: 0.9rem;
    color: #ffffff;
}

.footer-about h5 {
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.footer-socials a:hover {
    background-color: var(--primary-gold);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(197, 155, 39, 0.3);
}

.footer-links-title {
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a:hover {
    color: var(--primary-gold);
    transform: translateX(4px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info li i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

.float-wa {
    background-color: #25d366;
}

.float-call {
    background-color: var(--orange-cta);
}

.back-to-top {
    background-color: var(--primary-gold);
    opacity: 0;
    visibility: hidden;
}

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

/* ==========================================================================
   BLOG CARD HOVER & ZOOM ANIMATIONS
   ========================================================================== */
.blog-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(35, 7, 4, 0.15);
    border-color: var(--primary-gold, #c59b27) !important;
}
.blog-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.blog-zoom-img {
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-zoom-img {
    transform: scale(1.08);
}
.text-warning-hover {
    transition: color 0.3s ease;
}
.text-warning-hover:hover {
    color: var(--primary-orange, #d97706) !important;
}
