/* ==========================================================================
   کلینیک کسب و کار پردیس - Pardis Business Clinic
   طراحی مدرن، شرکتی و راست‌چین (RTL) با استاندارد فونت وزیرمتن
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100..900&display=swap');

:root {
    /* Brand Colors based on official logo guidelines: #232459 & #f8de0e */
    --brand-navy-950: #131435;
    --brand-navy-900: #1b1c47;
    --brand-navy-800: #232459;
    --brand-navy-700: #2d2f70;
    --brand-navy-600: #3c3e8e;
    --brand-navy-50: #f4f5fc;
    
    --brand-gold-600: #d6be06;
    --brand-gold-500: #f8de0e;
    --brand-gold-400: #ffe838;
    --brand-gold-300: #fff070;
    --brand-gold-light: rgba(248, 222, 14, 0.15);

    --brand-cyan: #0284c7;
    --brand-emerald: #10b981;

    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;

    --shadow-subtle: 0 4px 20px -2px rgba(35, 36, 89, 0.07);
    --shadow-hover: 0 16px 32px -4px rgba(35, 36, 89, 0.16);
    --shadow-card: 0 10px 25px -5px rgba(35, 36, 89, 0.09);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    direction: rtl;
    text-align: right;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.8;
    font-size: 0.96rem;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: var(--brand-navy-900);
    letter-spacing: -0.02em;
    line-height: 1.4;
}

a {
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
    background: var(--brand-navy-900);
    color: #cbd5e1;
    font-size: 0.84rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar a {
    color: #e2e8f0;
}

.top-bar a:hover {
    color: var(--brand-gold-400);
}

.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-subtle);
}

.navbar-custom.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-card);
}

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

.brand-logo-img {
    height: 48px;
    max-width: 180px;
    object-fit: contain;
}

.brand-icon-box {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--brand-navy-800), var(--brand-navy-600));
    color: var(--brand-gold-400);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.2);
}

.brand-title {
    font-weight: 900;
    font-size: 1.18rem;
    color: var(--brand-navy-900);
    margin: 0;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

.nav-link-custom {
    color: var(--brand-navy-800) !important;
    font-weight: 600;
    font-size: 0.94rem;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--brand-navy-600) !important;
    background: var(--brand-navy-50);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-gold {
    background: linear-gradient(135deg, #d4af37, #f3cf55);
    color: var(--brand-navy-900);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    padding: 10px 24px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #f3cf55, #d4af37);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.btn-navy {
    background: linear-gradient(135deg, var(--brand-navy-800), var(--brand-navy-700));
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    padding: 10px 24px;
    box-shadow: 0 4px 15px rgba(11, 37, 69, 0.25);
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background: linear-gradient(135deg, var(--brand-navy-700), var(--brand-navy-600));
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(11, 37, 69, 0.35);
}

.btn-outline-navy {
    background: transparent;
    color: var(--brand-navy-800);
    border: 2px solid var(--brand-navy-800);
    font-weight: 700;
    border-radius: var(--radius-md);
    padding: 8px 22px;
    transition: all 0.25s ease;
}

.btn-outline-navy:hover {
    background: var(--brand-navy-800);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section (Ultra-Modern 3D & Holographic Interactive)
   ========================================================================== */
.hero-section {
    position: relative;
    background: radial-gradient(circle at 80% 20%, #153e6f 0%, #0b2545 45%, #051424 100%);
    color: #ffffff;
    padding: 110px 0 130px 0;
    overflow: hidden;
    perspective: 1000px;
}

/* Background Animated Canvas */
.hero-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* 3D Glowing Ambient Spheres */
.hero-glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.45;
    animation: floatSphere 12s ease-in-out infinite alternate;
}

.hero-glow-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0) 70%);
    top: -100px;
    right: -100px;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, rgba(56, 189, 248, 0) 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -6s;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(243, 207, 85, 0.25) 0%, rgba(243, 207, 85, 0) 70%);
    top: 40%;
    left: 40%;
    animation-duration: 16s;
}

@keyframes floatSphere {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.15); }
    100% { transform: translate(-30px, 35px) scale(0.9); }
}

/* Badge with Live Pulse */
.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 7px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 0 15px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.hero-badge-modern:hover {
    border-color: var(--brand-gold-400);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.25);
}

.pulse-indicator {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(34, 197, 94, 0.4);
    animation: pulseRing 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2.4); opacity: 0; }
}

.hero-badge-text {
    font-size: 0.88rem;
    font-weight: 700;
    color: #f1f5f9;
}

