/* 
 * AFFLUENT BIZ CONSULTING PRIVATE LIMITED - Core Design System
 * Palette: Deep Navy Blue (#0B132B), Emerald Green (#059669), Gold/Amber (#D4AF37)
 * Fonts: Montserrat (Headings) & Inter (Body)
 */

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

:root {
    /* Color Tokens */
    --primary-navy: #0B132B;
    --primary-navy-light: #1C2541;
    --secondary-emerald: #059669;
    --secondary-emerald-light: #10B981;
    --accent-gold: #D4AF37;
    --accent-gold-light: #F3C63F;
    --bg-light: #F8FAFC;
    --bg-slate: #F1F5F9;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --border-light: #E2E8F0;
    
    /* Gradients */
    --gradient-corporate: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    --gradient-emerald: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-emerald) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    --gradient-card-hover: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(5, 150, 105, 0.05) 100%);

    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px -10px rgba(11, 19, 43, 0.08);
    --shadow-hover: 0 20px 45px -15px rgba(5, 150, 105, 0.15);
    --shadow-gold: 0 15px 30px -10px rgba(212, 175, 55, 0.2);
}

/* Global Elements */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4,
.section-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-navy);
    font-weight: 700;
}

/* Top Navigation Bar */
.top-bar {
    background-color: var(--primary-navy);
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--accent-gold);
    position: relative;
    z-index: 1030;
}

.top-bar .social-media a {
    color: rgba(255,255,255,0.75);
    transition: var(--transition-smooth);
    margin-right: 15px;
    font-size: 1rem;
}

.top-bar .social-media a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.top-bar .contact-details li {
    display: inline-block;
}

.top-bar .contact-details i {
    color: var(--accent-gold);
}

/* Sticky Premium Header */
.navbar {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1020;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(11, 19, 43, 0.08);
}

.navbar-brand img {
    height: 48px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-navy) !important;
    padding: 0.6rem 1.2rem !important;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.2rem;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-emerald) 0%, var(--accent-gold) 100%);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-link:hover, 
.nav-link.active {
    color: var(--secondary-emerald) !important;
}

.nav-link:hover::before, 
.nav-link.active::before {
    width: calc(100% - 2.4rem);
}

/* Customized Premium Buttons */
.btn-primary {
    background: var(--gradient-emerald);
    border: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-emerald) 0%, var(--accent-gold) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline-primary {
    border: 2px solid var(--secondary-emerald);
    color: var(--secondary-emerald);
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.btn-outline-primary:hover {
    background: var(--secondary-emerald);
    color: white;
    border-color: var(--secondary-emerald);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-gold {
    background: var(--gradient-gold);
    border: none;
    color: var(--primary-navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    color: var(--primary-navy);
}

/* Premium Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.95) 0%, rgba(28, 37, 65, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    color: white;
    padding: 180px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-light);
    clip-path: polygon(100% 100%, 0% 100%, 100% 0%);
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero h1 span {
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--secondary-emerald-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.85);
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 400;
}

/* Section Title styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-emerald);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

/* Refreshed Premium Corporate Cards */
.card {
    background: white;
    border: 1px solid rgba(11, 19, 43, 0.05);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%;
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-emerald);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 5;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5, 150, 105, 0.15);
    background: var(--gradient-card-hover);
}

.card:hover::before {
    opacity: 1;
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 35px 30px;
}

.card-title {
    font-size: 1.4rem;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-icon {
    font-size: 3.2rem;
    color: var(--secondary-emerald);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    display: inline-block;
}

.card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-gold);
}

/* Checked Checklist in Cards */
.card ul {
    padding-left: 0;
    list-style: none;
    margin: 20px 0 0;
}

.card ul li {
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: left;
}

.card ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-emerald);
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 1.05rem;
}

/* Statistics Counters Block */
.stats-counter {
    background: white;
    border: 1px solid rgba(11, 19, 43, 0.05);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-bottom: 4px solid var(--accent-gold);
}

.stats-counter:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--secondary-emerald);
}

.counter-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-label {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.counter-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Custom Industries Elements */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.industry-item {
    background: white;
    border: 1px solid rgba(11, 19, 43, 0.04);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.industry-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

.industry-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5, 150, 105, 0.1);
}

.industry-item:hover::after {
    background: var(--secondary-emerald);
}

