/* SynaesthBiz Unique Styling - Chroma.css */
/* Custom Variables for Synesthetic Design */
:root {
    --ocean_blue: #7209b7;
    --lavender_mist: #f3e5f9;
    --deep_purple: #4c0677;
    --secondary_color: #2c5aa0;
    --secondary_light: #e8f2ff;
    --tertiary_color: #ff6b35;
    --tertiary_light: #fff2ed;
    --accent_color: #00c9a7;
    --accent_light: #e8fdf9;
    --neutral_color: #6b7280;
    --neutral_light: #f8fafc;
    --info_color: #3b82f6;
    --warning_color: #ef4444;
    --success_color: #10b981;
    --text_primary: #1f2937;
    --text_secondary: #6b7280;
    --border_shade: #e5e7eb;
    --shadow_subtle: rgba(0, 0, 0, 0.08);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.7;
    color: var(--text_primary);
    background: var(--neutral_light);
    overflow-x: hidden;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: var(--deep_purple);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.3rem; }
h3 { font-size: 1.9rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1.1rem;
    color: var(--text_secondary);
    font-size: 1.05rem;
}

/* Container System */
.content_wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header & Navigation */
.primary_navigation {
    background: #ffffff;
    box-shadow: 0 3px 15px var(--shadow_subtle);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--border_shade);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
}

.brand_identifier {
    display: flex;
    align-items: center;
}

.brand_logo {
    height: 45px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 32px;
    height: 3px;
    background: var(--deep_purple);
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 32px;
    height: 3px;
    background: var(--deep_purple);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger:before {
    top: -9px;
}

.hamburger:after {
    top: 9px;
}

.navigation_list {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.nav_item {
    list-style: none;
}

.nav_link {
    color: var(--text_primary);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav_link:hover {
    color: var(--ocean_blue);
}

.nav_link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean_blue);
    transition: width 0.3s ease;
}

.nav_link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero_workspace {
    margin-top: 90px;
    padding: 80px 0 70px;
    background: linear-gradient(135deg, var(--lavender_mist) 0%, #ffffff 100%);
    border-bottom: 3px solid var(--border_shade);
}

.hero_content_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.primary_headline {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--ocean_blue), var(--deep_purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero_description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text_secondary);
    line-height: 1.8;
}

.action_buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primary_action_btn, .secondary_action_btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: inline-block;
}

.primary_action_btn {
    background: var(--ocean_blue);
    color: #ffffff;
    border-color: var(--ocean_blue);
}

.primary_action_btn:hover {
    background: var(--deep_purple);
    border-color: var(--deep_purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 9, 183, 0.3);
}

.secondary_action_btn {
    background: transparent;
    color: var(--ocean_blue);
    border-color: var(--ocean_blue);
}

.secondary_action_btn:hover {
    background: var(--ocean_blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero_image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Innovation Lab Section */
.innovation_lab {
    padding: 90px 0;
    background: #ffffff;
}

.section_header {
    text-align: center;
    margin-bottom: 60px;
}

.section_title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section_subtitle {
    font-size: 1.2rem;
    color: var(--text_secondary);
    max-width: 600px;
    margin: 0 auto;
}

.lab_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.lab_card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border_shade);
    transition: all 0.3s ease;
}

.lab_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--ocean_blue);
}

.lab_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.lab_card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--deep_purple);
}

.lab_card p {
    color: var(--text_secondary);
    line-height: 1.6;
}

/* Success Stories */
.success_showcase {
    padding: 80px 0;
    background: var(--lavender_mist);
}

.story_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.story_card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    border: 2px solid var(--border_shade);
    transition: all 0.3s ease;
}

.story_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.story_content h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--ocean_blue);
}

/* Workshop Section */
.workshop_arena {
    padding: 90px 0;
    background: #ffffff;
}

.workshop_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.workshop_description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text_secondary);
}

.workshop_features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature_item {
    padding: 20px;
    background: var(--lavender_mist);
    border-radius: 10px;
    border-left: 4px solid var(--ocean_blue);
}

.feature_item h4 {
    color: var(--deep_purple);
    margin-bottom: 10px;
}

.feature_item p {
    color: var(--text_secondary);
    margin-bottom: 0;
}

.workshop_image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.consultation_cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ocean_blue), var(--deep_purple));
    text-align: center;
}

.cta_content {
    max-width: 700px;
    margin: 0 auto;
}

