/* Quick Simon Solutions - Simplified Modern Stylesheet */

:root {
    --primary: #0056B3;
    --secondary: #FFC107;
    --dark: #212529;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--primary);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 999;
    transition: var(--transition);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.brand img {
    height: 60px;
    border-radius: 8px;
}

.brand h1 {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 700;
}

.nav-toggle {
    display: none;
    background: var(--primary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    transition: var(--transition);
}

nav ul li a:hover {
    background: var(--light);
    color: var(--primary);
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.features {
    padding: 80px 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #6c757d;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    color: white;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Hero Sub Text */
.hero-sub {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: -15px;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Landlord Section */
.landlord-section {
    padding: 80px 0;
    background: var(--white);
}

.landlord-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.landlord-card {
    background: var(--light);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.landlord-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.landlord-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.landlord-card h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.landlord-card p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}

.landlord-cta {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: 12px;
    margin-top: 20px;
}

.landlord-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--dark);
}

@media (max-width: 1024px) {
    .landlord-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .landlord-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-sub {
        font-size: 0.95rem;
    }
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #003d80 100%);
    padding: 50px 0;
    text-align: center;
    color: white;
}

.promo-content {
    max-width: 800px;
    margin: 0 auto;
}

.promo-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.promo-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.promo-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 25px;
}

/* Featured Service Cards */
.featured-service {
    position: relative;
    border: 2px solid var(--secondary);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16 / 10;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-content p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.service-btn:hover {
    background: var(--secondary);
    color: var(--dark);
}

.contact {
    padding: 80px 0;
    background: var(--light);
}

.contact-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.contact-method {
    background: white;
    padding: 30px 15px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    min-width: 0;
    overflow: hidden;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: var(--primary);
    color: white;
}

.contact-method i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-method:hover i {
    color: white;
}

.contact-method h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-method span {
    font-size: 0.85rem;
    opacity: 0.8;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.consent-group {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.consent-label input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.consent-label span {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Form Messages */
.form-message {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #28a745;
    color: #155724;
}

.form-message-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid #dc3545;
    color: #721c24;
}

.form-message-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-message-content i {
    font-size: 1.5rem;
}

.form-message-success i {
    color: #28a745;
}

.form-message-error i {
    color: #dc3545;
}

.form-message-content span {
    font-weight: 500;
    line-height: 1.5;
}

footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-section i {
    margin-right: 8px;
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .promo-content h3 {
        font-size: 1.4rem;
    }
    
    .promo-content p {
        font-size: 1rem;
    }
    

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 30px 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    nav ul.open {
        right: 0;
    }
    
    nav ul li {
        width: 100%;
        padding: 0 30px;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #dee2e6;
    }
    
    .brand h1 {
        font-size: 1.1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .brand img {
        height: 50px;
    }
}
