/* Snowbirds Page - Modern Dark Theme Redesign */

/* ============================================
   HERO SECTION - Dark Gradient with Quote Form
   ============================================ */

.snowbirds-hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1525 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.snowbirds-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(51, 109, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(51, 109, 255, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

/* California Hero - Golden Gate Bridge Background */
.snowbirds-hero.california-hero {
    background: url('../img/golden-gate-bridge.jpg') center center / cover no-repeat;
    background-attachment: scroll;
}

.snowbirds-hero.california-hero::before {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.93) 0%, rgba(26, 42, 74, 0.87) 50%, rgba(13, 21, 37, 0.93) 100%);
}

/* Texas Hero - San Antonio Background */
.snowbirds-hero.texas-hero {
    background: url('../img/san-antonio.jpg') center top / cover no-repeat;
    background-attachment: scroll;
}

.snowbirds-hero.texas-hero::before {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.78) 0%, rgba(26, 42, 74, 0.72) 50%, rgba(13, 21, 37, 0.78) 100%);
}

/* Florida Hero - Sunny Isles Beach Background */
.snowbirds-hero.florida-hero {
    background: url('../img/sunny-isles-beach.jpg') center center / cover no-repeat;
    background-attachment: scroll;
}

.snowbirds-hero.florida-hero::before {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.93) 0%, rgba(26, 42, 74, 0.87) 50%, rgba(13, 21, 37, 0.93) 100%);
}

.snowbirds-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
}

.snowbirds-hero-text {
    max-width: 600px;
}

.snowbirds-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(51, 109, 255, 0.15);
    border: 1px solid rgba(51, 109, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 24px;
}

.snowbirds-hero-badge span {
    color: #336DFF;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.snowbirds-hero h1 {
    color: #ffffff;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px;
}

.snowbirds-hero h1 span {
    color: #336DFF;
}

.snowbirds-hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 32px;
}

.snowbirds-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.snowbirds-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.snowbirds-hero-feature svg {
    width: 20px;
    height: 20px;
    color: #336DFF;
    flex-shrink: 0;
}

.snowbirds-hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.snowbirds-hero-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #336DFF;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.snowbirds-hero-cta .btn-primary:hover {
    background: #1a4fd6;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(51, 109, 255, 0.4);
}

.snowbirds-hero-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.snowbirds-hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FLOATING QUOTE FORM
   ============================================ */

.snowbirds-quote-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.snowbirds-quote-form-header {
    text-align: center;
    margin-bottom: 28px;
}

.snowbirds-quote-form-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
}

.snowbirds-quote-form-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.snowbirds-quote-form-header a {
    color: #336DFF;
    text-decoration: none;
    font-weight: 600;
}

.snowbirds-quote-form-header a:hover {
    text-decoration: underline;
}

/* Form Steps */
.snowbirds-form-step {
    display: none !important;
}

.snowbirds-form-step.active {
    display: block !important;
}

/* Progress Indicator */
.snowbirds-form-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.snowbirds-form-progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.snowbirds-form-progress-dot.active {
    background: #336DFF;
    transform: scale(1.2);
}

.snowbirds-form-progress-dot.completed {
    background: #336DFF;
}

/* Form Fields */
.snowbirds-form-group {
    margin-bottom: 20px;
}

.snowbirds-form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.snowbirds-form-group input,
.snowbirds-form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.snowbirds-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.snowbirds-form-group input:focus,
.snowbirds-form-group select:focus {
    outline: none;
    border-color: #336DFF;
    background: rgba(51, 109, 255, 0.1);
}

.snowbirds-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.snowbirds-form-group select option {
    background: #1a2a4a;
    color: #ffffff;
}

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

