/* ===================================
   Sparklusion.agency - Premium Styles
   =================================== */

:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-gold: #FFD700;
    --dark-bg: #0A0E27;
    --light-bg: #F8F9FA;
    --text-dark: #1A1A2E;
    --text-light: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-dark: linear-gradient(135deg, #0A0E27 0%, #1A1A2E 100%);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
    width: 100%;
    max-width: 100vw;
}

/* Ensure Rupee symbol uses Noto Sans */
.service-price-tag,
.mini-price,
.pricing-amount,
.amount,
.currency {
    font-family: 'Noto Sans', 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

/* Prevent horizontal scroll */
.container-fluid,
.container {
    overflow-x: hidden;
    max-width: 100%;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.3;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
}

.text-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1050;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.98) !important;
    backdrop-filter: blur(15px);
    padding: 0.7rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.brand-spark {
    color: var(--primary-color);
    font-weight: 800;
}

.brand-lusion {
    color: var(--text-light);
    font-weight: 800;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 400;
    margin-left: 2px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-light) !important;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-consultation {
    background: var(--gradient-primary);
    color: var(--text-light) !important;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    margin-left: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
}

/* ===================================
   Hero Section - FIXED ALL ISSUES
   =================================== */

.hero-section {
    background: var(--gradient-dark);
    background-image: 
        linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FF6B35" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding-top: 120px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-section .row {
    position: relative;
    z-index: 2;
}

.hero-section .col-lg-8 {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--accent-gold);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1.5px solid rgba(255, 215, 0, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero-badge i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-light);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.hero-subtitle strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.stat-item {
    position: relative;
    z-index: 2;
}

.stat-item h3 {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    font-weight: 900;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
    color: var(--text-light);
}

.hero-cta {
    position: relative;
    z-index: 2;
}

/* FIXED: Scroll indicator positioning */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 1;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--accent-gold);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===================================
   Buttons
   =================================== */

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    background: var(--gradient-primary);
    color: var(--text-light);
}

.btn-outline-light {
    border: 2px solid var(--text-light);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: var(--text-light);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===================================
   Pain Section
   =================================== */

.pain-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: var(--text-light);
}

.pain-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.pain-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.pain-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pain-icon i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pain-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.pain-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

