/* ============================================
   ARENAS HOMES - ADVANCED PREMIUM DESIGN v2.0
   Ultra-Luxury Real Estate Platform
   Rich Icons | Advanced Effects | Premium UX
   ============================================ */

:root {
    --primary: #16A34A;
    --primary-light: #22c55e;
    --primary-dark: #15803d;
    --secondary: #EA580C;
    --secondary-light: #f97316;
    --accent-purple: #9f1239;
    --accent-blue: #0369a1;
    --accent-gold: #d97706;
    --dark: #0F172A;
    --dark-secondary: #1F2937;
    --light: #F3F4F6;
    --white: #FFFFFF;
    --text: #0D1117;
    --text-light: #6B7280;
    --gray: #E5E7EB;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px 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 50px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F9FF 50%, #FFF5E6 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-width: 100vw;
    margin: 0;
    padding: 0;
}

/* Full Width Elements */
main {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    z-index: 1;
}

section {
    width: 100%;
    min-width: 100%;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
}

/* Ensure premium sections are truly full width */
.premium-hero,
.premium-search-section,
.featured-properties-section,
.properties-section,
.cta-section,
.testimonials-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* ============================================
   PAGE LOADER
   ============================================ */

.page-loader {
    position: fixed;
    inset: 0;
    background: #090f1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.45s cubic-bezier(.4,0,.2,1),
                visibility 0.45s cubic-bezier(.4,0,.2,1);
    pointer-events: all;
    /* Subtle radial glow at centre */
    background-image: radial-gradient(ellipse 60% 45% at 50% 50%,
        rgba(22,163,74,.08) 0%, transparent 70%);
}

.page-loader.pl-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ── Top progress rail ── */
.pl-track {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(255,255,255,.06);
    overflow: hidden;
}

.pl-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #16a34a 0%, #4ade80 100%);
    border-radius: 0 1px 1px 0;
    box-shadow: 0 0 10px rgba(74,222,128,.55);
    transition: width 0.6s cubic-bezier(.4,0,.2,1);
}

/* ── Centre body ── */
.pl-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: plBodyIn 0.55s cubic-bezier(.4,0,.2,1) both;
}

@keyframes plBodyIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ── Logo / brand ── */
.pl-logo {
    display: block;
    width: 130px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(22,163,74,.2));
}

/* When image fails, show wordmark instead */
.pl-logo.pl-img-fail            { display: none !important; }
.pl-logo.pl-img-fail ~ .pl-wordmark { display: flex !important; }

.pl-wordmark {
    display: none;
    align-items: baseline;
    gap: .55rem;
}

.pl-wm-a {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: .2em;
    color: #e2e8f0;
    text-transform: uppercase;
}

.pl-sep {
    color: rgba(255,255,255,.2);
    font-weight: 300;
    font-size: 1.2rem;
}

.pl-wm-b {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: .2em;
    color: #22c55e;
    text-transform: uppercase;
}

/* ── Breathing dots ── */
.pl-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.pl-dots span {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    opacity: .28;
    animation: plDot 1.3s ease-in-out infinite both;
}

.pl-dots span:nth-child(2) { animation-delay: .2s; }
.pl-dots span:nth-child(3) { animation-delay: .4s; }

@keyframes plDot {
    0%, 100% { opacity: .28; transform: scale(1);    }
    50%       { opacity: 1;   transform: scale(1.45); }
}

/* ── Accessibility: respect reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .pl-body      { animation: none; opacity: 1; transform: none; }
    .pl-dots span { animation: none; opacity: .6; }
    .pl-bar       { transition: width 0s; }
    .page-loader  { transition: opacity 0.15s ease, visibility 0.15s ease; }
}

/* ============================================
   TOP HEADER BAR - PREMIUM GLASS
   ============================================ */

/* ============================================
   MODERN TOP HEADER BAR STYLING
   ============================================ */

.top-header-bar {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(20, 30, 50, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #16A34A 0%, #EA580C 100%) 1;
    padding: 0.3rem 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(22, 163, 74, 0.1);
    min-height: auto;
}

.top-header-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.5), rgba(234, 88, 12, 0.5), transparent);
}

.quick-links-menu {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    margin: 0;
    align-items: center;
}

.quick-link {
    color: #E5E7EB;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding: 0.25rem 0.6rem;
    border-radius: 0.6rem;
}

.quick-link i {
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #16A34A;
}

.quick-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(234, 88, 12, 0.08));
    border-radius: 0.6rem;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.quick-link:hover {
    color: #16A34A;
    transform: translateY(-2px);
}

.quick-link:hover::before {
    opacity: 1;
}

.quick-link:hover i {
    transform: scale(1.15) rotate(8deg);
    color: #EA580C;
}