/* Form Buttons */
.snowbirds-form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.snowbirds-form-buttons button {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.snowbirds-form-buttons .btn-back {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.snowbirds-form-buttons .btn-back:hover {
    background: rgba(255, 255, 255, 0.15);
}

.snowbirds-form-buttons .btn-next,
.snowbirds-form-buttons .btn-submit {
    background: #336DFF;
    color: #ffffff;
}

.snowbirds-form-buttons .btn-next:hover,
.snowbirds-form-buttons .btn-submit:hover {
    background: #1a4fd6;
}

/* Error Messages */
.snowbirds-form-error {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: none;
}

.snowbirds-form-error p {
    color: #fca5a5;
    font-size: 14px;
    margin: 0;
}

/* Quote Result */
.snowbirds-quote-result {
    text-align: center;
}

.snowbirds-quote-result h4 {
    color: #336DFF;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
}

.snowbirds-quote-result p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0 0 24px;
}

.snowbirds-quote-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.snowbirds-quote-details-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.snowbirds-quote-details-row:last-child {
    border-bottom: none;
}

.snowbirds-quote-details-row .label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.snowbirds-quote-details-row .value {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.snowbirds-quote-details-row.total .value {
    color: #336DFF;
    font-size: 18px;
}

/* ============================================
   WHY SNOWBIRDS SECTION - Benefits Cards
   ============================================ */

.snowbirds-benefits {
    background: linear-gradient(180deg, #0d1525 0%, #1a2a4a 100%);
    padding: 100px 0;
}

.snowbirds-benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.snowbirds-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.snowbirds-section-subtitle {
    color: #336DFF;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.snowbirds-section-title {
    color: #ffffff;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.snowbirds-section-title span {
    color: #336DFF;
}

.snowbirds-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.snowbirds-benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.3s ease;
}

.snowbirds-benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(51, 109, 255, 0.3);
    transform: translateY(-4px);
}

.snowbirds-benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(51, 109, 255, 0.2) 0%, rgba(51, 109, 255, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.snowbirds-benefit-icon svg {
    width: 28px;
    height: 28px;
    color: #336DFF;
}

.snowbirds-benefit-card h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
}

.snowbirds-benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   WHY SHIP SECTION - Side by Side
   ============================================ */

.snowbirds-why-ship {
    background: #0a1628;
    padding: 100px 0;
    overflow: hidden;
}

.snowbirds-why-ship-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.snowbirds-why-ship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.snowbirds-why-ship-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.snowbirds-why-ship-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.snowbirds-why-ship-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(51, 109, 255, 0.1) 0%, transparent 50%);
    border-radius: 24px;
}

.snowbirds-why-ship-content h2 {
    color: #ffffff;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px;
}

.snowbirds-why-ship-content h2 span {
    color: #336DFF;
}

.snowbirds-why-ship-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 32px;
}

.snowbirds-why-ship-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.snowbirds-why-ship-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.snowbirds-why-ship-list li:last-child {
    border-bottom: none;
}

.snowbirds-why-ship-list li svg {
    width: 24px;
    height: 24px;
    color: #336DFF;
    flex-shrink: 0;
    margin-top: 2px;
}

.snowbirds-why-ship-list li div h4 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 4px;
}

.snowbirds-why-ship-list li div p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PROCESS TIMELINE SECTION
   ============================================ */