/* Modern Typography */
.hero-title-modern {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 22px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-title-sub {
    font-size: 1.55rem;
    font-weight: 700;
    color: #e2e8f0;
    display: block;
    margin-top: 6px;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #fff2a3 0%, #f3cf55 40%, #d4af37 80%, #ffdf79 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShine 4s linear infinite;
}

@keyframes goldShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-description-modern {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.95;
    margin-bottom: 35px;
    max-width: 630px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero CTA Buttons */
.btn-hero-gold {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #d4af37, #f3cf55);
    color: var(--brand-navy-950);
    font-weight: 800;
    font-size: 1.02rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.6);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.btn-hero-gold:hover {
    color: #000;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.55);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-25deg);
    animation: btnShineAnim 3.5s infinite;
}

@keyframes btnShineAnim {
    0% { left: -100%; }
    25% { left: 150%; }
    100% { left: 150%; }
}

.btn-hero-glass {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 26px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--brand-gold-400);
    color: var(--brand-gold-300);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Trust Highlights Bar */
.hero-trust-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background: rgba(11, 37, 69, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 14px 22px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--brand-gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.trust-item strong {
    display: block;
    font-size: 0.88rem;
    color: #ffffff;
}

.trust-item small {
    display: block;
    font-size: 0.74rem;
    color: #94a3b8;
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   3D Hologram Scene & Interactive Tilt Card
   ========================================================================== */
.hero-3d-scene {
    perspective: 1200px;
    position: relative;
    padding: 20px 0;
}

.hero-3d-card {
    position: relative;
    background: linear-gradient(145deg, rgba(23, 66, 118, 0.6) 0%, rgba(11, 37, 69, 0.8) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(56, 189, 248, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.35);
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
    cursor: default;
}

.hero-3d-card:hover {
    box-shadow: 
        0 30px 60px -10px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(212, 175, 55, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.45);
}

/* Hologram Top Header */
.holo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 22px;
}

.live-dot-green {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 12px #10b981;
    animation: blinkGreen 1.5s infinite alternate;
}

@keyframes blinkGreen {
    0% { opacity: 0.5; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.2); }
}

.holo-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.holo-badge {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--brand-gold-400);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
}

/* Hologram Chart */
.holo-chart-container {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 20px;
}

.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.chart-label {
    font-size: 0.82rem;
    color: #94a3b8;
    font-weight: 600;
}

.chart-growth-tag {
    font-size: 0.84rem;
    font-weight: 800;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.12);
    padding: 2px 8px;
    border-radius: 6px;
}

.holo-chart-svg-wrap {
    width: 100%;
    height: 95px;
}

.holo-svg-chart {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.chart-animated-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLine 2.5s ease-out forwards, glowStroke 3s ease-in-out infinite alternate;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

@keyframes glowStroke {
    0% { filter: drop-shadow(0 0 2px rgba(243, 207, 85, 0.4)); }
    100% { filter: drop-shadow(0 0 8px rgba(243, 207, 85, 0.9)); }
}

.chart-node {
    fill: #38bdf8;
    filter: drop-shadow(0 0 6px #38bdf8);
}

.chart-node-active {
    fill: #f3cf55;
    filter: drop-shadow(0 0 10px #f3cf55);
    animation: pulseNode 1.6s infinite alternate;
}

@keyframes pulseNode {
    0% { r: 5.5; }
    100% { r: 7.5; }
}

/* Service Mini Bars */
.holo-services-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-service-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 14px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.mini-service-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.mini-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.mini-info {
    flex: 1;
}

.mini-info h6 {
    font-size: 0.84rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.mini-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.mini-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #38bdf8, #d4af37, #f3cf55);
    border-radius: 4px;
    animation: progressGrow 2s ease-out forwards;
}

@keyframes progressGrow {
    from { width: 0 !important; }
}

/* Scanline Effect */
.holo-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.7), rgba(243, 207, 85, 0.8), transparent);
    opacity: 0.6;
    animation: scanAnim 4s linear infinite;
    pointer-events: none;
}

@keyframes scanAnim {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { top: 100%; opacity: 0; }
}

/* 3D Floating Badges (Holographic Widgets) */
.floating-badge {
    position: absolute;
    background: rgba(11, 37, 69, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.15);
    z-index: 10;
    transform: translateZ(40px);
}

.badge-top-right {
    top: -24px;
    right: -24px;
    animation: floatWidget1 5s ease-in-out infinite alternate;
}

.badge-bottom-left {
    bottom: -22px;
    left: -20px;
    animation: floatWidget2 6s ease-in-out infinite alternate;
}

.badge-float-center {
    top: 48%;
    right: -32px;
    padding: 7px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #f3cf55;
    border-color: rgba(212, 175, 55, 0.4);
    animation: floatWidget3 4.5s ease-in-out infinite alternate;
}

@keyframes floatWidget1 {
    0% { transform: translateY(0px) rotate(0deg) translateZ(40px); }
    100% { transform: translateY(-12px) rotate(1.5deg) translateZ(50px); }
}

@keyframes floatWidget2 {
    0% { transform: translateY(0px) rotate(0deg) translateZ(40px); }
    100% { transform: translateY(14px) rotate(-1.5deg) translateZ(50px); }
}

@keyframes floatWidget3 {
    0% { transform: translateY(0px) scale(0.98) translateZ(30px); }
    100% { transform: translateY(-10px) scale(1.02) translateZ(45px); }
}

.floating-icon-glow {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.icon-gold {
    background: rgba(212, 175, 55, 0.2);
    color: var(--brand-gold-400);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.icon-green {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.badge-num {
    display: block;
    font-size: 0.95rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

.badge-sub {
    display: block;
    font-size: 0.72rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* ==========================================================================
   Page Headers (Inner Pages Hero Banner)
   ========================================================================== */
.page-header-section {
    position: relative;
    background: radial-gradient(circle at 80% 20%, #2e3073 0%, var(--brand-navy-800) 50%, var(--brand-navy-950) 100%);
    color: #ffffff;
    padding: 70px 0 80px 0;
    overflow: hidden;
    border-bottom: 3px solid var(--brand-gold-500);
}

.page-header-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(rgba(248, 222, 14, 0.08) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    background-position: 0 0, 14px 14px;
    opacity: 0.7;
    pointer-events: none;
}

.page-title {
    font-size: 2.3rem;
    font-weight: 900;
    color: #ffffff !important;
    line-height: 1.35;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.page-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1 !important;
    line-height: 1.8;
}

.text-gold {
    color: var(--brand-gold-400) !important;
}

.content-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    color: var(--text-main);
}

.section-subheading {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand-navy-900);
}

/* ==========================================================================
   Cards & Sections
   ========================================================================== */
.section-padding {
    padding: 85px 0;
}

.section-tag {
    color: var(--brand-gold-600);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.section-heading {
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--brand-navy-900);
}

.section-subtext {
    color: var(--text-muted);
    font-size: 1.02rem;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

/* Service Cards */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-gold-500), var(--brand-navy-600));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: #cbd5e1;
}

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

.service-icon-box {
    width: 62px;
    height: 62px;
    background: var(--brand-navy-50);
    color: var(--brand-navy-800);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background: var(--brand-navy-800);
    color: var(--brand-gold-400);
    transform: scale(1.05);
}

.service-title {
    font-size: 1.22rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-link {
    font-weight: 700;
    color: var(--brand-navy-700);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.service-link:hover {
    color: var(--brand-gold-600);
    gap: 10px;
}

/* ==========================================================================
   Counters & Stats
   ========================================================================== */
.stats-section {
    background: linear-gradient(135deg, var(--brand-navy-900), var(--brand-navy-800));
    color: #ffffff;
    padding: 60px 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--brand-gold-400);
    margin-bottom: 4px;
    display: inline-block;
}

.stat-label {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

/* ==========================================================================
   Process Steps
   ========================================================================== */
.process-step-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
    height: 100%;
}

.process-step-number {
    width: 38px;
    height: 38px;
    background: var(--brand-gold-light);
    color: var(--brand-gold-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

/* ==========================================================================
   Consultation Form Styling
   ========================================================================== */
.form-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    padding: 40px;
}

.form-control, .form-select {
    font-family: inherit;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 0.94rem;
    transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--brand-navy-700);
    box-shadow: 0 0 0 4px rgba(11, 37, 69, 0.1);
}

.form-label {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--brand-navy-900);
    margin-bottom: 7px;
}

/* ==========================================================================
   Testimonial & Team Cards
   ========================================================================== */
.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-subtle);
}

.testimonial-quote {
    color: #334155;
    font-size: 0.94rem;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-navy-50);
    color: var(--brand-navy-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border: 2px solid var(--brand-gold-500);
}

.team-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-subtle);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.team-avatar-box {
    height: 220px;
    background: linear-gradient(135deg, var(--brand-navy-800), var(--brand-navy-700));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
}