.header-contact-social {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-item {
    color: #E5E7EB;
    text-decoration: none;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0.3rem 0.75rem;
    border-radius: 0.6rem;
    background: rgba(22, 163, 74, 0.08);
    border: 1.5px solid rgba(22, 163, 74, 0.25);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.contact-item i {
    font-size: 0.9rem;
    color: #16A34A;
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

.contact-item span {
    position: relative;
    z-index: 2;
}

.contact-item:hover {
    color: #16A34A;
    background: rgba(22, 163, 74, 0.15);
    border-color: #16A34A;
    transform: translateX(4px);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover i {
    transform: scale(1.1);
    color: #EA580C;
}

.social-links-top {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-link-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(22, 163, 74, 0.08));
    color: #16A34A;
    border-radius: 0.6rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.9rem;
    text-decoration: none;
    border: 1.5px solid rgba(22, 163, 74, 0.3);
    position: relative;
    overflow: hidden;
}

.social-link-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #16A34A, #EA580C);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.social-link-top:hover {
    color: white;
    border-color: #16A34A;
    transform: translateY(-3px) scale(1.05);
    background: transparent;
}

.social-link-top:hover::before {
    opacity: 1;
    z-index: -1;
}

/* ============================================
   MOBILE TOPBAR LAYOUT - ADVANCED BRANDED DESIGN
   ============================================ */

.mobile-header-layout {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.2rem 0;
}

/* Status Badge Row */
.mobile-header-top {
    text-align: center;
    margin-bottom: 0;
}

.mobile-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.7rem;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(22, 163, 74, 0.08));
    border: 1.5px solid rgba(22, 163, 74, 0.35);
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #16A34A;
    position: relative;
}

.badge-pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #16A34A;
    border-radius: 50%;
    animation: pulse-animation 2s infinite;
    box-shadow: 0 0 10px rgba(22, 163, 74, 0.6);
}

@keyframes pulse-animation {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Quick Links Grid */
.mobile-quick-links-wrapper {
    width: 100%;
    overflow: visible;
}

.mobile-quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
}

.mobile-quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.45rem 0.35rem;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.12), rgba(234, 88, 12, 0.06));
    border: 1.5px solid rgba(22, 163, 74, 0.25);
    border-radius: 0.7rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mobile-quick-link-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(234, 88, 12, 0.1));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.mobile-link-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #16A34A, #15803D);
    border-radius: 0.6rem;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.mobile-link-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: #E5E7EB;
}

.mobile-quick-link-card:active {
    transform: scale(0.95);
}

.mobile-quick-link-card:active::before {
    opacity: 1;
}

.mobile-quick-link-card:active .mobile-link-icon {
    background: linear-gradient(135deg, #EA580C, #C2410C);
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.35);
}

.mobile-quick-link-card:active .mobile-link-text {
    color: #16A34A;
}

/* Header Bottom Section */
.mobile-header-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    border-top: 1px solid rgba(22, 163, 74, 0.2);
}

.mobile-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, #16A34A, #15803D);
    border: 1px solid rgba(22, 163, 74, 0.4);
    border-radius: 0.7rem;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.mobile-contact-badge i {
    font-size: 0.85rem;
}

.mobile-contact-badge:active {
    transform: scale(0.93);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
    background: linear-gradient(135deg, #EA580C, #C2410C);
}

/* Social Icons */
.mobile-social-compact {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.mobile-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(22, 163, 74, 0.08));
    border: 1.5px solid rgba(22, 163, 74, 0.3);
    border-radius: 0.6rem;
    color: #16A34A;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.mobile-social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #16A34A, #EA580C);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.mobile-social-icon:active {
    color: white;
    border-color: #16A34A;
    transform: scale(0.9);
}

.mobile-social-icon:active::before {
    opacity: 1;
    z-index: -1;
}
    .mobile-social-icon:active {
        transform: scale(0.9);
    }


.social-link-top:hover::before {
    left: 100%;
}

/* ============================================
   PREMIUM NAVIGATION - ULTRA LUXURY
   ============================================ */

.premium-navbar {
    background: rgba(31, 41, 55, 0.98) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
    border-bottom: 2px solid var(--primary);
    padding: 0.8rem 0;
    transition: all var(--transition);
    position: sticky;
    top: 0;
    z-index: 900;
}

.premium-navbar:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

.premium-brand {
    font-weight: 900;
    font-size: 1.7rem;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-wrapper i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition);
    filter: drop-shadow(0 4px 8px rgba(22, 163, 74, 0.3));
}

.premium-brand:hover .brand-wrapper i {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 8px 16px rgba(22, 163, 74, 0.5));
}

.brand-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.brand-accent {
    color: var(--primary);
    font-style: italic;
    font-weight: 900;
}