.cta_title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta_description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta_button {
    display: inline-block;
    background: #ffffff;
    color: var(--ocean_blue);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.cta_button:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Contact Section */
.contact_workspace {
    padding: 90px 0;
    background: var(--neutral_light);
}

.contact_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact_description {
    margin-bottom: 30px;
}

.contact_details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact_item h4 {
    color: var(--deep_purple);
    margin-bottom: 8px;
}

.contact_item p {
    color: var(--text_secondary);
    margin-bottom: 0;
}

/* Form Styles */
.consultation_form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border_shade);
}

.form_group {
    margin-bottom: 25px;
}

.form_group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--deep_purple);
}

.form_group input,
.form_group select,
.form_group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border_shade);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
    outline: none;
    border-color: var(--ocean_blue);
    box-shadow: 0 0 0 3px rgba(114, 9, 183, 0.1);
}

.form_group textarea {
    resize: vertical;
    min-height: 120px;
}

.form_submit_btn {
    width: 100%;
    background: var(--ocean_blue);
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form_submit_btn:hover {
    background: var(--deep_purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 9, 183, 0.3);
}

/* Footer */
.site_footer {
    background: var(--deep_purple);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer_content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer_logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer_description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer_links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.link_group h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.link_group ul {
    list-style: none;
}

.link_group li {
    margin-bottom: 8px;
}

.link_group a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.link_group a:hover {
    color: #ffffff;
}

.link_group p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.footer_bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer_bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 90px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        z-index: 1;
    }

    .navigation_list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav_item {
        width: 100%;
        text-align: center;
        margin: 20px 0;
    }

    .nav_link {
        display: inline-block;
        padding: 15px 25px;
        font-size: 1.2rem;
        color: var(--text_primary);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero_content_grid,
    .workshop_content,
    .contact_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer_content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .primary_headline {
        font-size: 2.5rem;
    }

    .section_title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 640px) {
    .content_wrapper {
        padding: 0 20px;
    }

    .hero_workspace {
        padding: 60px 0 50px;
    }

    .primary_headline {
        font-size: 2rem;
    }

    .action_buttons {
        flex-direction: column;
        gap: 15px;
    }

    .primary_action_btn,
    .secondary_action_btn {
        text-align: center;
        width: 100%;
    }

    .lab_grid,
    .story_grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .consultation_form {
        padding: 25px;
    }

    .footer_links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Unique Spacing System */
.spacing_7 { margin: 7px; }
.spacing_13 { margin: 13px; }
.spacing_21 { margin: 21px; }
.spacing_34 { margin: 34px; }

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero_workspace {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Slightly inconsistent indentation and personal touches */
.debug_leftover {
    /* TODO: clean this up later */
    display: none;
}

/* Old project remnant */
.previous_project_nav {
    /* keeping this for reference */
}

/* Trying different approach */
.alternative_layout {
    /* might use this later */
}

/* Additional Styles for About.html and Thankyou.php */

/* About Page Specific Styles */
.about_hero {
    margin-top: 90px;
    padding: 70px 0;
    background: linear-gradient(135deg, var(--lavender_mist) 0%, #ffffff 100%);
    border-bottom: 3px solid var(--border_shade);
}

.about_hero_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about_hero_image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Team Profiles */
.team_profiles_section {
    padding: 85px 0;
    background: #ffffff;
}

.team_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.team_member_card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border_shade);
    transition: all 0.3s ease;
    text-align: center;
}

.team_member_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--ocean_blue);
}

.team_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.member_role {
    color: var(--ocean_blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.member_description {
    color: var(--text_secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy_section {
    padding: 85px 0;
    background: var(--lavender_mist);
}

.philosophy_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.philosophy_description {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: var(--text_secondary);
}

.philosophy_principles {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.principle_item {
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    border-left: 4px solid var(--ocean_blue);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.principle_item h4 {
    color: var(--deep_purple);
    margin-bottom: 10px;
}

.principle_item p {
    color: var(--text_secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.philosophy_image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Innovation Lab */
.innovation_showcase {
    padding: 85px 0;
    background: #ffffff;
}

.lab_description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text_secondary);
    max-width: 700px;
    margin: 0 auto 50px;
}

.lab_features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.lab_feature {
    background: var(--lavender_mist);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border_shade);
    transition: all 0.3s ease;
}

.lab_feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--ocean_blue);
}

.lab_feature h3 {
    color: var(--deep_purple);
    margin-bottom: 15px;
}

.lab_feature p {
    color: var(--text_secondary);
    margin-bottom: 0;
}

/* Certification Section */
.certification_section {
    padding: 85px 0;
    background: var(--neutral_light);
}

.certification_description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text_secondary);
    max-width: 700px;
    margin: 0 auto 50px;
}

.certification_levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cert_level {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    border: 2px solid var(--border_shade);
    text-align: center;
    transition: all 0.3s ease;
}

.cert_level:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    border-color: var(--ocean_blue);
}