.team-body {
    padding: 24px;
}

/* ==========================================================================
   Blog Cards
   ========================================================================== */
.blog-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-subtle);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.blog-cover-placeholder {
    height: 190px;
    background: linear-gradient(135deg, #133d6e, #07172b);
    color: var(--brand-gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-badge {
    background: var(--brand-navy-50);
    color: var(--brand-navy-800);
    font-size: 0.76rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-bottom: 12px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-main {
    background: var(--brand-navy-900);
    color: #e2e8f0;
    padding: 70px 0 25px 0;
    border-top: 4px solid var(--brand-gold-500);
}

.footer-main p, .footer-main .text-muted {
    color: #e2e8f0 !important;
    font-size: 0.95rem;
    line-height: 1.9;
}

.footer-main strong {
    color: #f3cf55 !important;
    font-weight: 700;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 2px;
    background: var(--brand-gold-400);
}

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

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

.footer-links a {
    color: #cbd5e1;
    font-size: 0.92rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--brand-gold-400);
    padding-right: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 50px;
    padding-top: 25px;
    font-size: 0.88rem;
    color: #cbd5e1;
}

.footer-bottom p {
    color: #cbd5e1 !important;
}

/* ==========================================================================
   Store & Educational Packages Section
   ========================================================================== */
.store-filter-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-subtle);
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--brand-navy-50);
    color: var(--brand-navy-800);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.filter-pill:hover, .filter-pill.active {
    background: var(--brand-navy-800);
    color: #ffffff;
    border-color: var(--brand-navy-800);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(35, 36, 89, 0.25);
}

.store-search-input {
    border-radius: var(--radius-full);
    padding: 10px 42px 10px 20px;
    border: 1px solid var(--border-color);
    background: #f8fafc;
    font-size: 0.92rem;
}

.store-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--brand-navy-800);
}

