/* Aabo Home Custom Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2f2f2f 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/big-modern-house-with-porch-illuminated-in-the-aut-2025-10-03-06-17-31-utc.jpg') center center;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    margin-top: 2rem;
}

.hero-actions .btn {
    margin: 0 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Service Packages */
.service-package {
    margin: 4rem 0;
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-image {
    text-align: center;
}

.service-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    height: auto;
}

/* Section Dark Styling */
.section-dark {
    background: #f8f9fa;
    padding: 4rem 0;
}

/* Professional Credentials Section */
.credentials-content {
    background: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.esa-membership {
    max-width: 1000px;
    margin: 0 auto;
}

.esa-logo-container {
    margin-bottom: 2rem;
}

.esa-logo {
    max-width: 200px;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.esa-info h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.esa-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.professional-benefits {
    margin-top: 3rem;
}

.benefit-item {
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.benefit-item h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation Active State */
.navbar-nav > li.active > a {
    color: var(--primary-color) !important;
}

/* Logo Height on Scroll */
.header.headhesive.headhesive--stick .logo img {
    /*height: 28px;*/
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }

    .service-package .row {
        flex-direction: column-reverse;
    }

    .service-package:nth-child(even) .row {
        flex-direction: column;
    }

    .contact-form {
        padding: 2rem 1rem;
    }
}