/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar__logo {
    height: 50px;
    width: auto;
}

.top-bar__right-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-header {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-teal-fill-new {
    background: #20B2AA;
    color: white;
}

.btn-teal-fill-new:hover {
    background: #1a9a94;
    transform: translateY(-2px);
}

.btn-teal-clear-new {
    background: transparent;
    color: #20B2AA;
    border: 2px solid #20B2AA;
}

.btn-teal-clear-new:hover {
    background: #20B2AA;
    color: white;
}

.btn-orange-fill-new {
    background: #FF6B35;
    color: white;
}

.btn-orange-fill-new:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-orange-clear-new {
    background: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.btn-orange-clear-new:hover {
    background: #FF6B35;
    color: white;
}

/* Navigation Styles */
.navbar {
    background: #f8f9fa;
    padding: 0 2rem;
}

.nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    position: relative;
    display: flex;
    align-items: center;
}

.nav__link a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link a:hover {
    color: #FF6B35;
}

.nav__link span {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #333;
}

.nav__link img {
    margin-left: 5px;
    width: 12px;
    height: 12px;
}

/* Dropdown Styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 6px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.droppable:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__container {
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown__link a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown__link a:hover {
    background-color: #f8f9fa;
    color: #FF6B35;
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__menu-container {
    background: white;
    width: 300px;
    height: 100%;
    overflow-y: auto;
    padding: 2rem 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu__menu-container {
    transform: translateX(0);
}

.mobile-menu__link {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu__link a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu__dropdown {
    display: none;
    background: #f8f9fa;
    padding-left: 1rem;
}

.mobile-menu__dropdown.active {
    display: block;
}

.mobile-menu__dropdown-link a {
    padding: 0.75rem 2rem;
    display: block;
    color: #666;
    text-decoration: none;
}

/* Hero Section */
.experience-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-top: 120px;
    overflow: hidden;
}

.custom-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.custom-cta__heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.custom-cta__subheading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

.custom-badge {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.hero-badge-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
}

/* CTA Sections */
.top-cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.cta-block {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.cta-block:hover {
    transform: translateY(-5px);
}

.cta-block__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.cta-block__heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.cta-block__copy {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-section {
    padding: 14px 28px;
    font-size: 16px;
}

/* Testimonials */
.testimonials {
    padding: 4rem 2rem;
    background: white;
}

#testimonials-gallery {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Communication Section */
.communication {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.communication .cta-block {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
}

.communication .cta-block__heading {
    color: white;
}

.communication .cta-block__copy {
    color: rgba(255,255,255,0.9);
}

/* Resource Cards */
.resource-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.resource-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card__heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.resource-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.resource-card__copy {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-cards {
    padding: 12px 24px;
    font-size: 14px;
}

/* Home Bottom CTA */
.home-bottom-cta {
    padding: 4rem 2rem;
}

.porch-cta {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.porch-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.porch-cta > * {
    position: relative;
    z-index: 2;
}

.porch-cta__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.porch-cta__heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Accolades */
.accolades {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}

.accolades__item {
    display: inline-block;
    margin: 1rem;
    transition: transform 0.3s ease;
}

.accolades__item:hover {
    transform: scale(1.05);
}

.accolades__accolade {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.accolades__description {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    display: none;
}

.accolades__description.active {
    display: block;
}

.accolades__description h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.accolades__description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pinwheel {
    width: 40px;
    height: 40px;
}

.social-media__bar {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.social-media__icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-media__icon:hover {
    transform: scale(1.2);
}

.footer-middle {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-middle__nav {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 3rem;
}

.footer-middle__link-group {
    display: flex;
    gap: 2rem;
}

.footer-middle__link a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-middle__link a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
}

.bbb-equalHousing {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.bbb-equalHousing img {
    height: 40px;
    width: auto;
}

.footer-bottom__nmls-block {
    margin-bottom: 1rem;
}

.footer-bottom__nmls-block a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-bottom__nmls-block a:hover {
    color: white;
}

.footer-bottom__nmls-block span {
    display: block;
    margin: 0.5rem 0;
    color: rgba(255,255,255,0.8);
}

.footer-bottom__nmls-link {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-bottom__nmls-link a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer-bottom__copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        padding: 1rem;
    }
    
    .navbar {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .custom-cta__heading {
        font-size: 2.5rem;
    }
    
    .custom-cta__subheading {
        font-size: 1.2rem;
    }
    
    .top-cta {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .resource-cards {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-middle__nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-middle__link-group {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .custom-cta__heading {
        font-size: 2rem;
    }
    
    .cta-block {
        padding: 2rem 1rem;
    }
    
    .resource-card {
        padding: 2rem 1rem;
    }
}

/* High Contrast Mode */
body.high-contrast {
    background: #000;
    color: #fff;
}

body.high-contrast .header {
    background: #000;
    border-bottom: 2px solid #fff;
}

body.high-contrast .btn {
    border: 2px solid #fff;
}

/* Animation Classes */
.observable {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.observable.animate {
    opacity: 1;
    transform: translateY(0);
}

.grow {
    transition: transform 0.3s ease;
}

.grow:hover {
    transform: scale(1.05);
} 