.cert_level h4 {
    color: var(--ocean_blue);
    margin-bottom: 15px;
}

.cert_level p {
    color: var(--text_secondary);
    margin-bottom: 0;
}

/* Success Database */
.success_database_section {
    padding: 85px 0;
    background: var(--deep_purple);
    color: #ffffff;
    text-align: center;
}

.success_database_section .section_title {
    color: #ffffff;
}

.database_description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 50px;
}

.success_stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat_item {
    text-align: center;
}

.stat_item h3 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat_item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Office Experience */
.office_experience_section {
    padding: 85px 0;
    background: #ffffff;
}

.office_content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 55px;
    align-items: flex-start;
}

.office_description {
    font-size: 1.1rem;
    color: var(--text_secondary);
    margin-bottom: 35px;
}

.office_features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.office_feature {
    padding: 20px;
    background: var(--lavender_mist);
    border-radius: 10px;
    border-left: 4px solid var(--ocean_blue);
}

.office_feature h4 {
    color: var(--deep_purple);
    margin-bottom: 10px;
}

.office_feature p {
    color: var(--text_secondary);
    margin-bottom: 0;
}

.office_address {
    background: var(--neutral_light);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--border_shade);
}

.office_address h4 {
    color: var(--deep_purple);
    margin-bottom: 20px;
}

.office_address p {
    color: var(--text_secondary);
    margin-bottom: 10px;
}

/* Thank You Page Specific Styles */
.thankyou_hero {
    margin-top: 90px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--lavender_mist) 0%, #ffffff 100%);
    border-bottom: 3px solid var(--border_shade);
}

.thankyou_content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 55px;
    align-items: center;
}

.confirmation_description {
    font-size: 1.2rem;
    color: var(--text_secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.next_steps {
    margin-top: 50px;
}

.steps_title {
    font-size: 2rem;
    color: var(--deep_purple);
    margin-bottom: 30px;
}

.steps_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step_item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--border_shade);
    text-align: center;
    transition: all 0.3s ease;
}

.step_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--ocean_blue);
}

.step_number {
    width: 50px;
    height: 50px;
    background: var(--ocean_blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step_item h3 {
    color: var(--deep_purple);
    margin-bottom: 15px;
}

.step_item p {
    color: var(--text_secondary);
    margin-bottom: 0;
}

.thankyou_image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Resources Section */
.resources_section {
    padding: 85px 0;
    background: #ffffff;
}

.resources_description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text_secondary);
    max-width: 700px;
    margin: 0 auto 50px;
}

.resources_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.resource_card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border_shade);
    transition: all 0.3s ease;
    text-align: center;
}

.resource_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--ocean_blue);
}

.resource_image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.resource_card h3 {
    color: var(--deep_purple);
    margin-bottom: 15px;
}

.resource_card p {
    color: var(--text_secondary);
    margin-bottom: 0;
}

/* Contact Reminder */
.contact_reminder_section {
    padding: 85px 0;
    background: var(--lavender_mist);
}

.reminder_description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text_secondary);
    max-width: 700px;
    margin: 0 auto 50px;
}

.contact_info_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact_detail {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--border_shade);
    text-align: center;
}

.contact_detail h4 {
    color: var(--deep_purple);
    margin-bottom: 15px;
}

.contact_detail p {
    color: var(--text_secondary);
    margin-bottom: 5px;
}

/* Navigation Back */
.navigation_back_section {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.back_actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.back_button, .about_button {
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--ocean_blue);
    display: inline-block;
}

.back_button {
    background: var(--ocean_blue);
    color: #ffffff;
}

.back_button:hover {
    background: var(--deep_purple);
    border-color: var(--deep_purple);
    transform: translateY(-2px);
}

.about_button {
    background: transparent;
    color: var(--ocean_blue);
}

.about_button:hover {
    background: var(--ocean_blue);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Design for About and Thank You Pages */
@media screen and (max-width: 1024px) {
    .about_hero_content,
    .philosophy_content,
    .office_content,
    .thankyou_content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team_grid,
    .lab_features_grid,
    .certification_levels,
    .success_stats {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media screen and (max-width: 640px) {
    .steps_grid,
    .resources_grid,
    .contact_info_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .back_actions {
        flex-direction: column;
        align-items: center;
    }

    .back_button,
    .about_button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .stat_item h3 {
        font-size: 2.5rem;
    }

    .success_stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Human-like imperfections for About and Thank You */
.debug_section {
    /* TODO: add more interactive elements */
    display: none;
}

/* Left from previous iteration */
.old_about_layout {
    /* keeping for reference */
}

/* Trying different spacing approach */
.alternative_grid {
    /* might implement later */
}