.snowbirds-process {
    background: linear-gradient(180deg, #1a2a4a 0%, #0d1525 100%);
    padding: 100px 0;
}

.snowbirds-process-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.snowbirds-timeline {
    position: relative;
    padding-left: 60px;
}

.snowbirds-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.snowbirds-timeline-step {
    position: relative;
    padding-bottom: 48px;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.snowbirds-timeline-step:last-child {
    padding-bottom: 0;
}

.snowbirds-timeline-step.active {
    opacity: 1;
}

.snowbirds-timeline-step::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 0;
    width: 32px;
    height: 32px;
    background: rgba(51, 109, 255, 0.2);
    border: 2px solid rgba(51, 109, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.snowbirds-timeline-step.active::before {
    background: #336DFF;
    border-color: #336DFF;
    box-shadow: 0 0 20px rgba(51, 109, 255, 0.5);
}

.snowbirds-timeline-step-number {
    position: absolute;
    left: -45px;
    top: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
    transition: all 0.3s ease;
}

.snowbirds-timeline-step.active .snowbirds-timeline-step-number {
    color: #ffffff;
}

.snowbirds-timeline-step h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
}

.snowbirds-timeline-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   FAQ SECTION - Modern Accordion
   ============================================ */

.snowbirds-faq {
    background: #0a1628;
    padding: 100px 0;
}

.snowbirds-faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.snowbirds-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.snowbirds-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.snowbirds-faq-item:hover {
    border-color: rgba(51, 109, 255, 0.3);
}

.snowbirds-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    gap: 20px;
}

.snowbirds-faq-question h4 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.snowbirds-faq-question svg {
    width: 20px;
    height: 20px;
    color: #336DFF;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.snowbirds-faq-item.open .snowbirds-faq-question svg {
    transform: rotate(180deg);
}

.snowbirds-faq-answer {
    padding: 0 28px 24px;
    display: none;
}

.snowbirds-faq-item.open .snowbirds-faq-answer {
    display: block;
}

.snowbirds-faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Help Center Link */
.snowbirds-help-center-link {
    text-align: center;
    padding: 48px 24px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.snowbirds-help-center-link p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin: 0 0 16px;
}

.btn-help-center {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #336DFF;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-help-center:hover {
    background: #1a4fd6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 109, 255, 0.35);
}

.btn-help-center svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    flex-shrink: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.snowbirds-cta {
    background: linear-gradient(135deg, #336DFF 0%, #1a4fd6 100%);
    padding: 80px 0;
    text-align: center;
}

.snowbirds-cta-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.snowbirds-cta h2 {
    color: #ffffff;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    margin: 0 0 16px;
}

.snowbirds-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 32px;
}

.snowbirds-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.snowbirds-cta-buttons .btn-white {
    background: #ffffff;
    color: #336DFF;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.snowbirds-cta-buttons .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.snowbirds-cta-buttons .btn-outline {
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.snowbirds-cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1200px) {
    .snowbirds-hero-content {
        grid-template-columns: 1fr 420px;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .snowbirds-hero-content {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .snowbirds-quote-form {
        max-width: 100%;
    }

    .snowbirds-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .snowbirds-why-ship-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .snowbirds-why-ship-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .snowbirds-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .snowbirds-hero h1 {
        font-size: 32px;
    }

    .snowbirds-hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .snowbirds-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .snowbirds-hero-cta a,
    .snowbirds-hero-cta button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .snowbirds-quote-form {
        padding: 28px 24px;
    }

    .snowbirds-form-row {
        grid-template-columns: 1fr;
    }

    .snowbirds-benefits {
        padding: 60px 0;
    }

    .snowbirds-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .snowbirds-benefit-card {
        padding: 28px 24px;
    }

    .snowbirds-why-ship {
        padding: 60px 0;
    }

    .snowbirds-process {
        padding: 60px 0;
    }

    .snowbirds-timeline {
        padding-left: 50px;
    }

    .snowbirds-timeline::before {
        left: 12px;
    }

    .snowbirds-timeline-step::before {
        left: -38px;
        width: 26px;
        height: 26px;
    }

    .snowbirds-timeline-step-number {
        left: -38px;
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .snowbirds-faq {
        padding: 60px 0;
    }

    .snowbirds-faq-question {
        padding: 20px;
    }

    .snowbirds-faq-question h4 {
        font-size: 15px;
    }

    .snowbirds-faq-answer {
        padding: 0 20px 20px;
    }

    .snowbirds-cta {
        padding: 60px 0;
    }

    .snowbirds-cta-buttons {
        flex-direction: column;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.snowbirds-hero-text > * {
    animation: fadeInUp 0.6s ease forwards;
}

.snowbirds-hero-badge { animation-delay: 0s; }
.snowbirds-hero h1 { animation-delay: 0.1s; }
.snowbirds-hero-subtitle { animation-delay: 0.2s; }
.snowbirds-hero-features { animation-delay: 0.3s; }
.snowbirds-hero-cta { animation-delay: 0.4s; }

.snowbirds-quote-form {
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

/* Hide old page styles */
.custom-privacy-policy-title,
.shipping-for-snowbirds-Container,
.shipping-for-snowbird-secondary-main-container,
.shipping-section2,
.shipping-featureseciton,
.services_faq_section {
    display: none !important;
}

/* ============================================
   CURRENCY TOGGLE
   ============================================ */

.currency-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.currency-toggle-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.currency-toggle-buttons {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
    gap: 4px;
}

.currency-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
}

.currency-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.currency-btn.active {
    background: #336DFF;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(51, 109, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .currency-toggle {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ============================================
   PRICING PAGE SPECIFIC STYLES
   ============================================ */

/* Pricing Overview Section */
.pricing-overview {
    background: linear-gradient(180deg, #0d1525 0%, #1a2a4a 100%);
    padding: 100px 0;
}

.pricing-overview-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing-overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.pricing-overview-text {
    max-width: 600px;
}

.pricing-overview-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 24px;
}

.pricing-lead {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 19px !important;
    font-weight: 500;
}

/* Pricing Highlights */
.pricing-highlights {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.pricing-highlight {
    background: rgba(51, 109, 255, 0.1);
    border: 1px solid rgba(51, 109, 255, 0.3);
    border-radius: 16px;
    padding: 24px;
    flex: 1;
}

.pricing-highlight-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pricing-highlight-value {
    display: block;
    color: #336DFF;
    font-size: 28px;
    font-weight: 700;
}

/* Pricing Table */
.pricing-table-wrapper {
    position: sticky;
    top: 120px;
}

.pricing-table {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.pricing-table-header {
    background: rgba(51, 109, 255, 0.15);
    padding: 20px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table-header span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.pricing-table-body {
    padding: 12px 0;
}

.pricing-table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-table-row:last-child {
    border-bottom: none;
}

.pricing-table-type {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.pricing-table-price {
    color: #336DFF;
    font-size: 15px;
    font-weight: 700;
}

.pricing-table-footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 16px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
    font-style: italic;
}

/* Pricing Factors Section */
.pricing-factors {
    background: #0a1628;
}

/* What's Included Section */
.pricing-included {
    background: linear-gradient(180deg, #1a2a4a 0%, #0d1525 100%);
    padding: 100px 0;
}

.pricing-included-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing-included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pricing-included-content h2 {
    color: #ffffff;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px;
}

.pricing-included-content h2 span {
    color: #336DFF;
}

.pricing-included-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 32px;
}

.pricing-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-included-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.pricing-included-list li svg {
    width: 24px;
    height: 24px;
    color: #336DFF;
    flex-shrink: 0;
    margin-top: 4px;
}

.pricing-included-list li div h4 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 4px;
}

.pricing-included-list li div p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.pricing-included-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.pricing-included-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.pricing-included-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(51, 109, 255, 0.1) 0%, transparent 50%);
    border-radius: 24px;
}

/* Pricing Page Responsive */
@media (max-width: 1024px) {
    .pricing-overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-overview-text {
        max-width: 100%;
    }

    .pricing-table-wrapper {
        position: relative;
        top: 0;
    }

    .pricing-included-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-included-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .pricing-overview {
        padding: 60px 0;
    }

    .pricing-highlights {
        flex-direction: column;
        gap: 16px;
    }

    .pricing-highlight {
        padding: 20px;
    }

    .pricing-highlight-value {
        font-size: 24px;
    }

    .pricing-included {
        padding: 60px 0;
    }
}

/* ============================================
   PRICING PAGE OVERRIDES
   Hide conflicting elements from other templates
   ============================================ */

/* Hide the gray snowbird background element */
.how-it-works-container {
    display: none !important;
}