/* Package Card */
.package-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-subtle);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(248, 222, 14, 0.5);
}

.package-image-wrap {
    height: 180px;
    position: relative;
    background: linear-gradient(135deg, var(--brand-navy-900) 0%, var(--brand-navy-800) 50%, var(--brand-navy-700) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.package-placeholder-img {
    font-size: 4.5rem;
    color: rgba(248, 222, 14, 0.85);
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s ease;
}

.package-card:hover .package-placeholder-img {
    transform: scale(1.12) rotate(4deg);
}

.package-badge-top {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.package-category-tag {
    position: absolute;
    bottom: 12px;
    left: 14px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.package-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-rating {
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.package-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.package-title {
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.5;
    margin: 8px 0 12px 0;
}

.package-title a {
    color: var(--brand-navy-900);
    text-decoration: none;
    transition: color 0.2s ease;
}

.package-title a:hover {
    color: var(--brand-navy-600);
}

.package-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-instructor {
    font-size: 0.82rem;
    color: var(--text-main);
    font-weight: 600;
}

.package-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-pricing {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #94a3b8;
    line-height: 1;
}

.final-price {
    font-size: 1.22rem;
    font-weight: 900;
    color: var(--brand-navy-900);
    line-height: 1.2;
}

.final-price small {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

.btn-gold-solid {
    background: linear-gradient(135deg, var(--brand-gold-500), var(--brand-gold-400));
    color: var(--brand-navy-950);
    font-weight: 800;
    border: none;
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    transition: all 0.25s ease;
}

.btn-gold-solid:hover {
    background: linear-gradient(135deg, var(--brand-gold-400), var(--brand-gold-300));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 222, 14, 0.4);
    color: #000;
}

.btn-outline-brand {
    border: 1px solid var(--brand-navy-800);
    color: var(--brand-navy-800);
    font-weight: 700;
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    transition: all 0.2s ease;
}

.btn-outline-brand:hover {
    background: var(--brand-navy-800);
    color: #ffffff;
}

/* Store Features Banner */
.store-features-banner {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    box-shadow: var(--shadow-subtle);
}

.store-feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--brand-navy-50);
    color: var(--brand-navy-800);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto;
    border: 1px solid rgba(35, 36, 89, 0.1);
}

/* Course Details Specific Styles */
.syllabus-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.syllabus-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--brand-navy-50);
    border: 1px solid rgba(35, 36, 89, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    transition: all 0.25s ease;
}

.syllabus-item:hover {
    background: #ffffff;
    border-color: var(--brand-gold-500);
    transform: translateX(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.syllabus-num {
    width: 32px;
    height: 32px;
    background: var(--brand-navy-800);
    color: var(--brand-gold-400);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}

.syllabus-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--brand-navy-900);
}

.guarantee-box {
    background: linear-gradient(135deg, var(--brand-navy-900), var(--brand-navy-800));
    border: 1px solid rgba(248, 222, 14, 0.3);
}

.package-sidebar-card {
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid var(--border-color);
}

.preview-box {
    height: 140px;
    background: linear-gradient(135deg, var(--brand-navy-950), var(--brand-navy-800));
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.preview-box:hover {
    transform: scale(1.02);
}

.preview-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 12px rgba(248, 222, 14, 0.4));
}

.text-gold-deep {
    color: #c99a00;
}

.bg-brand-navy {
    background-color: var(--brand-navy-800) !important;
}

.text-navy-custom {
    color: var(--brand-navy-800) !important;
}

.text-gold {
    color: var(--brand-gold-500) !important;
}

.text-gold-light {
    color: var(--brand-gold-300) !important;
}

.text-light-muted {
    color: #94a3b8 !important;
}

.font-monospace {
    font-family: inherit !important;
}

/* ==========================================================================
   Mobile Offcanvas Drawer Navigation
   ========================================================================== */
.mobile-offcanvas {
    width: 320px !important;
    max-width: 85vw;
    background: linear-gradient(180deg, var(--brand-navy-950) 0%, var(--brand-navy-900) 100%) !important;
    color: #f8fafc;
    border-left: 1px solid rgba(248, 222, 14, 0.2) !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4) !important;
    z-index: 1060;
}