.brand-subtext {
    background: linear-gradient(135deg, var(--secondary), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.premium-nav-link {
    color: #FFFFFF !important;
    font-weight: 600;
    transition: all var(--transition);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    margin: 0 0.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.premium-nav-link i {
    transition: all var(--transition);
}

.premium-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width var(--transition);
}

.premium-nav-link:hover,
.premium-nav-link.active {
    color: var(--primary) !important;
    background: rgba(22, 163, 74, 0.15);
    transform: translateY(-2px);
}

.premium-nav-link:hover::before,
.premium-nav-link.active::before {
    width: 80%;
}

.premium-nav-link:hover i {
    transform: scale(1.15) rotate(10deg);
    color: var(--primary);
}

.premium-dropdown {
    background: rgba(31, 41, 55, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 1rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-width: 280px;
    animation: dropdownPopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    display: none;
}

.dropdown:hover .premium-dropdown {
    display: block;
}

.premium-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.3), transparent);
}

.premium-dropdown-item {
    color: #E5E7EB;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.5rem;
    transition: all var(--transition);
    border-left: 3px solid transparent;
    position: relative;
}

.premium-dropdown-item i {
    font-size: 1.1rem;
    transition: all var(--transition);
    color: var(--primary);
}

.premium-dropdown-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 100%;
    background: rgba(22, 163, 74, 0.1);
    transition: width var(--transition);
    z-index: -1;
}

.premium-dropdown-item:hover {
    color: var(--primary);
    border-left-color: var(--primary);
    transform: translateX(6px);
    background: rgba(22, 163, 74, 0.15);
}

.premium-dropdown-item:hover::before {
    width: 100%;
}

.premium-dropdown-item:hover i {
    transform: scale(1.2) rotate(15deg);
}

@keyframes dropdownPopIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.premium-login-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 0.7rem;
    font-weight: 700;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
}

.premium-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition);
}

.premium-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(22, 163, 74, 0.5);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.premium-login-btn:hover::before {
    left: 100%;
}

/* ============================================
   PREMIUM BRANDED HAMBURGER MENU
   ============================================ */

.premium-toggler {
    border: 2px solid var(--primary) !important;
    border-radius: 0.8rem;
    padding: 0.6rem 0.8rem;
    position: relative;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.08) 0%, rgba(234, 88, 12, 0.04) 100%);
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.1);
}

.premium-toggler:hover {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.15) 0%, rgba(234, 88, 12, 0.08) 100%);
    border-color: var(--secondary) !important;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2);
    transform: translateY(-2px);
}

.premium-toggler:focus {
    box-shadow: 0 0 0 0.4rem rgba(22, 163, 74, 0.25), inset 0 2px 8px rgba(22, 163, 74, 0.1);
    outline: none;
    border-color: var(--primary) !important;
}

.premium-toggler[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.2) 0%, rgba(234, 88, 12, 0.12) 100%);
    border-color: var(--secondary) !important;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.25);
}

/* Branded Hamburger Icon Animation */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2822, 163, 74, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(22, 163, 74, 0.15));
}

.premium-toggler:hover .navbar-toggler-icon {
    filter: drop-shadow(0 3px 8px rgba(234, 88, 12, 0.25));
    transform: scale(1.05);
}

.premium-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28234, 88, 12, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e");
    filter: drop-shadow(0 3px 8px rgba(234, 88, 12, 0.25));
}

/* Mobile Navigation Collapse Animation */
.navbar-collapse {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-collapse.show {
    animation: slideDownNavigation 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDownNavigation {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Navigation Styling */
@media (max-width: 991px) {
    .premium-toggler {
        padding: 0.5rem 0.7rem;
        background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(234, 88, 12, 0.05) 100%);
    }

    .navbar-toggler-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* ============================================
   HERO SECTION - ADVANCED
   ============================================ */

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1F2937 0%, #0F172A 100%);
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed;
    min-height: 700px;
    overflow: hidden;
    padding: 5rem 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(22, 163, 74, 0.2));
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(22, 163, 74, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(159, 18, 57, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: float-slow 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -50px;
    left: -50px;
    animation: float-slow 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    top: 30%;
    right: 20%;
    animation: float-slow 12s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    animation: slideInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    letter-spacing: -2px;
    padding: 0 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #CBD5E1;
    margin: 0 0 2.5rem 0;
    padding: 0 1rem;
    font-weight: 500;
    animation: slideInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s backwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin: 0 0 3rem 0;
    padding: 0 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s backwards;
    width: 100%;
    box-sizing: border-box;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Courier New', monospace;
}

.stat-label {
    font-size: 1rem;
    color: #CBD5E1;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s backwards;
}

/* ============================================
   FEATURED PROPERTIES SECTION
   ============================================ */

.featured-properties {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F9FF 100%);
}

.property-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 249, 255, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(22, 163, 74, 0.15);
    border-radius: 1.2rem;
    padding: 1.5rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.property-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(245, 249, 255, 1));
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(22, 163, 74, 0.2);
}

