* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url('../images/manage369livingroomskokie.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: #4a90e2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            line-height: 1.1;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        .hero-subtitle {
            font-size: 2.5rem;
            color: #FF6B35;
            margin-bottom: 2rem;
            font-weight: 300;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
            letter-spacing: 1px;
            font-style: italic;
        }
        
        .hero-stats {
            font-size: 1.6rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 3rem;
            font-weight: 500;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
            letter-spacing: 1px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
        }
        
        .btn {
            padding: 18px 36px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .btn-primary {
            background: #ff9500;
            color: white;
            border: 2px solid #ff9500;
        }
        
        .btn-secondary {
            border: 2px solid white;
            color: white;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
        }
        
        .btn-primary:hover {
            background: #e8850a;
            border-color: #e8850a;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255,149,0,0.4);
        }
        
        .btn-secondary:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255,255,255,0.2);
        }
        
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            padding: 1rem 2rem;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: flex-start;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #4a90e2;
            text-decoration: none;
            order: 1;
        }
        
        .phone {
            background: #4a90e2;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease;
            order: 3;
            margin-left: auto;
            position: relative;
            right: 0;
            flex-shrink: 0;
        }
        
        .phone:hover {
            background: #357abd;
        }
        
        .nav {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: nowrap;
            order: 2;
            flex-grow: 1;
            justify-content: center;
        }
        
        .nav a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav a:hover {
            color: #4a90e2;
        }
        
        .services-dropdown {
            position: relative;
        }
        
        .services-dropdown:hover .dropdown-content {
            display: block;
        }
        
        .nav-link {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            padding: 12px 20px;
            transition: color 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .nav-link:hover {
            color: #2B5BA0;
        }
        
        .nav-link.active {
            color: #2B5BA0;
        }
        
        .dropdown {
            position: relative;
            display: inline-block;
        }
        
        .dropdown-trigger {
            cursor: pointer;
        }
        
        .dropdown-arrow {
            margin-left: 5px;
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }
        
        /* Mobile Navigation */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
            order: 4;
        }
        
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            padding: 1rem;
            z-index: 1001;
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-menu a {
            display: block;
            padding: 0.75rem 0;
            border-bottom: 1px solid #eee;
            color: #333;
            text-decoration: none;
        }
        
        /* Professional Dropdown Menu */
        .dropdown-content {
            display: none;
            position: absolute;
            background: white;
            min-width: 320px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            z-index: 1000;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            padding: 1rem 0;
            top: 100%;
            left: 0;
        }
        
        .dropdown-content a {
            display: block;
            padding: 8px 20px;
            color: #333;
            text-decoration: none;
            font-size: 0.95rem;
            transition: background 0.2s;
        }
        
        .dropdown-content a:hover {
            background: #f5f5f5;
            color: #4a90e2;
        }
        
        .dropdown-header {
            padding: 8px 20px;
            font-size: 0.85rem;
            color: #999;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 1px solid #eee;
            margin-bottom: 5px;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .dropdown-section {
            margin-bottom: 0.5rem;
        }
        
        .dropdown-section:last-child {
            margin-bottom: 0;
        }
        
        .dropdown-header {
            font-size: 0.75rem;
            font-weight: 600;
            color: #666;
            text-transform: uppercase;
            padding: 8px 20px 5px;
            letter-spacing: 0.5px;
            border-bottom: 1px solid #f0f0f0;
            margin-bottom: 5px;
        }
        
        .dropdown-content a {
            color: #333 !important;
            padding: 8px 20px !important;
            margin: 0 !important;
            text-decoration: none;
            display: block;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .dropdown-content a:hover {
            background: #f8f9fa !important;
            color: #2B5BA0 !important;
        }
        
        /* Professional Header CTA */
        .header-cta {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 3px;
            order: 3;
        }
        
        .emergency-text {
            font-size: 0.75rem;
            color: #666;
            font-weight: 500;
            white-space: nowrap;
        }
        
        .phone-button {
            background: #2B5BA0;
            color: white;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 2px solid #2B5BA0;
        }
        
        .phone-button:hover {
            background: #1e4080;
            border-color: #1e4080;
            transform: translateY(-1px);
        }
        
        
        .dropdown-arrow {
            margin-left: 5px;
            font-size: 0.8rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-section h3 {
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #ff9500;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        
        .footer-section p {
            color: #b8c5d1;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-section ul li a {
            color: #b8c5d1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: #ff9500;
        }
        
        .contact-info {
            margin-bottom: 1rem;
        }
        
        .contact-info strong {
            color: #ffffff;
            display: block;
            margin-bottom: 0.3rem;
        }
        
        .contact-info span {
            color: #b8c5d1;
        }
        
        .office-location {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        
        .office-location h4 {
            color: #ff9500;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }
        
        .certifications {
            text-align: center;
            padding: 2rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin: 2rem 0;
        }
        
        .certifications h3 {
            margin-bottom: 1.5rem;
        }
        
        .cert-badges {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .cert-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            min-width: 120px;
        }
        
        .cert-badge span {
            display: block;
            font-size: 0.9rem;
            color: #b8c5d1;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            color: #b8c5d1;
            margin-bottom: 1rem;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: #b8c5d1;
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .footer-links a:hover {
            color: #ff9500;
        }
        
        .emergency-contact {
            background: #c0392b;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            margin-top: 1rem;
        }
        
        .emergency-contact h4 {
            color: #ffffff;
            margin-bottom: 0.5rem;
        }
        
        .emergency-contact p {
            color: #ffffff;
            margin: 0;
            font-weight: bold;
        }
        
        /* Content Sections */
        .content {
            padding: 80px 20px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .content h2 {
            color: #1e3a8a;
            margin: 2rem 0 1rem;
        }
        
        .content h3 {
            color: #4a90e2;
            margin: 1.5rem 0 1rem;
        }
        
        .content p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #444;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .service-card h3 {
            color: #4a90e2;
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 1rem;
        }
        
        .service-card a {
            color: #ff9500;
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-section {
            background: linear-gradient(135deg, #4a90e2, #357abd);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            margin-top: 4rem;
        }
        
        .contact-section h2 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .contact-section p {
            color: white;
            font-size: 1.1rem;
        }
        
        .contact-section a {
            color: white;
            font-weight: bold;
        }
        
        /* RESPONSIVE DESIGN */
        @media (max-width: 768px) {
            .header {
                padding: 0.75rem 1rem;
            }
            
            .logo {
                font-size: 1.2rem;
            }
            
            .nav {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
                padding: 8px;
                font-size: 1.8rem;
            }
            
            .header-cta {
                display: none;
            }
            
            .hero {
                height: 100vh;
                min-height: 600px;
                padding: 2rem 1rem;
            }
            
            .hero-content {
                padding: 0 1rem;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
                margin-bottom: 1rem;
                line-height: 1.2;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .hero-stats {
                font-size: 1.2rem;
                margin-bottom: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
                padding: 0 1rem;
            }
            
            .btn {
                width: 100%;
                max-width: 280px;
                text-align: center;
                font-size: 0.95rem;
                padding: 14px 24px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .cert-badges {
                gap: 1rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
            
            /* FAQ Section Mobile */
            section[style*="grid-template-columns"] {
                padding: 2rem 1rem !important;
            }
            
            section[style*="grid-template-columns"] > div > div {
                grid-template-columns: 1fr !important;
                gap: 1rem !important;
            }
            
            /* Service Cards Mobile */
            section[style*="padding: 4rem 2rem"] {
                padding: 2rem 1rem !important;
            }
        }
        
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
                line-height: 1.2;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-stats {
                font-size: 1rem;
            }
            
            .btn {
                font-size: 0.9rem;
                padding: 12px 18px;
            }
            
            .logo {
                font-size: 1.3rem;
            }
            
            .header {
                padding: 0.75rem;
            }
        }
    

        @media (max-width: 992px) {
            /* Property Types - still 3 columns on tablet */
            .property-types-grid {
                gap: 2rem !important;
            }
            .property-types-grid a {
                min-height: 280px !important;
                padding: 2.5rem 2rem !important;
            }
            /* Service Offerings - 2 columns on tablet */
            .service-offerings-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }
        @media (max-width: 768px) {
            /* Property Types - 1 column on mobile */
            .property-types-grid {
                grid-template-columns: 1fr !important;
                gap: 1.5rem !important;
            }
            .property-types-grid a {
                min-height: 250px !important;
                padding: 2rem 1.5rem !important;
            }
            .property-types-grid a div:first-child {
                font-size: 3rem !important;
            }
            .property-types-grid a h4 {
                font-size: 1.4rem !important;
            }
            .property-types-grid a p {
                font-size: 1rem !important;
            }
            /* Service Offerings - 1 column on mobile */
            .service-offerings-grid {
                grid-template-columns: 1fr !important;
                gap: 1.5rem !important;
            }
            .service-offerings-grid a {
                min-height: 180px !important;
                padding: 1.5rem !important;
            }
        }
    

    /* PERFECT FOOTER WITH EXACT SPECIFICATIONS */
    footer {
        background: #2c3e50;
        color: white;
        line-height: 1.6;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .footer-main {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }
    
    .footer-column {
        line-height: 1.6;
    }
    
    .footer-logo {
        font-size: 24px;
        color: #ff6b35;
        margin-bottom: 8px;
        font-weight: normal;
    }
    
    .footer-description {
        color: white;
        line-height: 1.6;
        margin-bottom: 8px;
    }
    
    .footer-stats {
        color: white;
        line-height: 1.6;
        margin-bottom: 8px;
    }
    
    .footer-contact-line {
        color: white;
        line-height: 1.6;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
    }
    
    .footer-contact-line a {
        color: white;
        text-decoration: none;
    }
    
    .footer-contact-line a:hover {
        text-decoration: underline;
    }
    
    .footer-license {
        color: #ff6b35;
        font-weight: bold;
        line-height: 1.6;
    }
    
    .footer-column h3 {
        color: #ff6b35;
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: normal;
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        color: white;
        text-decoration: none;
        line-height: 1.6;
    }
    
    .footer-links a:hover {
        color: #ff6b35;
    }
    
    .footer-divider {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin: 20px 0;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px 40px;
        text-align: center;
    }
    
    .certifications {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    
    .cert-badge {
        height: 60px;
        max-height: 60px;
        background: white;
        border-radius: 8px;
        padding: 10px 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2c3e50;
        font-weight: bold;
        font-size: 14px;
    }
    
    .footer-copyright {
        text-align: center;
        color: white;
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* RESPONSIVE DESIGN */
    @media (max-width: 768px) {
        .footer-main {
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: center;
            padding: 40px 15px;
        }
        
        .footer-contact-line {
            justify-content: center;
        }
        
        .certifications {
            gap: 15px;
        }
        
        .cert-badge {
            height: 50px;
            max-height: 50px;
            padding: 8px 12px;
            font-size: 12px;
        }
    }
    /* Quick Contact Form Styles */
    .quick-contact {
        background: linear-gradient(135deg, #2B5BA0 0%, #4a90e2 100%);
        padding: 60px 20px;
        text-align: center;
        color: white;
    }
    
    .quick-contact h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .quick-contact p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-form {
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    
    .form-group label {
        margin-bottom: 0.5rem;
        font-weight: 600;
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        font-family: inherit;
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .submit-btn {
        background: #ff9500;
        color: white;
        padding: 15px 40px;
        border: none;
        border-radius: 5px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        align-self: center;
    }
    
    .submit-btn:hover {
        background: #e8850a;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    @media (max-width: 768px) {
        .form-row {
            grid-template-columns: 1fr;
        }
        
        .quick-contact h2 {
            font-size: 2rem;
        }
    }

/* Floating Get Quote Button */
.floating-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff9500 0%, #ff7a00 100%);
    color: white;
    padding: 18px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
}

.floating-quote-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 149, 0, 0.5);
    background: linear-gradient(135deg, #ff7a00 0%, #ff6000 100%);
}

.floating-quote-btn .phone-icon {
    font-size: 1.3rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(255, 149, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 149, 0, 0.6);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 149, 0, 0.4);
    }
}

/* Hide on small screens if needed */
@media (max-width: 768px) {
    .floating-quote-btn {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
        font-size: 0.95rem;
    }
}

/* Lazy loading for images */
img[loading="lazy"] {
    background: #f0f0f0;
}
