/* ============================================
   VEER'S WHITE FIELDS - GLOBAL STYLES
   Premium Real Estate Design System
   ============================================ */

/* -------------------- CSS VARIABLES (DESIGN TOKENS) -------------------- */
:root {
    /* Premium Color Palette for Real Estate */
    --primary-gold: #D4AF37;
    --primary-gold-dark: #B8941F;
    --primary-gold-light: #E8D090;

    --secondary-navy: #1A2332;
    --secondary-navy-light: #2C3E50;
    --secondary-charcoal: #34495E;

    --accent-emerald: #27AE60;
    --accent-sky: #3498DB;
    --accent-pearl: #ECF0F1;

    --neutral-white: #FFFFFF;
    --neutral-light: #F8F9FA;
    --neutral-gray: #95A5A6;
    --neutral-dark: #2C3E50;
    --neutral-black: #000000;

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;

    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 8px 20px rgba(212, 175, 55, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Z-index layers */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* -------------------- RESET & BASE STYLES -------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-dark);
    background-color: var(--neutral-white);
    overflow-x: hidden;
    /* Prevent layout shifts */
    min-height: 100vh;
    /* Hardware acceleration for smooth animations */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* Prevent flickering */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Optimize animations for performance */
.animate-on-scroll,
[data-aos] {
    will-change: transform, opacity;
}

/* Prevent animation glitches when page is hidden */
body.page-hidden * {
    animation-play-state: paused !important;
    transition: none !important;
}

/* -------------------- TYPOGRAPHY -------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-navy);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--neutral-dark);
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-gold-dark);
}

/* -------------------- UTILITY CLASSES -------------------- */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

.section-padding {
    padding: var(--spacing-xxl) 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-gold {
    color: var(--primary-gold);
}

.text-navy {
    color: var(--secondary-navy);
}

.text-white {
    color: var(--neutral-white);
}

.bg-gold {
    background-color: var(--primary-gold);
}

.bg-navy {
    background-color: var(--secondary-navy);
}

.bg-light {
    background-color: var(--neutral-light);
}

.bg-white {
    background-color: var(--neutral-white);
}

/* -------------------- BUTTONS -------------------- */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width var(--transition-slow), height var(--transition-slow);
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: var(--neutral-white);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45);
    color: var(--neutral-white);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.5);
    outline-offset: 2px;
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--neutral-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline:active {
    transform: translateY(-1px);
}

.btn-white {
    background: var(--neutral-white);
    color: var(--secondary-navy);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--primary-gold);
    color: var(--neutral-white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.btn-white:active {
    transform: translateY(-1px) scale(0.98);
}

/* ==================== PROFESSIONAL NAVIGATION ==================== */
.navbar-professional {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Top Info Bar - HIDDEN ON MOBILE/TABLET (992px and below) */
.navbar-top-bar {
    background: linear-gradient(135deg, var(--secondary-navy), var(--secondary-navy-light));
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all var(--transition-normal);
    width: 100%;
}

/* Force hide top bar on mobile/tablet - ROOT LEVEL */
@media (max-width: 992px) {
    .navbar-top-bar,
    .navbar-top-strip,
    .top-bar-wrapper,
    .top-bar-left,
    .top-bar-right {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

.navbar-professional.scrolled .navbar-top-bar {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 0.95rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--primary-gold);
}

.rera-badge-top {
    background: rgba(212, 175, 55, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.top-bar-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.social-icons-top {
    display: flex;
    gap: 0.625rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--primary-gold);
    font-size: 0.875rem;
    transition: all var(--transition-normal);
}

.social-icon:hover {
    background: var(--primary-gold);
    color: var(--secondary-navy);
    transform: translateY(-3px);
}

/* Main Navigation Bar */
.navbar-main-professional {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    width: 100%;
}

.navbar-professional.scrolled .navbar-main-professional {
    padding: 0.5rem 0;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.navbar-logo:hover {
    transform: scale(1.02);
}

/* Logo Image - Clean & Optimized */
.logo-image {
    height: 70px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
    transition: all var(--transition-normal);
    margin: -25px 0;
}

.navbar-logo:hover .logo-image {
    transform: scale(1.03);
}

/* Legacy icon-based logo (kept for fallback) */
.logo-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neutral-white);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    transition: all var(--transition-normal);
}

.navbar-logo:hover .logo-icon-wrapper {
    transform: rotate(-5deg) scale(1.08);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-navy);
    line-height: 1.1;
    margin: 0;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--primary-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Navigation */
.navbar-navigation {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.625rem 0;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--secondary-navy);
    text-decoration: none;
    position: relative;
    transition: all var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-dark));
    border-radius: 2px;
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-gold);
}

/* CTA Button */
.nav-cta-wrapper {
    margin-left: 1rem;
}

.nav-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: var(--neutral-white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    transition: all var(--transition-normal);
}

.nav-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: var(--neutral-white);
}

.nav-cta-button i {
    font-size: 1.125rem;
}

.nav-cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-gold);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.toggle-line {
    width: 30px;
    height: 3px;
    background: var(--secondary-navy);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* ==================== PROFESSIONAL FOOTER ==================== */
.footer-professional {
    background: linear-gradient(180deg, #1A2332 0%, #2C3E50 100%);
    color: var(--neutral-white);
}

/* Footer Top Section */
.footer-top {
    padding: 5rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1.25fr 1.5fr 1.75fr;
    gap: 4rem;
}

/* Footer Column - About */
.footer-col-about {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--neutral-white);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.footer-logo-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neutral-white);
    margin-bottom: 0.25rem;
}

