/* 90 Day coaching page css */
:root {
    --coaching-primary: #1A487C;
    --coaching-body: #F5F4F4;
    --coaching-white: #FFFFFF;
    --coaching-text: #333333;
    --coaching-light-gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--coaching-body);
    color: var(--coaching-text);
    line-height: 1.6;
}

.coaching-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.coaching-header {
    background: var(--coaching-white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.coaching-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--coaching-primary);
    text-decoration: none;
}

.coaching-hero {
    background: var(--coaching-white);
    padding: 80px 0;
    text-align: center;
}

.coaching-hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--coaching-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.coaching-hero .subhead {
    font-size: 1.4rem;
    color: var(--coaching-light-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coaching-btn-primary {
    background-color: var(--coaching-primary);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.coaching-btn-primary:hover {
    background-color: #0f3a66;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 72, 124, 0.3);
}

.coaching-btn-secondary {
    background-color: transparent;
    color: var(--coaching-primary);
    border: 2px solid var(--coaching-primary);
    padding: 13px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.coaching-btn-secondary:hover {
    background-color: var(--coaching-primary);
    color: white;
    transform: translateY(-2px);
}

.coaching-trust-badges {
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
}

.coaching-trust-item {
    text-align: center;
    padding: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.coaching-trust-item:hover {
    opacity: 1;
}

.coaching-trust-item i {
    font-size: 2.5rem;
    color: var(--coaching-primary);
    margin-bottom: 10px;
}

.coaching-section {
    padding: 20px 10px;
}

.coaching-section-white {
    background: var(--coaching-white);
}

.coaching-section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--coaching-primary);
    margin-bottom: 20px;
}

.coaching-section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--coaching-light-gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coaching-outcome-card {
    background: var(--coaching-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.coaching-outcome-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.coaching-outcome-icon {
    width: 80px;
    height: 80px;
    background: var(--coaching-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.coaching-outcome-icon i {
    font-size: 2rem;
    color: white;
}

.coaching-outcome-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--coaching-primary);
    margin-bottom: 15px;
}

.coaching-step-card {
    background: var(--coaching-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.coaching-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--coaching-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.coaching-testimonial-card {
    background: var(--coaching-white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.coaching-stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.coaching-testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.coaching-testimonial-author {
    display: flex;
    align-items: center;
}

.coaching-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--coaching-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 15px;
}

.coaching-form {
    background: var(--coaching-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.coaching-form-group {
    margin-bottom: 20px;
}

.coaching-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--coaching-primary);
}

.coaching-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.coaching-form-input:focus {
    outline: none;
    border-color: var(--coaching-primary);
}

.coaching-form-textarea {
    min-height: 100px;
    resize: vertical;
}

.coaching-accordion {
    background: var(--coaching-white);
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.coaching-accordion-header {
    background: var(--coaching-white);
    border: none;
    padding: 20px;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--coaching-primary);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.coaching-accordion-header:hover {
    background: #f8f9fa;
}

.coaching-accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.coaching-accordion-content.active {
    padding: 20px;
    max-height: 200px;
}

.coaching-bio {
    display: flex;
    align-items: center;
    background: var(--coaching-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.coaching-bio-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--coaching-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin-right: 30px;
    flex-shrink: 0;
}

.coaching-final-cta {
    background: var(--coaching-primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.coaching-final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.coaching-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.coaching-modal-content {
    background-color: var(--coaching-white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.coaching-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--coaching-light-gray);
}

.coaching-modal-close:hover {
    color: var(--coaching-primary);
}

@media (max-width: 768px) {
    .coaching-hero h1 {
        font-size: 2.5rem;
    }

    .coaching-hero .subhead {
        font-size: 1.2rem;
    }

    .coaching-section-title {
        font-size: 2.2rem;
    }

    .coaching-bio {
        flex-direction: column;
        text-align: center;
    }

    .coaching-bio-img {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Contact us page */
:root {
    --contact-primary: #1A487C;
    --contact-body-bg: #F5F4F4;
    --contact-white: #FFFFFF;
    --contact-text-dark: #2c3e50;
    --contact-text-muted: #6c757d;
    --contact-border: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: var(--contact-body-bg);
    color: var(--contact-text-dark);
    line-height: 1.6;
}

/* Hero Section */
.contact-hero-section {
    background: var(--contact-primary);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heroPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23heroPattern)"/></svg>');
    pointer-events: none;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--contact-white);
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* Main Section */
.contact-main-section {
    background: var(--contact-body-bg);
    padding: 80px 20px;
}

.contact-form-column,
.contact-sidebar-column {
    background: var(--contact-white);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(26, 72, 124, 0.08);
    border: 1px solid var(--contact-border);
    padding: 50px 40px;
}

/* Form Column */
.contact-form-column {
    min-height: 100%;
}

.contact-form-title {
    font-size: 2.5rem;
    color: var(--contact-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-form-subtitle {
    color: var(--contact-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-input-group {
    margin-bottom: 1.5rem;
}

.contact-input-label {
    font-weight: 600;
    color: var(--contact-primary);
    margin-bottom: 0.6rem;
    display: block;
}

.contact-input-field {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--contact-border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--contact-white);
}

.contact-input-field:focus {
    border-color: var(--contact-primary);
    box-shadow: 0 0 0 3px rgba(26, 72, 124, 0.15);
    outline: none;
}

.contact-submit-button {
    background: var(--contact-primary);
    color: var(--contact-white);
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-submit-button:hover {
    background: #0f3a66;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 72, 124, 0.3);
}

/* Sidebar */
.contact-sidebar-column {
    background: var(--contact-body-bg);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-height: 100%;
    padding-left: 15px;
    /* add inner gap */
    margin-left: 10px;
    /* add outer gap from form */
}


.contact-book-showcase,
.contact-social-section {
    background: var(--contact-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(26, 72, 124, 0.08);
    text-align: center;
    border: 1px solid var(--contact-border);
}

.contact-book-cover {
    width: 220px;
    height: 320px;
    border-radius: 12px;
    margin: 0 auto 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(26, 72, 124, 0.25);
}

.contact-book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-social-title {
    font-size: 1.8rem;
    color: var(--contact-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--contact-body-bg);
    color: var(--contact-primary);
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-social-link:hover {
    background: var(--contact-primary);
    color: var(--contact-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 72, 124, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-main-section {
        padding: 60px 15px;
    }

    .contact-form-column,
    .contact-sidebar-column {
        padding: 40px 30px;
        min-height: auto;
    }

    .contact-social-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-main-section {
        padding: 40px 10px;
    }

    .contact-form-column,
    .contact-sidebar-column {
        padding: 30px 20px;
    }
}

/* thank you contact page css */
:root {
    --thankyou-primary: #1A487C;
    --thankyou-body: #F5F4F4;
    --thankyou-white: #FFFFFF;
    --thankyou-text: #333333;
    --thankyou-light-text: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: var(--thankyou-body);
    color: var(--thankyou-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.thankyou-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
}

.thankyou-card {
    background: var(--thankyou-white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 72, 124, 0.1);
    overflow: hidden;
    max-width: 800px;
    width: 100%;
    margin: 0 1rem;
    position: relative;
    margin-top: 30px;
}

.thankyou-header {
    background: linear-gradient(135deg, var(--thankyou-primary) 0%, #2a5a8c 100%);
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.thankyou-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: var(--thankyou-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.thankyou-icon i {
    font-size: 2.5rem;
    color: var(--thankyou-primary);
    animation: thankyou-pulse 2s infinite;
}

@keyframes thankyou-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.thankyou-title {
    color: var(--thankyou-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.thankyou-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.thankyou-content {
    padding: 3rem 2rem;
    text-align: center;
}

.thankyou-image-container {
    margin-bottom: 2rem;
    position: relative;
}

.thankyou-image {
    width: 200px;
    height: 280px;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    border-radius: 15px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--thankyou-primary);
    position: relative;
    overflow: hidden;
}

.thankyou-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px dashed var(--thankyou-primary);
    border-radius: 10px;
    opacity: 0.3;
}

.thankyou-image i {
    font-size: 3rem;
    color: var(--thankyou-primary);
    opacity: 0.7;
}

.thankyou-message {
    font-size: 1.1rem;
    color: var(--thankyou-text);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-details {
    background: rgba(26, 72, 124, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--thankyou-primary);
}

.thankyou-details h4 {
    color: var(--thankyou-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.thankyou-details p {
    color: var(--thankyou-light-text);
    margin-bottom: 0.5rem;
}

.thankyou-button {
    background: var(--thankyou-primary);
    color: var(--thankyou-white);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(26, 72, 124, 0.3);
    margin-top: 1rem;
}

.thankyou-button:hover {
    background: #2a5a8c;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(26, 72, 124, 0.4);
    color: var(--thankyou-white);
}

.thankyou-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.thankyou-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(26, 72, 124, 0.1);
}

.thankyou-circle-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
    animation: thankyou-float 6s ease-in-out infinite;
}

.thankyou-circle-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 15%;
    animation: thankyou-float 8s ease-in-out infinite reverse;
}

.thankyou-circle-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 20%;
    animation: thankyou-float 7s ease-in-out infinite;
}

@keyframes thankyou-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@media (max-width: 768px) {
    .thankyou-title {
        font-size: 2rem;
    }

    .thankyou-subtitle {
        font-size: 1rem;
    }

    .thankyou-content {
        padding: 2rem 1.5rem;
    }

    .thankyou-image {
        width: 150px;
        height: 210px;
    }

    .thankyou-message {
        font-size: 1rem;
    }

    .thankyou-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .thankyou-header {
        padding: 2rem 1rem 1.5rem;
    }

    .thankyou-icon {
        width: 60px;
        height: 60px;
    }

    .thankyou-icon i {
        font-size: 2rem;
    }

    .thankyou-title {
        font-size: 1.8rem;
    }

    .thankyou-details {
        padding: 1.5rem;
    }
}