/*
Theme Name:     Divi Child - Birgit Bilde
Theme URI:      https://birgit-bilde.de
Description:    Custom Divi Child Theme for Birgit Bilde Kinesiologie & Energie-Psychologie
Author:         Aaron/Antigravity
Author URI:     https://birgit-bilde.de
Template:       Divi
Version:        1.0.0
Text Domain:    divi-child-birgit-bilde
*/

/* Design System & Styling - Birgit Bilde Click Dummy */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-lavender: #8e89c2;
    --primary-lavender-rgb: 142, 137, 194;
    --primary-dark-purple: #8871b1;
    --primary-dark-purple-rgb: 136, 113, 177;
    --accent-rose: #ac7a97;
    --accent-rose-rgb: 172, 122, 151;
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light: #fdfcff;
    --bg-alt: #f4f3f9;
    --white: #ffffff;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --box-shadow-premium: 0 15px 35px rgba(142, 137, 194, 0.12);
    --box-shadow-hover: 0 20px 40px rgba(136, 113, 177, 0.22);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }
.lead-paragraph {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-dark-purple);
    margin-bottom: 1rem;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-lavender);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark-purple);
}

/* Main Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(136, 113, 177, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 55px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.scrolled .brand-logo {
    height: 48px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
    opacity: 0.85;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher */
.lang-selector {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 0.9rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.2rem 0.4rem;
    transition: var(--transition-smooth);
    opacity: 0.6;
}

.lang-btn.active, .lang-btn:hover {
    opacity: 1;
}

.lang-divider {
    margin: 0 0.2rem;
}

/* Call to Action Button */
.cta-btn {
    text-decoration: none;
    background-color: var(--white);
    color: var(--primary-dark-purple);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.7rem 1.4rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.cta-btn:hover {
    background-color: var(--primary-lavender);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.scrolled .cta-btn {
    background-color: var(--white);
    color: var(--primary-dark-purple);
}

.scrolled .cta-btn:hover {
    background-color: var(--accent-rose);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    background-image: url('images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(136, 113, 177, 0.65), rgba(142, 137, 194, 0.55));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-text {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero-btn {
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
}

.hero-btn.primary {
    background-color: var(--white);
    color: var(--primary-dark-purple);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-btn.primary:hover {
    background-color: var(--primary-dark-purple);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(136, 113, 177, 0.3);
}

.hero-btn.secondary {
    border: 2px solid var(--white);
    color: var(--white);
    background-color: transparent;
}

.hero-btn.secondary:hover {
    background-color: var(--white);
    color: var(--primary-dark-purple);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.mouse-icon {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
}

.arrow-down {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: bounceArrow 1.5s infinite;
}

/* Sections General */
section {
    padding: 7rem 0;
}

.section-header-block {
    margin-bottom: 4rem;
}

.section-tag {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-lavender);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-dark-purple);
}

.heading-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark-purple), var(--primary-lavender));
    margin-top: 1rem;
    border-radius: 2px;
}

.heading-line.center {
    margin: 1rem auto 0 auto;
}

/* Grid Layouts */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.grid-2-col.align-center {
    align-items: center;
}

.grid-3-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
}

/* Einzelsitzungen Section */
.einzelsitzungen-section {
    background-color: var(--bg-light);
}

.image-column {
    position: relative;
}

.styled-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-premium);
    transition: var(--transition-smooth);
}

.styled-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.einzelsitzungen-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.styled-image-wrapper:hover .einzelsitzungen-img {
    scale: 1.03;
}

.image-card-accent {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: calc(var(--border-radius-md) - 5px);
    pointer-events: none;
}

.text-column p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.btn-more {
    background: linear-gradient(135deg, var(--primary-dark-purple), var(--primary-lavender));
    border: none;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(142, 137, 194, 0.25);
    transition: var(--transition-smooth);
}

.btn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(136, 113, 177, 0.35);
}

/* Quote Banner */
.quote-banner-section {
    background: linear-gradient(135deg, var(--primary-dark-purple), var(--accent-rose));
    padding: 6rem 2rem;
    color: var(--white);
    position: relative;
}

.quote-icon {
    font-size: 6rem;
    line-height: 1;
    font-family: Georgia, serif;
    opacity: 0.2;
    margin-bottom: -2rem;
}

.quote-text {
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.6;
}

