/* ========================================
   HERO SECTION
   ======================================== */
.home-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.home-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3CADD4;
}

.home-hero .container {
    position: relative;
    z-index: 1;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 2.25rem 0;
}

.home-hero-content {
    color: white;
}

.home-hero-welcome {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-style: italic;
    opacity: 0.95;
}

.home-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.home-hero-subtitle {
    font-size: 24px;
    color: #ffd108;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.home-hero-tagline {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.home-hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero button - Navy on turquoise/light background */
.home-hero .btn-navy {
    background: var(--color-navy);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.home-hero .btn-navy:hover {
    background: #152d4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.home-hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.home-hero-photo {
    width: 225px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.home-about-section {
    padding: 4rem 0;
    background: white;
}

.home-about-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.home-about-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.home-about-desc {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 1rem;
    line-height: 1.7;
    color: var(--color-navy);
}

.home-about-difference {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.home-about-difference h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.home-about-difference .home-about-checklist {
    display: inline-block;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.home-about-two-column {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 3rem;
    margin-top: 2rem;
    align-items: center;
}

.home-about-mission {
    display: flex;
    align-items: center;
}

.home-about-image img {
    width: 95%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.home-about-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.home-about-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.home-about-checklist li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    color: var(--color-navy);
}

.home-about-checklist li .check-icon {
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.home-about-checklist li .check-icon::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.home-mission-box {
    text-align: center;
}

.home-mission-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-navy);
}

.home-mission-box p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--color-navy);
}

.home-mission-box p:last-child {
    margin-bottom: 0;
}

.home-about-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-navy {
    background: var(--color-navy);
    color: white;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background: #152d4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.home-services-section {
    background: #3CADD4;
    padding: 4rem 0;
}

.home-services-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 2.5rem;
}

.home-services-block {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3rem;
    align-items: center;
}

.home-services-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.home-services-content p {
    font-size: 16px;
    color: white;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.home-services-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-services-checklist li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    color: white;
}

.home-services-checklist li .check-icon {
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 20px;
    height: 20px;
    background: #00A651;
    border-radius: 50%;
}

.home-services-checklist li .check-icon::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.home-services-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.home-services-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.home-services-cta .btn-navy {
    background: #1E3A5F;
    color: white;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.home-services-cta .btn-navy:hover {
    background: #152d4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ========================================
   FINAL EXPENSE (White Background Section)
   ======================================== */
.home-service-white {
    background: white;
    padding: 4rem 0;
}

.home-service-white .home-services-content h3 {
    color: #1E3A5F;
}

.home-service-white .home-services-content p {
    color: #1E3A5F;
}

.home-service-white .home-services-checklist li {
    color: #1E3A5F;
}

.home-service-white .home-services-image img {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Reversed layout - image left, text right */
.home-services-block-reverse {
    grid-template-columns: 40% 60%;
}

.home-services-block-reverse .home-services-content {
    order: 2;
}

.home-services-block-reverse .home-services-image {
    order: 1;
}

/* Turquoise button on navy backgrounds (FAQ) */
.home-faq-section .btn-turquoise {
    background: var(--color-primary);
    color: white;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: fit-content;
}

.home-faq-section .btn-turquoise:hover {
    background: #2E9BBF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.home-testimonials-section {
    padding: 4rem 0;
    background: #3CADD4;
}

.home-testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.home-testimonials-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.home-testimonials-section .home-section-subtitle {
    color: white;
    font-size: 1.125rem;
}

.home-testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid #1E3A5F;
}

.home-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.home-testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.home-google-badge {
    margin-bottom: 1rem;
}

.home-google-badge img {
    height: 30px;
    width: auto;
}

.home-stars {
    margin-bottom: 1rem;
}

.home-star {
    color: var(--color-gold);
    font-size: 1.25rem;
}

.home-author-name {
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.home-testimonial-text {
    color: var(--color-navy);
    line-height: 1.7;
    font-style: italic;
    font-size: 0.95rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.home-cta-section {
    background: white;
    padding: 4rem 0;
    text-align: center;
}

.home-cta-section h2 {
    color: #1E3A5F;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.home-cta-section .btn-navy {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.home-faq-section {
    background: #3CADD4;
    padding: 4rem 0;
}

.home-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.home-faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.home-faq-header .home-section-subtitle {
    color: white;
}

.home-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.home-faq-item {
    background: #1E3A5F;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.home-faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    transition: background 0.3s ease;
}

.home-faq-question:hover {
    background: rgba(255,255,255,0.1);
}

.home-faq-icon {
    font-size: 1.5rem;
    color: #ffd108;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.home-faq-item.active .home-faq-icon {
    transform: rotate(45deg);
}

.home-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.home-faq-item.active .home-faq-answer {
    max-height: 500px;
}

.home-faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: white;
    line-height: 1.7;
}

.home-faq-answer-content p {
    margin: 0;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.home-contact-section {
    background: #152d4a;
    padding: 3rem 0;
}

.home-contact-section h2 {
    text-align: center;
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.home-contact-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.home-contact-info {
    display: flex;
    gap: 3rem;
}

.home-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.home-contact-icon {
    font-size: 1.5rem;
}

.home-contact-item strong {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.home-contact-item p {
    margin: 0;
}

.home-contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
}

.home-contact-item a:hover {
    color: var(--color-primary);
}

.home-contact-social {
    display: flex;
    gap: 1rem;
}

.home-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.home-social-link:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.home-social-link svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-hero-image {
        order: -1;
        justify-content: center;
    }

    .home-hero-photo {
        width: 130px;
        height: 130px;
    }

    .home-hero-buttons {
        justify-content: center;
    }

    .home-about-two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .home-services-block,
    .home-services-block-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-services-image,
    .home-services-block-reverse .home-services-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .home-services-block-reverse .home-services-content {
        order: 1;
    }

    .home-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .home-hero-content h1 {
        font-size: 36px;
    }

    .home-hero-welcome {
        font-size: 1rem;
    }

    .home-hero-subtitle,
    .home-hero-tagline {
        font-size: 18px;
    }

    .home-hero-photo {
        width: 120px;
        height: 120px;
    }

    .home-about-section h2,
    .home-services-title,
    .home-testimonials-header h2,
    .home-cta-section h2,
    .home-faq-header h2,
    .home-contact-section h2 {
        font-size: 28px;
    }

    .home-about-content h3 {
        font-size: 20px;
    }

    .home-services-section {
        padding: 2rem 0;
    }

    .home-services-title {
        font-size: 28px;
    }

    .home-services-content h3 {
        font-size: 20px;
    }

    .home-services-cta {
        margin-top: 1.5rem;
    }

    .home-service-white {
        padding: 2rem 0;
    }

    .home-contact-info {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .home-contact-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .home-contact-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .home-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-gold {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .home-hero-content h1 {
        font-size: 28px;
    }

    .home-hero-subtitle,
    .home-hero-tagline {
        font-size: 16px;
    }

    .home-hero-photo {
        width: 100px;
        height: 100px;
    }

    .home-mission-box {
        padding: 1.5rem;
    }

    .home-testimonial-card {
        padding: 1.5rem;
    }
}
