/* ===================================
   CONSULTATION PAGE STYLES
   =================================== */

:root {
    --navy: #0A1628;
    --navy-light: #1a2942;
    --teal: #14B8A6;
    --teal-light: #2DD4BF;
    --gold: #D4AF37;
    --gold-light: #F0E68C;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #495057;
}

/* ===================================
   HERO SECTION
   =================================== */

.consult-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, #0d1f3a 100%);
    overflow: hidden;
    padding: 140px 20px 80px;
}

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

.animated-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: rgba(212, 175, 55, 0.08);
    animation-delay: 7s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(20, 184, 166, 0.05);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Stats counter animation effects */
.stat-number.animating {
    color: #4FD1C5;
    transform: scale(1.08);
    text-shadow: 0 0 20px rgba(79, 209, 197, 0.5);
}

.stat-number.animated {
    animation: statPulse 0.6s ease;
}

@keyframes statPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
        color: #FFD700;
    }
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   TRACK SELECTOR
   =================================== */

.track-selector {
    padding: 100px 20px;
    background: var(--white);
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.track-toggle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.toggle-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--light-gray);
    color: var(--navy);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-btn i {
    font-size: 1.3rem;
}

.toggle-btn:hover {
    background: var(--medium-gray);
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.track-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.track-content.active {
    display: block;
}

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

.track-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--medium-gray);
}

.track-icon {
    text-align: center;
    margin-bottom: 30px;
}

.track-icon i {
    font-size: 4rem;
    color: var(--teal);
}

.track-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--navy);
    text-align: center;
    margin-bottom: 10px;
}

.track-for {
    text-align: center;
    font-size: 1.15rem;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 50px;
}

.track-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
}

.detail-section h4 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section h4 i {
    color: var(--teal);
    font-size: 1.1rem;
}

.detail-section ul {
    list-style: none;
    padding: 0;
}

.detail-section ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.7;
    color: var(--dark-gray);
}

.detail-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
}

.price-note {
    font-size: 1rem;
    color: var(--dark-gray);
}

.price-includes {
    text-align: center;
    color: var(--teal);
    font-weight: 600;
    margin-top: 15px;
}

.track-info .cta-button {
    margin-top: 40px;
    display: block;
    text-align: center;
}

/* ===================================
   OUTCOMES SECTION
   =================================== */

.outcomes-section {
    padding: 100px 20px;
    background: var(--light-gray);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.outcome-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.outcome-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.outcome-icon i {
    font-size: 2rem;
    color: var(--white);
}

.outcome-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.outcome-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials-section {
    padding: 100px 20px;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 15px;
    border-left: 4px solid var(--teal);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

/* Stagger floating animation for each card */
.testimonial-card:nth-child(1) {
    animation-delay: 0s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 4s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    animation-play-state: paused;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--navy);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--navy);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* ===================================
   BOOKING SECTION
   =================================== */

.booking-section {
    padding: 100px 20px;
    background: var(--light-gray);
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.calendly-placeholder {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    border-radius: 15px;
    border: 2px dashed var(--teal);
}

.calendly-notice i {
    font-size: 4rem;
    color: var(--teal);
    margin-bottom: 20px;
}

.calendly-notice h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.calendly-notice p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.calendly-instructions {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    max-width: 700px;
    margin: 30px auto 0;
}

.calendly-instructions h4 {
    color: var(--navy);
    margin-bottom: 15px;
}

.calendly-instructions ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.calendly-instructions li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.calendly-instructions ul {
    margin-left: 20px;
    margin-top: 8px;
}

.calendly-setup-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--teal);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.calendly-setup-btn:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
}

.booking-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.note-item {
    text-align: center;
    padding: 25px;
}

.note-item i {
    font-size: 2.5rem;
    color: var(--teal);
    margin-bottom: 15px;
    display: block;
}

.note-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.note-item strong {
    color: var(--navy);
}

/* ===================================
   CORPORATE INQUIRY FORM
   =================================== */

.corporate-inquiry-section {
    padding: 100px 20px;
    background: var(--white);
}

.inquiry-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.corporate-inquiry-form {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 20px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-group label i {
    color: var(--teal);
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-actions {
    text-align: center;
    margin-top: 35px;
}

.form-note {
    margin-top: 20px;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.form-note i {
    color: var(--teal);
    margin-right: 5px;
}

.inquiry-success-message {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    border-radius: 20px;
    color: var(--white);
}

.inquiry-success-message i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.inquiry-success-message h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.inquiry-success-message p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===================================
   TRUST SECTION
   =================================== */

.trust-section {
    padding: 80px 20px;
    background: var(--navy);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-header i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.trust-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 15px;
    border-left: 4px solid var(--teal);
}

.trust-item h4 {
    color: var(--teal);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: 100px 20px;
    background: var(--light-gray);
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question i {
    color: var(--teal);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--light-gray);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    color: var(--dark-gray);
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--navy);
}

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

.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, #0d1f3a 100%);
    text-align: center;
}

.final-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.final-cta-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.final-cta-note i {
    color: var(--gold);
    margin-right: 8px;
}

/* ===================================
   CTA BUTTONS
   =================================== */

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.cta-button i {
    margin-right: 10px;
}

.primary-cta {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(20, 184, 166, 0.4);
}

.secondary-cta {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.secondary-cta:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .track-toggle {
        flex-direction: column;
        align-items: center;
    }

    .toggle-btn {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }

    .track-card {
        padding: 40px 30px;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .booking-notes {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .consult-hero {
        padding: 120px 20px 60px;
        min-height: 60vh;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .track-card {
        padding: 30px 20px;
    }

    .track-info h3 {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .booking-container,
    .corporate-inquiry-form {
        padding: 30px 20px;
    }

    .final-cta-content h2 {
        font-size: 2.2rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .track-info h3 {
        font-size: 1.6rem;
    }

    .outcome-card,
    .testimonial-card,
    .trust-item {
        padding: 25px 20px;
    }

    .calendly-placeholder {
        padding: 40px 20px;
    }
}