.pain-cta {
    background: rgba(255, 107, 53, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 2px dashed var(--primary-color);
}

.pain-cta h3 {
    color: var(--text-light);
}

/* ===================================
   Services Section
   =================================== */

.services-section {
    background: var(--light-bg);
    padding: 6rem 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.service-block {
    background: var(--text-light);
    padding: 4rem;
    margin-bottom: 4rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-block:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon-wrapper {
    display: inline-block;
    background: var(--gradient-primary);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.service-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.service-price-tag {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--dark-bg);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.7rem 0;
    font-size: 1.05rem;
    color: #444;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.service-image-wrapper {
    background: var(--gradient-primary);
    height: 500px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.service-stat-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 1rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    flex: 1;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-box h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.stat-box p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--dark-bg);
}

/* Mini Service Cards */
.mini-service-card {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.mini-service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.mini-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mini-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.mini-service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.mini-price {
    background: var(--accent-gold);
    color: var(--dark-bg);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.mini-service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.mini-cta {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.mini-cta:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ===================================
   Why Us Section
   =================================== */

.why-us-section {
    background: var(--dark-bg);
    color: var(--text-light);
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.why-card h4 {
    margin-bottom: 1rem;
}

.why-card p {
    opacity: 0.8;
    margin-bottom: 0;
}

/* ===================================
   Pricing Section
   =================================== */

.pricing-section {
    background: var(--light-bg);
}

.pricing-card {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.pricing-featured {
    background: var(--gradient-dark);
    color: var(--text-light);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pricing-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.pricing-card h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1.2rem;
    color: #888;
}

.pricing-gst {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.pricing-featured .pricing-gst {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-featured .pricing-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 1rem;
}

.btn-pricing {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    color: var(--text-light);
}

.custom-package-cta {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    color: var(--text-light);
}

.custom-package-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.custom-package-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
    background: var(--light-bg);
}

.contact-intro {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1rem;
}

.contact-intro-bold {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-info-box {
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.contact-info-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

/* FIXED: Remove underline from contact links */
.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-form-wrapper {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    margin-bottom: 2rem;
    color: var(--dark-bg);
}

.form-control {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-check-label {
    font-size: 0.9rem;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* ===================================
   Other Offerings
   =================================== */

.other-offerings {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offerings-links a {
    color: var(--accent-gold);
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 14px;
    transition: all 0.3s ease;
}

.offerings-links a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--gradient-dark);
    color: var(--text-light);
}

.footer h4, .footer h5 {
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    text-decoration: none;
}

/* FIXED: Social icons - remove underline */
.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    text-decoration: none;
}

/* ===================================
   WhatsApp Float Button
   =================================== */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--text-light);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--text-light);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
    text-decoration: none;
}

@keyframes pulse-whatsapp {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===================================
   Modal Customization
   =================================== */

.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--text-light);
    border-radius: 20px 20px 0 0;
}

.modal-body {
    padding: 2rem;
}

/* ===================================
   Policy Content Styling
   =================================== */

.policy-content {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.policy-content h4 {
    color: #FF6B35;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.policy-content h5 {
    color: #004E89;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.policy-content h6 {
    color: #1A1A2E;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content ul, .policy-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-content strong {
    color: #1A1A2E;
}

/* ===================================
   Responsive Design - FIXED MOBILE ISSUES
   =================================== */

@media (max-width: 992px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-block {
        padding: 2rem;
    }
    
    .service-title {
        font-size: 1.7rem;
    }
    
    .service-image-wrapper {
        height: 300px;
        margin-top: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .nav-link {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .btn-consultation {
        margin: 1rem 0 0 0;
        display: block;
        width: 100%;
    }
    
    .navbar-collapse {
        background: rgba(10, 14, 39, 0.98);
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    /* FIXED: More padding for mobile */
    .hero-section {
        padding-top: 110px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .pain-card, .mini-service-card, .why-card {
        margin-bottom: 1.5rem;
    }
    
    .pricing-featured {
        transform: scale(1);
    }
    
    /* FIXED: WhatsApp button positioning */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 80px;
        right: 20px;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
    }
    
    .hero-badge i {
        font-size: 0.8rem;
    }
    
    .pain-icon {
        font-size: 2.8rem;
    }
    
    .pain-card h4 {
        font-size: 1.15rem;
    }
    
    .pain-card p {
        font-size: 0.95rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .service-block {
        padding: 1.5rem;
    }
    
    /* FIXED: Scroll indicator hidden on mobile to prevent overlap */
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 576px) {
    /* FIXED: Extra padding for small mobile */
    .hero-section {
        padding-top: 100px;
        padding-bottom: 3rem;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        margin: 0 !important;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .custom-package-cta {
        padding: 2rem;
    }
    
    .custom-package-cta h3 {
        font-size: 1.5rem;
    }
    
    .custom-package-cta p {
        font-size: 1rem;
    }
    
    /* FIXED: WhatsApp button for very small screens */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 70px;
        right: 15px;
    }
    
    /* Ensure no horizontal scroll */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .hero-stats {
        gap: 1rem;
    }
}

/* ===================================
   Print Styles
   =================================== */

@media print {
    .navbar,
    .whatsapp-float,
    .scroll-indicator,
    .btn,
    .hero-cta {
        display: none !important;
    }
}

/* ===================================
   Accessibility
   =================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Smooth transitions */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* FIXED: Remove all underlines from links */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* ===================================
   Additional Mobile Optimizations
   =================================== */

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.75rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
}

/* ===================================
   FIX: Remove Internal Scrollbars
   =================================== */

/* Prevent Bootstrap containers from creating scrollbars */
.container,
.container-fluid {
    overflow: visible !important;
}

/* Fix row overflow */
.row {
    overflow: visible !important;
}

/* Fix column overflow */
[class*="col-"] {
    overflow: visible !important;
}

/* Specific fixes for sections */
.hero-section,
.pain-section,
.services-section,
.why-us-section,
.pricing-section,
.contact-section {
    overflow: visible !important;
}

/* Fix card overflows */
.pain-card,
.mini-service-card,
.why-card,
.pricing-card,
.service-block {
    overflow: visible !important;
}

/* Ensure text doesn't cause overflow */
p, h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fix for long URLs or emails */
a {
    word-break: break-word;
}

/* Modal body should scroll, not overflow */
.modal-body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    * {
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}


/* ===================================
   Consultation Section Styles
   =================================== */

.consultation-section {
    background: linear-gradient(135deg, #0A0E27 0%, #1A1A2E 50%, #0A0E27 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.consultation-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0A0E27;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

.consultation-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consultation-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.consultation-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%);
    color: white;
    padding: 0.5rem 2rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.5);
    animation: shake 3s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.consultation-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.consultation-value-prop {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 2px dashed rgba(255, 215, 0, 0.3);
}

.value-badge {
    display: flex;
    flex-direction: column;
}

.value-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.value-strike {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.5;
}

.value-current {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-arrow {
    font-size: 2rem;
    color: var(--accent-gold);
}

.consultation-includes h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.includes-list li:last-child {
    border-bottom: none;
}

.includes-list i {
    color: var(--accent-gold);
    margin-right: 0.8rem;
}

.includes-list strong {
    color: var(--text-light);
    font-size: 1.05rem;
}

.includes-list small {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-top: 0.3rem;
    margin-left: 2rem;
}

.consultation-guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
}

.consultation-guarantee i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.consultation-cta-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    text-align: center;
}

.cta-timer {
    background: rgba(255, 69, 0, 0.3);
    padding: 0.8rem;
    border-radius: 10px;
    font-size: 0.95rem;
}

.cta-timer i {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.price-box {
    margin: 2rem 0;
}

.price-main {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1;
}

.price-main .currency {
    font-size: 2rem;
    vertical-align: super;
}

.price-gst {
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.price-compare {
    margin-top: 1rem;
}

.savings {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
}

.btn-consultation-book {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-consultation-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.7);
    color: white;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge-item {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.badge-item i {
    color: var(--accent-gold);
    margin-right: 0.3rem;
}

.recent-bookings {
    background: rgba(255, 69, 0, 0.2);
    padding: 0.6rem;
    border-radius: 10px;
    font-size: 0.85rem;
    position: relative;
}

.booking-pulse {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #FF4500;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateY(-50%) scale(1.5); }
}

.consultation-testimonials {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-testimonial {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.mini-testimonial p {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.mini-testimonial strong {
    font-size: 0.85rem;
    color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 992px) {
    .consultation-card {
        padding: 2rem;
    }
    
    .consultation-title {
        font-size: 1.5rem;
    }
    
    .price-main {
        font-size: 2.5rem;
    }
}