/* Western Advisors Landing Page Styles */

:root {
    --primary-blue: #1e3a8a;
    --primary-teal: #0891b2;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --dark-gray: #334155;
    --light-gray: #f1f5f9;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: var(--white);
    padding: 0;
}

/* Teal Banner */
.teal-banner {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5f7f 100%);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
}

.banner-text {
    font-size: 38px;
    margin: 0;
    color: var(--white);
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
    animation-delay: 0.3s;
}

.hero-image-container {
    text-align: center;
    background: var(--white);
    padding: 40px 20px;
}

.hero-timebomb-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-content-block {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5f7f 100%);
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-warning {
    font-size: 1.5rem;
    color: var(--warning-orange);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
    animation-delay: 0.5s;
    white-space: nowrap;
}

.cta-button {
    display: inline-block;
    background-color: var(--warning-orange);
    color: var(--white);
    padding: 16px 32px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
    animation-delay: 0.8s;
}

.cta-button:hover {
    background-color: #dc8a0a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Resources Section */
.resources {
    padding: 60px 20px;
    background-color: var(--light-gray);
}

.resources h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.resource-card {
    background: var(--white);
    padding: 30px;
    /* border-radius now in image */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.resource-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Problem Section */
.problem {
    padding: 60px 20px;
}

.problem > .container > p {
    margin-bottom: 0.75rem;
}

.problem h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.problem h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.problem ul {
    list-style: none;
    padding-left: 0;
}

.problem li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.problem li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Book Section */
.book-section {
    padding: 60px 20px;
    background-color: var(--light-gray);
}

.book-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.book-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.book-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* border-radius now in image */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border: 3px solid var(--warning-orange);
}

.book-details ul {
    list-style: none;
    padding-left: 0;
}

.book-details li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.book-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.5rem;
}

.book-benefits {
    margin-top: 2rem;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    border: 4px solid var(--primary-teal);
}

.book-benefits h3 {
    color: var(--primary-teal);
}

/* Final CTA */
.final-cta {
    padding: 60px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Booking Page Styles */
.booking-header {
    background-color: var(--light-gray);
    padding: 20px;
    border-bottom: 3px solid var(--warning-orange);
}

.back-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    color: var(--primary-teal);
}

.booking-content {
    padding: 40px 20px;
}

.booking-section {
    margin-bottom: 40px;
}

.booking-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.booking-subheader {
    font-size: 1.6rem;
    color: #f59e0b;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.booking-subtitle {
    font-size: 1.3rem;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 1rem;
}

.booking-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.value-section {
    background-color: var(--light-gray);
    padding: 40px;
    /* border-radius now in image */
}

.value-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.value-text {
    flex: 1;
}

.value-image {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.consultation-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

.value-image .value-note {
    margin-top: 0;
    text-align: center;
    font-style: italic;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.value-list {
    list-style: none;
    padding: 0;
}

.value-list li {
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #ddd;
}

.value-list li:last-child {
    border-bottom: none;
}

.value-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--dark-gray);
}

.qualification-section {
    padding: 30px;
    background-color: var(--white);
    border: 2px solid var(--success-green);
    /* border-radius now in image */
}

.qualification-list {
    list-style: none;
    padding: 0;
}

.qualification-list li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.disclaimer {
    margin-top: 1.5rem;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 8px;
    font-style: italic;
}

/* Calendly Section */
.calendly-section {
    text-align: center;
}

.calendly-embed {
    margin-top: 2rem;
    /* border-radius now in image */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Divider */
.divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.divider:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ddd;
}

.divider span {
    position: relative;
    background-color: var(--white);
    padding: 0 20px;
    font-weight: 700;
    color: var(--dark-gray);
}

/* Form Styles */
.form-section {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-group-header {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-teal);
}

.form-group-header h3 {
    color: var(--primary-teal);
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.radio-label input,
.checkbox-label input {
    width: auto;
    margin-right: 10px;
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-style: italic;
}

/* Thank You Page */
.thankyou-section {
    padding: 60px 20px;
    min-height: 70vh;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: var(--success-green);
    color: var(--white);
    font-size: 3rem;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thankyou-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.next-steps,
.value-reminder,
.preparation,
.contact-info {
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps h2,
.value-reminder h2,
.preparation h2,
.contact-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
}

.value-reminder ul,
.preparation ul {
    list-style: none;
    padding: 0;
}

.value-reminder li,
.preparation li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.thankyou-cta {
    margin-top: 3rem;
}

/* Footer */
.footer {
    background-color: var(--white);
    border-top: 3px solid var(--warning-orange);
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--warning-orange);
    object-fit: cover;
}

.footer-name h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.footer-name p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--primary-teal);
}

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