.property-image {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition);
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.property-location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-location i {
    color: var(--primary);
}

.property-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(22, 163, 74, 0.08);
    border-radius: 0.8rem;
    border: 1px solid rgba(22, 163, 74, 0.15);
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.type {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.property-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    background: rgba(22, 163, 74, 0.08);
    border-radius: 0.5rem;
    border: 1px solid rgba(22, 163, 74, 0.15);
}

.property-features span i {
    color: var(--primary);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F5F9FF 0%, #FFFFFF 100%);
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 249, 255, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(22, 163, 74, 0.15);
    border-radius: 1.2rem;
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(245, 249, 255, 1));
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(22, 163, 74, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: all var(--transition);
    filter: drop-shadow(0 4px 8px rgba(22, 163, 74, 0.2));
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(22, 163, 74, 0.4));
}

.service-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   CALL TO ACTION SECTION
   ============================================ */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1F2937 0%, #0F172A 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.2rem;
    color: #CBD5E1;
    margin-bottom: 3rem;
    font-weight: 500;
}

/* ============================================
   PREMIUM HERO SECTION - ADVANCED
   ============================================ */

.premium-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed;
    min-height: 700px;
    overflow: hidden;
    padding: 5rem 2rem;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(22, 163, 74, 0.2));
    z-index: 1;
}

.premium-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(22, 163, 74, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(159, 18, 57, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: float-slow 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -50px;
    left: -50px;
    animation: float-slow 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    top: 30%;
    right: 20%;
    animation: float-slow 12s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    animation: slideInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    letter-spacing: -2px;
    padding: 0 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-gradient 4s ease-in-out infinite;
}

@keyframes shimmer-gradient {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #CBD5E1;
    margin: 0 0 2.5rem 0;
    padding: 0 1rem;
    font-weight: 500;
    animation: slideInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s backwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin: 0 0 3rem 0;
    padding: 0 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s backwards;
    width: 100%;
    box-sizing: border-box;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.stat-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Courier New', monospace;
}

.stat-label {
    font-size: 1rem;
    color: #CBD5E1;
    font-weight: 600;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s backwards;
}

/* ============================================
   PREMIUM BUTTONS - ADVANCED
   ============================================ */

.premium-btn {
    position: relative;
    overflow: hidden;
    font-weight: 700;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    letter-spacing: 0.5px;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 0.8rem;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-lg);
}

.premium-btn i {
    transition: all var(--transition);
    font-size: 1.1rem;
}

.premium-btn:hover i {
    transform: scale(1.2) translateY(-2px);
}

.btn-arrow {
    display: inline-block;
    transition: transform var(--transition);
}

.premium-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-primary.premium-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
}

.btn-primary.premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left var(--transition);
}

.btn-primary.premium-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(22, 163, 74, 0.4);
}

.btn-primary.premium-btn:hover::before {
    left: 100%;
}

.btn-outline-light.premium-btn {
    border: 2px solid var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-light.premium-btn:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
}

/* ============================================
   PREMIUM SEARCH FORM
   ============================================ */

.premium-search-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(22, 163, 74, 0.1);
    position: relative;
    overflow: hidden;
    margin: -80px 2rem 2rem 2rem;
}

.premium-search-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent-gold), var(--primary));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.premium-select,
.premium-input {
    background: linear-gradient(135deg, #FAFBFC, #F0F4F8);
    border: 2px solid var(--gray);
    border-radius: 0.8rem;
    padding: 0.85rem 1.2rem;
    font-size: 1rem;
    transition: all var(--transition);
    font-weight: 500;
    color: var(--text);
}

.premium-select:focus,
.premium-input:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1), 0 5px 15px rgba(22, 163, 74, 0.15);
    outline: none;
    transform: translateY(-2px);
}

.premium-select option {
    background: var(--white);
    color: var(--text);
    padding: 0.5rem;
    font-weight: 600;
}

/* ============================================
   SECTION HEADERS - PREMIUM
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-header h2 i {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition);
    margin-right: 1rem;
    font-size: 2.8rem;
    filter: drop-shadow(0 4px 8px rgba(22, 163, 74, 0.2));
}

.section-header h2:hover i {
    transform: scale(1.15) rotate(-10deg);
    filter: drop-shadow(0 8px 16px rgba(22, 163, 74, 0.4));
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 2rem;
    letter-spacing: 0.3px;
}

/* ============================================
   FEATURE CARDS - ADVANCED
   ============================================ */

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 249, 255, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(22, 163, 74, 0.15);
    border-radius: 1.2rem;
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.08), rgba(234, 88, 12, 0.08));
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 0;
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(245, 249, 255, 1));
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(22, 163, 74, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: all var(--transition);
    filter: drop-shadow(0 4px 8px rgba(22, 163, 74, 0.2));
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(22, 163, 74, 0.4));
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   FOOTER - PREMIUM
   ============================================ */

footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    border-top: 2px solid var(--primary);
    padding: 4.5rem 0 1rem 0;
    color: #E5E7EB;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.3), transparent);
}

footer h5 {
    color: var(--white);
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0;
    transition: all var(--transition);
    font-weight: 500;
    position: relative;
}

.footer-links a i {
    font-size: 1rem;
    color: var(--primary);
    transition: all var(--transition);
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover i {
    transform: scale(1.2) rotate(10deg);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(234, 88, 12, 0.15));
    border-radius: 0.75rem;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition);
    border: 1px solid rgba(22, 163, 74, 0.3);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-4px) scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.4);
}

.social-links a:hover::before {
    left: 100%;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 1.5rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #9CA3AF;
    font-weight: 500;
}

.legal-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.legal-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition);
    font-weight: 600;
    position: relative;
}

.legal-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.legal-links a:hover {
    color: var(--primary);
}

.legal-links a:hover::after {
    width: 100%;
}

/* ============================================
   BACK TO TOP BUTTON - ADVANCED
   ============================================ */

.back-to-top {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    width: 56px !important;
    height: 56px !important;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    border: none !important;
    border-radius: 0.8rem !important;
    color: var(--white) !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 9999 !important;
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.3) !important;
    transition: all var(--transition) !important;
    font-size: 1.5rem !important;
    overflow: hidden !important;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition);
}

.back-to-top:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(22, 163, 74, 0.5);
}

.back-to-top:hover::before {
    left: 100%;
}

.back-to-top.show {
    display: flex !important;
}

/* ============================================
   OWNERSHIP BADGE SYSTEM - ADVANCED
   ============================================ */

.ownership-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 0.6rem !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.ownership-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.ownership-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ownership-badge:hover::before {
    left: 100%;
}

/* Company Owned Properties */
.ownership-badge.bg-info {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
    border-color: rgba(2, 132, 199, 0.3) !important;
}

.ownership-badge.bg-info:hover {
    background: linear-gradient(135deg, #0284c7, #0ea5e9) !important;
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.3);
}

.ownership-badge.bg-info i {
    color: #0ea5e9;
    transition: all 0.3s ease;
}

.ownership-badge.bg-info:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #ffffff;
}

/* Agent Listed Properties */
.ownership-badge.bg-secondary {
    background: linear-gradient(135deg, #6b7280, #4b5563) !important;
    border-color: rgba(75, 85, 99, 0.3) !important;
}

.ownership-badge.bg-secondary:hover {
    background: linear-gradient(135deg, #4b5563, #6b7280) !important;
    box-shadow: 0 8px 25px rgba(75, 85, 99, 0.3);
}

.ownership-badge.bg-secondary i {
    color: #6b7280;
    transition: all 0.3s ease;
}

.ownership-badge.bg-secondary:hover i {
    transform: scale(1.1) rotate(-5deg);
    color: #ffffff;
}

/* Property Card Ownership Badges */
.property-card .ownership-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.property-card:hover .ownership-badge {
    transform: translateY(-2px) scale(1.05);
}

/* Property Detail Page Ownership */
.property-detail .ownership-badge {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Admin Dashboard Ownership Badges */
.admin-properties .ownership-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
}

/* Homepage Featured Properties */
.featured-properties .ownership-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

/* Mobile Responsive Ownership Badges */
@media (max-width: 768px) {
    .ownership-badge {
        font-size: 0.8rem !important;
        padding: 0.35rem 0.7rem !important;
        gap: 0.3rem !important;
    }
    
    .property-card .ownership-badge {
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .property-detail .ownership-badge {
        font-size: 0.85rem;
    }
}

/* Special Effects for Company Properties */
.company-owned .ownership-badge {
    animation: companyBadgePulse 3s ease-in-out infinite;
}

@keyframes companyBadgePulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(2, 132, 199, 0.2);
    }
    50% {
        box-shadow: 0 4px 16px rgba(2, 132, 199, 0.4);
        transform: translateY(-1px) scale(1.02);
    }
}

/* Special Effects for Agent Properties */
.agent-listed .ownership-badge {
    animation: agentBadgeGlow 4s ease-in-out infinite;
}

@keyframes agentBadgeGlow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(75, 85, 99, 0.2);
    }
    50% {
        box-shadow: 0 4px 16px rgba(75, 85, 99, 0.4);
        transform: translateY(-1px) scale(1.02);
    }
}