.mobile-offcanvas-header {
    background: rgba(19, 20, 53, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
}

.mobile-nav-list {
    gap: 6px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 11px 16px;
    border-radius: 12px;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.93rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active,
.mobile-nav-link.active {
    background: rgba(248, 222, 14, 0.12);
    border-color: rgba(248, 222, 14, 0.35);
    color: #ffffff;
    transform: translateX(-4px);
}

.mobile-offcanvas-branch-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(248, 222, 14, 0.25);
    border-radius: 14px;
    padding: 12px 14px;
}

/* ==========================================================================
   Mobile Floating Bottom Action Bar
   ========================================================================== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1045;
    background: rgba(27, 28, 71, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(248, 222, 14, 0.25);
    box-shadow: 0 -4px 25px rgba(19, 20, 53, 0.35);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-bottom-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 62px;
    padding: 0 10px;
}

.mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    gap: 3px;
    flex: 1;
    height: 100%;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-item i {
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.mobile-bottom-item:hover,
.mobile-bottom-item:active,
.mobile-bottom-item.active {
    color: var(--brand-gold-400);
}

.mobile-bottom-item:active i {
    transform: scale(1.15);
}

.mobile-bottom-whatsapp {
    color: var(--brand-gold-400) !important;
}

.mobile-bottom-whatsapp i {
    color: var(--brand-gold-400) !important;
    filter: drop-shadow(0 0 5px rgba(248, 222, 14, 0.45));
}

.mobile-bottom-whatsapp span {
    color: var(--brand-gold-400) !important;
    font-weight: 700 !important;
}

/* Central Golden Highlight CTA Button in Bottom Bar */
.mobile-bottom-cta {
    position: relative;
    top: -12px;
    color: var(--brand-navy-900) !important;
}

.mobile-bottom-cta-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-gold-400) 0%, var(--brand-gold-600) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-navy-950);
    box-shadow: 0 4px 18px rgba(248, 222, 14, 0.5), 0 0 0 4px rgba(27, 28, 71, 0.94);
    font-size: 1.35rem;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-bottom-cta:active .mobile-bottom-cta-btn {
    transform: scale(0.92);
}

.mobile-bottom-cta span {
    color: var(--brand-gold-300);
    font-weight: 800;
    margin-top: 2px;
    font-size: 0.7rem;
}

/* ==========================================================================
   Responsive Optimizations (Mobile & Tablet)
   ========================================================================== */