.footer-center p {
    margin: 8px 0;
    color: var(--dark-gray);
}

.footer-center a {
    color: var(--primary-teal);
    text-decoration: none;
}

.footer-center a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.footer-right {
    text-align: right;
}

.footer-logo-container {
    display: inline-block;
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-image-container {
        padding: 20px 10px;
    }
    
    .hero-timebomb-image {
        max-width: 100%;
    }
    
    .hero-content-block {
        padding: 30px 20px;
    }
    
    .teal-banner {
        padding: 20px 15px;
    }
    
    .banner-text {
        font-size: 26px;
        white-space: normal;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-warning {
        font-size: 1.2rem;
        white-space: normal;
    }
    
    .book-content {
        grid-template-columns: 1fr;
    }
    
    .book-image img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-left {
        flex-direction: column;
        justify-content: center;
    }
    
    .footer-photo {
        width: 70px;
        height: 70px;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .footer-logo {
        max-width: 150px;
    }
}

@media print {
    .hero,
    .cta-section,
    .cta-button,
    .footer {
        display: none;
    }
}
/* Form Compression Styles */
.booking-form .form-group-header {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.booking-form .form-group {
    margin-bottom: 15px;
}

.booking-form .form-row {
    gap: 15px;
}

.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
    padding: 10px;
}

.booking-form .checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.booking-form .form-submit {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .booking-form .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Three-column form row for City/State/Zip and Retirement Status/Age/Assets */
.form-row-3col {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 15px;
}

/* For the address row specifically */
.form-row-3col .form-group:nth-child(2) {
    /* State dropdown */
    min-width: 120px;
}

.form-row-3col .form-group:nth-child(3) {
    /* Zip code */
    min-width: 100px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .form-row-3col {
        grid-template-columns: 1fr;
    }
}

/* Remove spinner from number input for age field */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* Limit age field width */
#age {
    max-width: 120px;
}

@media (max-width: 768px) {
    #age {
        max-width: 100%;
    }
}

/* Adjust 3-column financial row to be equal width */
.form-row-3col:has(#currentStatus) {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Ensure labels stay on same line */
.form-row-3col .form-group label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* NEW FOOTER DESIGN - Compact Horizontal Layout */
.footer-new {
    background-color: #e5e7eb;
    padding: 15px 20px;
    margin-top: 60px;
    border-top: 3px solid var(--warning-orange);
}

.footer-new .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    max-width: 1200px;
}

.footer-photo-new {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.footer-name-new {
    flex-shrink: 0;
}

.footer-name-new h3 {
    font-size: 1.75rem;
    margin: 0 0 5px 0;
    color: #1e3a5f;
    font-weight: 700;
    line-height: 1.2;
}

.footer-name-new p {
    margin: 0;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.3;
}

.footer-contact-new {
    flex: 1;
    padding-left: 20px;
}

.footer-contact-new p {
    margin: 3px 0;
    font-size: 1rem;
    line-height: 1.4;
}

.footer-contact-new strong {
    color: #1e3a5f;
    font-weight: 600;
}

.footer-contact-new a {
    color: #0891b2;
    text-decoration: none;
    font-weight: 600;
}

.footer-contact-new a:hover {
    text-decoration: underline;
}

.footer-contact-new .copyright {
    margin-top: 5px;
    font-size: 0.85rem;
    color: #6b7280;
}

.footer-logo-wrapper-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.footer-logo-new {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-text {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e3a5f;
    letter-spacing: 0.5px;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

/* Hide old footer */
.footer {
    display: none;
}

@media (max-width: 768px) {
    .footer-new .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-contact-new {
        padding-left: 0;
    }

    .footer-photo-new,
    .footer-logo-new {
        width: 90px;
        height: 90px;
    }

    .footer-name-new h3 {
        font-size: 1.5rem;
    }

    .value-content-wrapper {
        flex-direction: column;
    }

    .value-image {
        flex: 1;
        max-width: 100%;
    }
}
                                                                                                        