/*
 * COMPLETE VISUAL REDESIGN - TOTALLY DIFFERENT LAYOUT
 */

/* SIDE NAVIGATION HEADER */
.header {
    background-color: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    padding: 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.header.scrolled {
    background-color: rgba(74, 144, 226, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15) !important;
    border-bottom: 1px solid rgba(135, 206, 235, 0.3) !important;
}

.nav-container {
    display: grid !important;
    grid-template-columns: 250px 1fr auto !important;
    align-items: center !important;
    gap: 2rem !important;
    padding: 0 !important;
    max-width: 100% !important;
}

.logo {
    background: transparent !important;
    padding: 0 2rem !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.nav-menu {
    padding: 1.5rem 0 !important;
}

.nav-list {
    display: flex !important;
    gap: 3rem !important;
    justify-content: center !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.95rem !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    border-bottom: 2px solid transparent !important;
    padding-bottom: 0.25rem !important;
    transition: all 0.3s ease !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.nav-link:hover {
    border-bottom-color: #87CEEB !important;
}

.header.scrolled .nav-link {
    text-shadow: none !important;
}

.nav-cta {
    padding-right: 2rem !important;
    display: flex !important;
    gap: 1rem !important;
}

@media (max-width: 768px) {
    .nav-cta {
        display: none !important;
    }
}

.phone-btn {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    padding: 0.6rem 1.2rem !important;
    font-size: 0.85rem !important;
    border-radius: 4px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.phone-btn:hover {
    text-shadow: none !important;
}

.header.scrolled .phone-btn {
    border-color: white !important;
    text-shadow: none !important;
}

.cta-btn {
    background: #87CEEB !important;
    color: #051d40 !important;
    padding: 0.6rem 1.5rem !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
}

/* HERO WITH SIDE FORM */
.hero-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    gap: 3rem !important;
    align-items: center !important;
}

.hero-text {
    padding: 4rem 2rem !important;
    text-align: center !important;
}

.hero-title {
    font-size: 4rem !important;
    line-height: 1.1 !important;
    margin-bottom: 2rem !important;
    font-weight: 900 !important;
    text-align: center !important;
}

.hero-subtitle {
    font-size: 1.35rem !important;
    margin-bottom: 2.5rem !important;
    text-align: center !important;
}

.hero-cta {
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

.hero-form {
    display: block !important;
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 3rem !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

@media (min-width: 769px) {
    .hero-layout {
        grid-template-columns: 1fr 1fr !important;
    }

    .hero-text {
        text-align: left !important;
    }

    .hero-title {
        text-align: left !important;
    }

    .hero-subtitle {
        text-align: left !important;
    }

    .hero-cta {
        justify-content: flex-start !important;
    }
}

/* REMOVE ALTERNATING LAYOUTS - KEEP CENTERED */
.section-content-wrapper {
    display: block !important;
}

.section-text-content {
    text-align: center !important;
}

.section-header {
    text-align: center !important;
}

.section-header h2 {
    text-align: center !important;
}

/* KEEP ORIGINAL CARD LAYOUT */
.value-item {
    text-align: center !important;
}

.value-icon {
    margin: 0 auto 1.5rem !important;
}

/* KEEP ORIGINAL PRACTICE AREAS */
.practice-item {
    text-align: center !important;
}

.practice-icon {
    margin: 0 auto 1.5rem !important;
}

.practice-item h3 {
    text-align: center !important;
}

.practice-item p {
    text-align: center !important;
}

/* KEEP ORIGINAL BENEFITS */
.benefit-item {
    text-align: center !important;
}

/* KEEP ORIGINAL CTA */
.cta-content {
    text-align: center !important;
}

.cta-content h2 {
    text-align: center !important;
}

.cta-content p {
    text-align: center !important;
}

/* Override for split layout with image */
.cta-wrapper .cta-content {
    text-align: left !important;
}

.cta-wrapper .cta-content h2 {
    text-align: left !important;
}

.cta-wrapper .cta-content p {
    text-align: left !important;
}

/* KEEP ORIGINAL FOOTER */

/* MOBILE ADJUSTMENTS */
@media (max-width: 968px) {
    .nav-container {
        grid-template-columns: auto 1fr auto !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-layout {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-text {
        padding: 0 1rem !important;
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
        text-align: center !important;
        margin: 0 auto 1.5rem auto !important;
        width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .hero-subtitle {
        font-size: 1.125rem !important;
        text-align: center !important;
        margin: 0 auto 2rem auto !important;
        width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .hero-cta {
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .hero-form {
        text-align: center !important;
        width: calc(100% - 2rem) !important;
        margin: 0 1rem !important;
        padding: 1.5rem !important;
        box-sizing: border-box !important;
    }

    .hero-form h3,
    .hero-form .form-subtitle {
        text-align: center !important;
    }
}