@media (max-width: 991.98px) {
    .hero-title-modern {
        font-size: 2.1rem !important;
    }
    .hero-section {
        padding: 60px 0 70px 0 !important;
        overflow: hidden !important;
    }
    .form-card {
        padding: 28px !important;
    }

    /* Constrain 3D Floating Badges inside the card to eliminate horizontal shift */
    .badge-top-right {
        top: -12px !important;
        right: 8px !important;
        transform: none !important;
        animation: none !important;
    }
    .badge-bottom-left {
        bottom: -12px !important;
        left: 8px !important;
        transform: none !important;
        animation: none !important;
    }
    .badge-float-center {
        display: none !important;
    }
    .floating-badge {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    }
    .floating-icon-glow {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.95rem !important;
    }
    .badge-num {
        font-size: 0.82rem !important;
    }
    .badge-sub {
        font-size: 0.68rem !important;
    }
}

@media (max-width: 767.98px) {
    /* Offset body height so bottom bar doesn't overlay page content */
    body {
        padding-bottom: 74px !important;
    }

    .navbar-custom {
        padding: 10px 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    .navbar-brand-wrapper {
        gap: 8px !important;
        max-width: calc(100vw - 120px) !important;
    }

    /* Header & Brand */
    .brand-title {
        font-size: 0.98rem !important;
        white-space: nowrap !important;
    }

    .brand-subtitle {
        display: none !important;
    }

    .brand-logo-img {
        height: 36px !important;
    }

    /* Hero Section */
    .hero-section {
        padding: 30px 0 45px 0 !important;
        overflow: hidden !important;
    }

    .hero-title-modern {
        font-size: 1.6rem !important;
        line-height: 1.35 !important;
    }

    .hero-title-sub {
        font-size: 0.95rem !important;
        margin-top: 6px !important;
    }

    .hero-description-modern {
        font-size: 0.88rem !important;
        line-height: 1.8 !important;
        margin-bottom: 20px !important;
    }

    .hero-badge-modern {
        font-size: 0.73rem !important;
        padding: 5px 12px !important;
        margin-bottom: 14px !important;
    }

    .hero-trust-bar {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: flex-start !important;
        padding: 12px 14px !important;
    }

    .trust-divider {
        display: none !important;
    }

    /* 3D Scene adjustments for touch devices */
    .hero-3d-scene {
        perspective: none !important;
        margin-top: 15px !important;
        overflow: hidden !important;
    }

    .hero-3d-card {
        transform: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
        padding: 20px 14px !important;
    }

    /* Touch Friendly Inputs */
    .form-control,
    .form-select {
        min-height: 48px !important;
        font-size: 0.95rem !important;
        border-radius: 12px !important;
    }

    .form-card {
        padding: 20px 14px !important;
        border-radius: 16px !important;
    }

    .btn-hero-gold,
    .btn-hero-glass {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 18px !important;
        font-size: 0.92rem !important;
    }

    /* Cards & Grids */
    .service-card-modern,
    .pillar-card,
    .store-features-banner {
        padding: 18px 14px !important;
    }

    .section-title {
        font-size: 1.4rem !important;
    }

    /* Footer */
    .footer-main {
        padding: 40px 0 20px 0 !important;
    }

    .footer-heading {
        margin-top: 15px !important;
        font-size: 1.05rem !important;
    }
}

@media (max-width: 420px) {
    .brand-title {
        font-size: 0.88rem !important;
    }
    .brand-logo-img {
        height: 30px !important;
    }
    .navbar-custom .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

/* ==========================================================================
   Floating Contact & WhatsApp Action Hub
   ========================================================================== */
.floating-quick-contact {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.floating-btn {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none !important;
}

.floating-btn:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.floating-btn-call {
    background: linear-gradient(135deg, #1b1c47, #f8de0e);
    color: #131435 !important;
    border: 2px solid #f8de0e;
}

.floating-btn-call i {
    color: #131435;
    animation: phoneWiggle 2.5s infinite;
}

.floating-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: 2px solid #a7f3d0;
}

.floating-btn-whatsapp i {
    animation: waFloat 2.8s ease-in-out infinite;
}

/* Tooltip on hover for desktop */
.floating-tooltip {
    position: absolute;
    left: 68px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background: #131435;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(248, 222, 14, 0.3);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Pulse Rings */
.floating-pulse-call,
.floating-pulse-wa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
}

.floating-pulse-call {
    background: rgba(248, 222, 14, 0.45);
    animation: pulseRing 2s infinite;
}

.floating-pulse-wa {
    background: rgba(37, 211, 102, 0.45);
    animation: pulseRing 2s infinite 0.6s;
}

@@keyframes pulseRing {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@@keyframes phoneWiggle {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
}

@@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Hide floating widget on mobile (already have bottom nav bar with call/whatsapp) */
@media (max-width: 768px) {
    .floating-quick-contact {
        display: none !important;
    }
}