/* Ownership Status Text */
.ownership-status {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ownership-status.company-owned {
    color: #0ea5e9;
}

.ownership-status.agent-listed {
    color: #6b7280;
}

.ownership-status i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.ownership-status:hover i {
    transform: scale(1.1);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   ENHANCED ANIMATION LIBRARY
   ============================================ */

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(22, 163, 74, 0.4), 0 0 40px rgba(22, 163, 74, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(22, 163, 74, 0.6), 0 0 60px rgba(22, 163, 74, 0.3);
    }
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes swing {
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    80% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

@keyframes flip-in {
    from {
        opacity: 0;
        transform: rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes zoom-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoom-in-bounce {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slide-in-top {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-bottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-left-smooth {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right-smooth {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-1deg); }
    75% { transform: rotate(1deg); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

@keyframes rotate-360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes text-shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-10px);
    }
    75% {
        transform: translateY(10px);
    }
}

@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes neon-glow {
    0%, 100% {
        text-shadow: 0 0 10px #16A34A, 0 0 20px #16A34A, 0 0 30px #16A34A;
    }
    50% {
        text-shadow: 0 0 20px #16A34A, 0 0 30px #16A34A, 0 0 40px #16A34A, 0 0 50px #16A34A;
    }
}

@keyframes color-shift {
    0% { color: #16A34A; }
    50% { color: #EA580C; }
    100% { color: #16A34A; }
}

@keyframes slide-background {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 0%; }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-slide-down {
    animation: slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ============================================
   ANIMATION UTILITY CLASSES - LIVELY EFFECTS
   ============================================ */

.animate-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

.animate-float {
    animation: float-bounce 3s ease-in-out infinite;
}

.animate-swing {
    animation: swing 1s ease-in-out;
    transform-origin: top center;
}

.animate-flip {
    animation: flip-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-zoom {
    animation: zoom-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-zoom-bounce {
    animation: zoom-in-bounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-bounce-in {
    animation: bounce-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

.animate-wiggle {
    animation: wiggle 0.6s ease-in-out;
}

.animate-heartbeat {
    animation: heartbeat 1.3s ease-in-out infinite;
}

.animate-rotate {
    animation: rotate-360 20s linear infinite;
}

.animate-rotate-slow {
    animation: rotate-slow 30s linear infinite;
}

.animate-wave {
    animation: wave 2s ease-in-out infinite;
}

.animate-blob {
    animation: blob 7s ease-in-out infinite;
}

.animate-neon {
    animation: neon-glow 1.5s ease-in-out infinite;
}

.animate-color-shift {
    animation: color-shift 3s ease-in-out infinite;
}

.animate-slide-left {
    animation: slide-in-left-smooth 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-slide-right {
    animation: slide-in-right-smooth 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-slide-top {
    animation: slide-in-top 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-slide-bottom {
    animation: slide-in-bottom 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Stagger animation delays */
.animate-stagger-1 {
    animation-delay: 0.1s;
}

.animate-stagger-2 {
    animation-delay: 0.2s;
}

.animate-stagger-3 {
    animation-delay: 0.3s;
}

.animate-stagger-4 {
    animation-delay: 0.4s;
}

.animate-stagger-5 {
    animation-delay: 0.5s;
}

/* ============================================
   HOVER ANIMATION EFFECTS
   ============================================ */

.hover-lift {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(22, 163, 74, 0.2);
}

.hover-scale {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(22, 163, 74, 0.5), 0 0 60px rgba(22, 163, 74, 0.3);
}

.hover-rotate {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-rotate:hover {
    transform: rotate(-5deg) scale(1.05);
}

.hover-pulse {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-pulse:hover {
    animation: glow-pulse 1s ease-in-out 2;
}

.hover-slide {
    overflow: hidden;
    position: relative;
}

.hover-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(22, 163, 74, 0.2);
    transition: left 0.5s ease;
}

.hover-slide:hover::after {
    left: 100%;
}

/* ============================================
   SCROLL ANIMATION HELPERS
   ============================================ */

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-animate.visible {
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Ultra-small devices (under 360px) */
@media (max-width: 359px) {
    :root {
        font-size: 12px;
    }

    .top-header-bar {
        padding: 0.5rem 0;
    }
    
    .top-header-bar .container-fluid {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    /* Mobile Header Layout - Ultra Small Advanced Design */
    .mobile-header-layout {
        gap: 0.75rem;
        padding: 0.5rem 0;
    }
    
    .mobile-header-top {
        margin-bottom: 0.15rem;
    }
    
    .mobile-status-badge {
        padding: 0.4rem 0.85rem;
        font-size: 0.7rem;
        gap: 0.4rem;
    }
    
    .badge-pulse {
        width: 6px;
        height: 6px;
    }
    
    .mobile-quick-links-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.45rem;
    }
    
    .mobile-quick-link-card {
        padding: 0.5rem 0.4rem;
        border-radius: 0.6rem;
    }
    
    .mobile-link-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .mobile-link-text {
        font-size: 0.65rem;
    }
    
    .mobile-header-bottom {
        gap: 0.7rem;
        padding: 0.6rem 0;
    }
    
    .mobile-contact-badge {
        padding: 0.4rem 0.9rem;
        font-size: 0.7rem;
        gap: 0.35rem;
    }
    
    .mobile-contact-badge i {
        font-size: 0.8rem;
    }
    
    .mobile-social-compact {
        gap: 0.3rem;
    }
    
    .mobile-social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .mobile-quick-link i {
        font-size: 0.8rem;
    }
    
    .quick-links-menu {
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .quick-link {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
        gap: 0.15rem;
    }
    
    .quick-link i {
        font-size: 0.7rem;
    }
    
    .header-contact-social {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .contact-info {
        width: 100%;
        justify-content: center;
    }
    
    .contact-item {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
        gap: 0.2rem;
    }
    
    .contact-item i {
        font-size: 0.7rem;
    }
    
    .contact-item span {
        display: none;
    }
    
    .social-links-top {
        gap: 0.2rem;
        justify-content: center;
        width: 100%;
    }
    
    .social-link-top {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }
       
    }
    
    .contact-item span {
        display: inline;
    }
    
    .social-links-top {
        gap: 0.6rem;
        justify-content: center;
    }
    
    .social-link-top {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .premium-hero {
        min-height: 400px !important;
        padding: 2rem 0.8rem;
        background-attachment: scroll !important;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
        letter-spacing: -0.5px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        margin-bottom: 2rem;
        gap: 1.2rem;
        flex-direction: column;
        width: 100%;
    }

    .stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 0.8rem;
        border: 1px solid rgba(22, 163, 74, 0.15);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .stat-item:active {
        background: rgba(255, 255, 255, 0.12);
        transform: scale(0.98);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }


@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .top-header-bar {
        padding: 0.6rem 0;
    }
    
    .top-header-bar .container-fluid {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    /* Mobile Header Layout - Advanced Design */
    .mobile-header-layout {
        gap: 0.7rem;
        padding: 0.35rem 0;
    }
    
    .mobile-header-top {
        margin-bottom: 0rem;
    }
    
    .mobile-status-badge {
        padding: 0.35rem 0.8rem;
        font-size: 0.7rem;
        gap: 0.4rem;
    }
    
    .badge-pulse {
        width: 6px;
        height: 6px;
    }
    
    .mobile-quick-links-wrapper {
        width: 100%;
    }
    
    .mobile-quick-links-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.45rem;
    }
    
    .mobile-quick-link-card {
        padding: 0.5rem 0.4rem;
        border-radius: 0.65rem;
    }
    
    .mobile-link-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    
    .mobile-link-text {
        font-size: 0.65rem;
    }
    
    .mobile-header-bottom {
        gap: 0.7rem;
        padding: 0.5rem 0;
        border-top: 1px solid rgba(22, 163, 74, 0.15);
    }
    
    .mobile-contact-badge {
        padding: 0.35rem 0.85rem;
        font-size: 0.7rem;
        gap: 0.3rem;
    }
    
    .mobile-contact-badge i {
        font-size: 0.8rem;
    }
    
    .mobile-social-compact {
        gap: 0.25rem;
    }
    
    .mobile-social-icon {
        width: 32px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .quick-links-menu {
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .quick-link {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
        gap: 0.2rem;
    }
    
    .quick-link i {
        font-size: 0.75rem;
    }
    
    .header-contact-social {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        gap: 0.6rem;
        margin-top: 0.6rem;
    }
    
    .contact-info {
        width: 100%;
        justify-content: center;
    }
    
    .contact-item {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
        gap: 0.3rem;
    }
    
    .contact-item i {
        font-size: 0.8rem;
    }
    
    .contact-item span {
        display: none;
    }
    
    .social-links-top {
        gap: 0.3rem;
        justify-content: center;
        width: 100%;
    }
    
    .social-link-top {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .contact-item span {
        display: none;
    }
    
    .header-contact-social {
        gap: 0.75rem;
        flex-direction: column;
        width: 100%;
    }
    
    /* ===== MOBILE HERO SECTION - OPTIMIZED ===== */
    .premium-hero {
        min-height: 580px !important;
        background-attachment: scroll !important;
        padding: 2.5rem 1rem 3rem 1rem;
    }
    
    .hero-background {
        opacity: 0.6;
    }
    
    .hero-shape {
        opacity: 0.04;
    }
    
    .hero-shape-1 {
        width: 300px;
        height: 300px;
    }
    
    .hero-shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .hero-shape-3 {
        width: 150px;
        height: 150px;
    }
    
    .hero-content {
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.75rem;
        letter-spacing: -0.3px;
        margin-bottom: 0.8rem;
        padding: 0;
        line-height: 1.25;
        font-weight: 900;
        word-break: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.4rem;
        padding: 0;
        line-height: 1.5;
        word-break: break-word;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.9rem;
        margin-bottom: 1.8rem;
        padding: 0;
        width: 100%;
    }

    .stat-item {
        padding: 0.9rem;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 0.75rem;
        border: 1px solid rgba(22, 163, 74, 0.15);
        backdrop-filter: blur(10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
    }

    .stat-item:active {
        background: rgba(255, 255, 255, 0.12);
        transform: scale(0.98);
        border-color: rgba(22, 163, 74, 0.25);
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .hero-cta-group {
        padding: 0;
        gap: 0.8rem;
        flex-direction: column;
        width: 100%;
    }
    
    .premium-btn {
        width: 100%;
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 0.8rem;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .premium-btn:active {
        transform: scale(0.98);
    }
    
    .btn-arrow {
        display: none;
    }
    
    .premium-search-form {
        padding: 1.25rem;
        margin: -60px 1rem 1.5rem 1rem;
        border-radius: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header h2::after {
        bottom: -12px;
        width: 60px;
    }
    
    .back-to-top {
        width: 50px !important;
        height: 50px !important;
        bottom: 1rem !important;
        right: 1rem !important;
        font-size: 1.2rem !important;
        position: fixed !important;
        z-index: 9999 !important;
    }
}

@media (min-width: 481px) and (max-width: 576px) {
    .premium-hero {
        min-height: 520px !important;
        background-attachment: scroll !important;
        padding: 3rem 1.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        padding: 0;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0;
    }

    .stat-item {
        padding: 0.9rem;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 0.8rem;
        border: 1px solid rgba(22, 163, 74, 0.15);
        backdrop-filter: blur(10px);
    }

    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .hero-cta-group {
        padding: 0;
        gap: 0.8rem;
        flex-direction: column;
    }
    
    .premium-btn {
        width: 100%;
        padding: 0.9rem 1.3rem;
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .premium-hero {
        min-height: 550px !important;
        background-attachment: scroll !important;
        padding: 4rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        padding: 0;
        margin-bottom: 1.2rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
        padding: 0;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
        margin-bottom: 2rem;
        padding: 0;
    }

    .stat-item {
        flex: 1;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .hero-cta-group {
        gap: 1rem;
    }
    
    .premium-btn {
        flex: 1;
        min-width: 150px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
        padding: 0;
    }
    
    .hero-stats {
        margin-bottom: 3rem;
        padding: 0;
    }
    
    .premium-hero {
        min-height: 700px !important;
        padding: 5rem 2rem;
    }
}

@media print {
    .top-header-bar,
    .premium-navbar,
    footer,
    .back-to-top,
    .premium-hero {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Sticky Social Share Icons */
.sticky-social-icons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 800;
}

.sticky-social-icons .social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(22, 163, 74, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.sticky-social-icons .social-icon:hover {
    transform: scale(1.1) translateX(10px);
    box-shadow: 0 8px 30px rgba(22, 163, 74, 0.6);
}

.sticky-social-icons .social-icon i {
    font-size: 24px;
}

/* Chat Support Button */
.chat-support-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 800;
    box-shadow: 0 5px 30px rgba(22, 163, 74, 0.5);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.chat-support-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(22, 163, 74, 0.7);
}

.chat-support-button i {
    font-size: 28px;
    color: white;
}

/* Chat Window */
.chat-support-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    z-index: 800;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h6 {
    margin: 0;
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s;
}

.chat-close:hover {
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8f9fa;
}

.message {
    padding: 12px 16px;
    border-radius: 10px;
    max-width: 85%;
    word-wrap: break-word;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message p {
    margin: 0;
    font-size: 14px;
}

.user-message {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.bot-message {
    align-self: flex-start;
    background: white;
    color: #333;
    border: 1px solid #e0e0e0;
}

.chat-input-area {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.chat-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.chat-send {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.chat-send:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .sticky-social-icons {
        left: 10px;
        gap: 10px;
    }

    .sticky-social-icons .social-icon {
        width: 45px;
        height: 45px;
    }

    .sticky-social-icons .social-icon i {
        font-size: 20px;
    }

    .chat-support-button {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .chat-support-window {
        bottom: 90px;
        right: 20px;
        width: 90%;
        max-width: 350px;
    }
}