.industry-icon {
    font-size: 3.2rem;
    color: var(--secondary-emerald);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.industry-item:hover .industry-icon {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.industry-item h4 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 15px;
}

.industry-services {
    background: var(--bg-slate);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    text-align: left;
}

.industry-services h5 {
    font-size: 0.95rem;
    color: var(--secondary-emerald);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.industry-services ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.industry-services li {
    font-size: 0.85rem;
    color: var(--text-dark);
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.industry-services li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    top: 5px;
}

/* Process Flow Step Block */
.process-wrapper {
    position: relative;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--border-light);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-badge {
    width: 80px;
    height: 80px;
    background: white;
    border: 4px solid var(--border-light);
    color: var(--primary-navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.process-step:hover .process-badge {
    border-color: var(--secondary-emerald);
    background: var(--gradient-emerald);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.process-step h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Interactive Timeline in About Page */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8px;
    width: 4px;
    height: 100%;
    background: var(--border-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    top: 5px;
    left: -30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--secondary-emerald);
    z-index: 5;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-marker {
    background: var(--accent-gold);
    border-color: var(--primary-navy);
    transform: scale(1.2);
}

.timeline-content {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--primary-navy);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-hover);
    border-left-color: var(--secondary-emerald);
}

.timeline-year {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--secondary-emerald);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Elegant Accordion FAQs */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.faq-accordion .accordion-item:hover {
    border-color: rgba(5, 150, 105, 0.2);
}

.faq-accordion .accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 1.05rem;
    padding: 22px 25px;
    background: white;
    transition: var(--transition-smooth);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(11, 19, 43, 0.02);
    color: var(--secondary-emerald);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-size: 1.15rem;
    transition: var(--transition-smooth);
}

.faq-accordion .accordion-body {
    padding: 25px;
    background: white;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-top: 1px solid var(--border-light);
}

/* Call To Action Corporate Banner */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 50%, var(--secondary-emerald) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Contact Form Block */
.appointment-form {
    background: white;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 20px 50px rgba(11, 19, 43, 0.08);
    border: 1px solid rgba(11, 19, 43, 0.02);
}

.form-control, 
.form-select {
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: var(--transition-smooth);
}

.form-control:focus, 
.form-select:focus {
    border-color: var(--secondary-emerald);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15);
}

/* Testimonial slider cards */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid var(--border-light);
    margin: 15px;
}

.testimonial-card::before {
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 7rem;
    color: var(--accent-gold);
    opacity: 0.18;
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

/* Elite Corporate Footer */
.footer {
    background-color: var(--primary-navy);
    color: rgba(255,255,255,0.7);
    padding: 90px 0 25px;
    position: relative;
    border-top: 5px solid var(--accent-gold);
}

.footer h5 {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88) !important;
}

.footer .text-muted,
.footer .small {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    margin-right: 10px;
    color: white !important;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--primary-navy) !important;
    transform: translateY(-4px);
    padding-left: 0;
}

.footer ul.list-unstyled li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.footer ul.list-unstyled i {
    color: var(--accent-gold);
    width: 20px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 25px;
    margin-top: 60px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8) !important;
}

.copyright a {
    color: rgba(255, 255, 255, 0.85);
}

.copyright a:hover {
    color: var(--accent-gold);
    padding-left: 0;
}

/* Local Business Schema Span styles */
.copyright span[itemscope] {
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65) !important;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.95) 0%, rgba(28, 37, 65, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    color: white;
    padding: 130px 0 90px;
    text-align: center;
    position: relative;
    margin-bottom: 0;
    border-bottom: 4px solid var(--accent-gold);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Industry Page Banner & CTA */
.industry-banner {
    background: var(--gradient-corporate);
    padding: 45px;
    border-radius: 16px;
    color: white;
    margin: 60px 0;
    border-left: 6px solid var(--accent-gold);
    box-shadow: var(--shadow-soft);
}

.industry-banner h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

.industry-cta {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-emerald) 100%);
    color: white;
    padding: 90px 0;
}

/* Responsive Maps Container */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 4px solid white;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
}

/* Tax Emergency block */
.emergency-contact {
    background: rgba(212, 175, 55, 0.08);
    border-left: 5px solid var(--accent-gold);
    padding: 25px;
    border-radius: 4px 16px 16px 4px;
    margin-bottom: 30px;
}

.emergency-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.emergency-contact h4 i {
    color: var(--accent-gold);
}

/* WhatsApp Floater Styles */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1000;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.whatsapp-float .chat-icon {
    width: 62px;
    height: 62px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
}

.whatsapp-float .chat-icon i {
    font-size: 32px;
    color: white;
}

.whatsapp-float:hover .chat-icon {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

.whatsapp-float::before {
    content: 'Consult via WhatsApp';
    position: absolute;
    right: 75px;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-navy);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    pointer-events: none;
    white-space: nowrap;
    border: 1px solid var(--border-light);
}

.whatsapp-float:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Breakpoints */
@media (max-width: 991.98px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1.15rem;
    }
    .process-line {
        display: none;
    }
    .process-step {
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        padding: 12px 0;
    }
    .hero h1 {
        font-size: 2.3rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .top-bar {
        text-align: center;
    }
    .top-bar .text-lg-end {
        text-align: center !important;
        margin-top: 5px;
    }
    .section-title {
        font-size: 2rem;
    }
    .appointment-form {
        padding: 25px;
    }
}