.footer-logo-text p {
    font-size: 0.875rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin: 0;
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
}

/* Footer Headings */
.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-white);
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    border-radius: 2px;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 1rem;
}

.footer-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-menu li a:hover {
    color: var(--primary-gold);
    padding-left: 0.5rem;
}

.footer-menu li a i {
    font-size: 0.75rem;
    color: var(--primary-gold);
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.125rem;
    color: var(--primary-gold);
}

.contact-text {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.contact-text a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-text a:hover {
    color: var(--primary-gold);
}

/* Newsletter */
.newsletter-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
}

.footer-newsletter-form {
    margin-bottom: 2rem;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--neutral-white);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-submit {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    border: none;
    border-radius: var(--radius-md);
    color: var(--neutral-white);
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.newsletter-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Footer Social */
.footer-social-section {
    margin-top: 2rem;
}

.social-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-white);
    margin-bottom: 1rem;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary-gold);
    font-size: 1.125rem;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-social-link:hover {
    background: var(--primary-gold);
    color: var(--secondary-navy);
    transform: translateY(-4px);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-copyright p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.made-with {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.made-with i {
    color: #E74C3C;
    margin: 0 0.25rem;
}

.footer-legal {
    text-align: right;
}

.legal-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.legal-text strong {
    color: var(--primary-gold);
    font-weight: 700;
}

.disclaimer-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* -------------------- ANIMATIONS -------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {

    /* Navigation - Hide Top Bar Completely on Mobile/Tablet */
    .navbar-top-bar {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .navbar-main-professional {
        padding: 0.35rem 0;
    }

    .navbar-content {
        padding: 0;
    }

    /* Logo Image Responsive */
    .logo-image {
        height: 100px;
        max-width: 350px;
        margin: -20px 0;
    }

    .logo-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.35rem;
    }

    .logo-title {
        font-size: 1.35rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .navbar-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        transition: left var(--transition-normal);
        overflow-y: auto;
        z-index: 1000;
    }

    .navbar-navigation.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        padding: 1.25rem 0;
        font-size: 1.125rem;
    }

    .nav-cta-wrapper {
        margin-left: 0;
        margin-top: 2rem;
        width: 100%;
    }

    .nav-cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-col-about {
        padding-right: 0;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal {
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-xxl: 3rem;
    }

    .section-padding {
        padding: var(--spacing-xl) 0;
    }

    /* Tablet Navbar Fixes */
    .navbar-main-professional {
        padding: 0.625rem 0;
    }

    /* Logo Image Tablet */
    .logo-image {
        height: 85px;
        max-width: 300px;
        margin: -15px 0;
    }

    .logo-icon-wrapper {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .logo-title {
        font-size: 1.2rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    .navbar-navigation {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .footer-top {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    /* Mobile Navbar Fixes */
    .navbar-main-professional {
        padding: 0.5rem 0;
    }

    .navbar-content {
        gap: 0.5rem;
    }

    /* Logo Image Mobile */
    .logo-image {
        height: 65px;
        max-width: 240px;
        margin: -10px 0;
    }

    .logo-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .logo-title {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.65rem;
        display: none;
    }

    .logo-text-wrapper {
        gap: 0.15rem;
    }

    .navbar-logo {
        gap: 0.75rem;
    }

    .mobile-menu-toggle {
        padding: 0.4rem;
    }

    .toggle-line {
        width: 24px;
        height: 2.5px;
    }

    .navbar-navigation {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 1.5rem;
    }

    .nav-link {
        padding: 1rem 0;
        font-size: 1rem;
    }

    .nav-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-logo-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .footer-logo-text h3 {
        font-size: 1.25rem;
    }

    .footer-social-links {
        flex-wrap: wrap;
    }

    .footer-bottom-bar {
        padding: 1.5rem 0;
    }
}

/* -------------------- LOADING ANIMATION -------------------- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* -------------------- 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-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 3px;
}

a:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 3px;
}

/* -------------------- FLOATING WHATSAPP BUTTON -------------------- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: var(--z-fixed);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    font-size: 30px;
    color: var(--neutral-white);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Hide on mobile since sticky bar has WhatsApp */
@media (max-width: 768px) {
    .floating-whatsapp {
        display: none;
    }
}

/* -------------------- STICKY MOBILE BAR -------------------- */
/* Fixed bar at bottom - ONLY visible on mobile devices */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-navy), var(--secondary-navy-light));
    padding: 0.75rem 1rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-top: 2px solid var(--primary-gold);
    /* HIDDEN ON DESKTOP */
    display: none !important;
}

.sticky-mobile-bar .sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-mobile-bar .call-btn {
    background: var(--primary-gold);
    color: var(--secondary-navy);
}

.sticky-mobile-bar .whatsapp-btn {
    background: #25D366;
    color: white;
}

/* ONLY show on mobile screens */
@media (max-width: 768px) {
    .sticky-mobile-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

/* -------------------- PRINT STYLES -------------------- */
@media print {
    .navbar,
    .footer,
    .btn,
    .social-links,
    .floating-whatsapp,
    .sticky-mobile-bar {
        display: none;
    }
}