.quote-author {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Leistungen Section */
.leistungen-section {
    background-color: var(--bg-alt);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-premium);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-img {
    scale: 1.05;
}

.service-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-content h3 {
    font-size: 1.4rem;
    color: var(--primary-dark-purple);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-card-btn {
    align-self: flex-start;
    background: none;
    border: 2px solid var(--primary-lavender);
    color: var(--primary-dark-purple);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.service-card-btn:hover {
    background-color: var(--primary-lavender);
    color: var(--white);
    border-color: var(--primary-lavender);
}

.btn-toggle-methods {
    background: var(--white);
    border: 2px solid var(--primary-dark-purple);
    color: var(--primary-dark-purple);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.2rem;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    box-shadow: var(--box-shadow-premium);
    transition: var(--transition-smooth);
}

.btn-toggle-methods:hover {
    background-color: var(--primary-dark-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

/* Collapsible Section */
.methods-collapse-section {
    padding: 0;
    background: linear-gradient(135deg, #7c67a3, #8f8ac2);
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease-out;
}

.methods-collapse-section.active {
    height: auto;
    opacity: 1;
    padding: 6rem 0;
}

.methods-inner-wrapper {
    transition: var(--transition-smooth);
}

.bg-white-line {
    background: var(--white);
}

.styled-methods-list {
    list-style: none;
}

.styled-methods-list li {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.styled-methods-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--white);
    opacity: 0.8;
}

.btn-close-methods {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-close-methods:hover {
    background: var(--white);
    color: var(--primary-dark-purple);
}

/* Über mich Section */
.ueber-mich-section {
    background-color: var(--bg-light);
}

.profile-image-frame {
    position: relative;
    max-width: 430px;
    margin: 0 auto;
}

.profile-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-premium);
    display: block;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.profile-image-frame:hover .profile-img {
    transform: translateY(-5px);
}

.frame-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-lavender);
    border-radius: var(--border-radius-md);
    z-index: 1;
    transition: var(--transition-smooth);
}

.profile-image-frame:hover .frame-border {
    transform: translate(-10px, -10px);
}

/* Kontakt Section */
.kontakt-section {
    background-color: var(--bg-alt);
}

.kontakt-intro-text {
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid #d5d3e0;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-lavender);
    box-shadow: 0 0 0 4px rgba(142, 137, 194, 0.25);
}

textarea.form-control {
    resize: vertical;
}

.error-msg {
    display: block;
    font-size: 0.85rem;
    color: #ed1c24;
    margin-top: 0.4rem;
    font-weight: 500;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-dark-purple), var(--primary-lavender));
    border: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(142, 137, 194, 0.25);
    transition: var(--transition-smooth);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(136, 113, 177, 0.35);
}

/* Contact Info Column */
.contact-info-column {
    display: flex;
    justify-content: flex-end;
}

.info-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 100%;
    min-height: 480px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-premium);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.info-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.info-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(136, 113, 177, 0.4), rgba(110, 89, 148, 0.9));
}

.info-card-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.info-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.info-text {
    font-size: 1rem;
    line-height: 1.5;
}

.info-text a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.info-text a:hover {
    color: var(--accent-rose);
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background-color: #3b3554;
    color: rgba(255, 255, 255, 0.85);
    padding: 5rem 0 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-lavender);
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 1.2rem;
}

.logo-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-lavender);
    padding-left: 5px;
}

.contact-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(59, 53, 84, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background-color: var(--white);
    width: 90%;
    max-width: 750px;
    max-height: 85vh;
    border-radius: var(--border-radius-md);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(50px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--bg-alt);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background-color: var(--primary-lavender);
    color: var(--white);
}

.modal-body {
    padding: 3rem;
    overflow-y: auto;
    flex-grow: 1;
}

.modal-body h2 {
    color: var(--primary-dark-purple);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    padding-right: 2.5rem;
}

.modal-body h3 {
    color: var(--primary-lavender);
    font-size: 1.3rem;
    margin: 1.8rem 0 0.8rem 0;
    font-weight: 700;
}

.modal-body p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.modal-body ul {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

/* Modal Content Graphics */
.modal-header-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollMouse {
    0% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 18px; }
    100% { opacity: 1; top: 6px; }
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(6px) rotate(45deg); }
}

/* Responsive Styling */
@media (max-width: 991px) {
    html { font-size: 15px; }
    .grid-3-col {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 480px;
        margin: 0 auto;
    }
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-info-column {
        justify-content: center;
    }
    .info-card-wrapper {
        min-height: 400px;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Mobile Toggle Base Style */
.mobile-toggle {
    display: none;
}
.mobile-toggle .bar {
    background-color: var(--white);
}
.scrolled .mobile-toggle .bar {
    background-color: var(--white);
}

@media (max-width: 768px) {
    /* Mobile Header Layout */
    .header-container {
        padding: 0.8rem 1.5rem;
    }
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 19px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1100;
    }
    .mobile-toggle .bar {
        width: 100%;
        height: 3px;
        background-color: var(--white);
        border-radius: 2px;
        transition: var(--transition-smooth);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: #4b4468;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        padding: 2rem;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .cta-btn {
        display: none; /* Hide top CTA in mobile header to fit layout, keep mobile version inside menu or hero */
    }
    
    .hero-cta-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .hero-btn {
        width: 100%;
        max-width: 280px;
    }
    .modal-body {
        padding: 2rem;
    }
}

