/* style.css */

/* --- CSS Variables --- */
:root {
    --primary-color: #17A2B8; /* Teal/Blue - Info Blue */
    --secondary-color: #FD7E14; /* Orange */
    --accent-color: #6F42C1; /* Purple */
    --success-color: #28A745; /* Green */
    --danger-color: #DC3545; /* Red */

    --text-color: #212529; /* Darkest Gray - for primary text */
    --text-color-secondary: #495057; /* Medium Gray - for secondary text */
    --text-light-color: #F8F9FA; /* Off-White */
    --text-on-primary: #FFFFFF;
    --text-on-secondary: #FFFFFF;

    --bg-color: #FFFFFF;
    --bg-light-gray: #F1F3F5; /* For slightly off-white sections */
    --bg-dark-section: #2C3E50; /* For dark sections if needed */

    --glass-bg-light: rgba(255, 255, 255, 0.6);
    --glass-blur: 8px;
    --glass-border-light: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);

    --volumetric-shadow-light: 3px 3px 6px #b8b9be, -3px -3px 6px #ffffff; /* Neumorphic light */
    --volumetric-shadow-dark-inset: inset 2px 2px 5px #b8b9be, inset -2px -2px 5px #ffffff; /* Neumorphic dark inset */
    --volumetric-button-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    --volumetric-button-shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.15);
    --volumetric-button-shadow-active: inset 0 2px 4px rgba(0,0,0,0.1);


    --font-heading: 'Archivo Black', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --border-radius-main: 15px;
    --border-radius-small: 10px;
    --transition-speed: 0.3s ease-in-out;
    --container-max-width: 1200px;
    --header-height: 80px;
}

/* --- Basic Reset & Body Styles --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-color); /* Darker color for titles by default */
    line-height: 1.3;
    margin-bottom: 0.75em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Subtle shadow for definition */
}

h1 { font-size: 2.8rem; margin-bottom: 1rem;}
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1.25rem;
    color: var(--text-color-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Container & Layout Utilities --- */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #222222; /* Extra dark for section titles */
}
.section-intro {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--text-color-secondary);
}

/* For sections with specific background colors */
.glassmorphic-section {
    background-color: var(--bg-light-gray); /* Or a subtle gradient */
}

/* --- Global Component Styles --- */

/* Buttons */
.btn, button[type="submit"] { /* Keep button[type="submit"] for direct form buttons */
    display: inline-block;
    font-family: var(--font-body);
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem; /* Generous padding */
    font-size: 1rem;
    border-radius: var(--border-radius-small);
    transition: all var(--transition-speed);
    text-decoration: none;
    line-height: 1.5; /* Ensure text is vertically centered */
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: color-mix(in srgb, var(--primary-color) 90%, black);
    border-color: color-mix(in srgb, var(--primary-color) 90%, black);
    color: var(--text-on-primary);
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-on-secondary);
    border-color: var(--secondary-color);
}
.btn-secondary:hover {
    background-color: color-mix(in srgb, var(--secondary-color) 90%, black);
    border-color: color-mix(in srgb, var(--secondary-color) 90%, black);
    color: var(--text-on-secondary);
    text-decoration: none;
}

/* Volumetric Button Style */
.volumetric-button {
    box-shadow: var(--volumetric-button-shadow);
    position: relative;
    top: 0;
}
.volumetric-button:hover {
    box-shadow: var(--volumetric-button-shadow-hover);
    top: -2px; /* Slight lift effect */
}
.volumetric-button:active {
    box-shadow: var(--volumetric-button-shadow-active);
    top: 1px;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-color);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius-small);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
    background-color: #fff; /* Ensure inputs are not transparent by default */
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="password"]:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25); /* Primary color glow */
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
/* Volumetric Form Elements */
.volumetric-form input[type="text"],
.volumetric-form input[type="email"],
.volumetric-form input[type="tel"],
.volumetric-form textarea {
    background-color: var(--bg-light-gray);
    box-shadow: var(--volumetric-shadow-dark-inset);
    border: 1px solid transparent; /* Remove default border for neumorphic look */
}
.volumetric-form input[type="text"]:focus,
.volumetric-form input[type="email"]:focus,
.volumetric-form input[type="tel"]:focus,
.volumetric-form textarea:focus {
    box-shadow: var(--volumetric-shadow-dark-inset), 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
    border-color: transparent; /* Keep border transparent */
}


/* Cards Base */
.card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
    /* align-items: center; /* This will center image-container and card-content if they are not full width */
    /* text-align: center; Let content align itself, or card-content can handle it */
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-image, .image-container { /* The div wrapping the img */
    width: 100%;
    height: 220px; /* Consistent height for card images */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-light-gray); /* Placeholder bg */
}
.card-image img, .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1; /* Allows content to fill remaining space */
    /* text-align: left; /* Default text alignment */
}
.card-content h3 {
    margin-top: 0;
    color: var(--primary-color);
}
.card-content p:last-child {
    margin-bottom: 0;
}

/* Glassmorphic Card Style */
.glassmorphic-card {
    background: var(--glass-bg-light);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border-light);
    box-shadow: var(--glass-shadow);
    color: var(--text-color); /* Ensure text is readable on light glass */
}
.glassmorphic-card .card-content h3,
.glassmorphic-card .card-content p,
.glassmorphic-card .card-content a,
.glassmorphic-card .resource-title a,
.glassmorphic-card .resource-description {
    color: var(--text-color); /* Dark text for light glass */
}
.glassmorphic-card .resource-title a:hover {
    color: var(--secondary-color);
}

/* --- Header & Navigation --- */
.site-header {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}
.main-navigation .nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.main-navigation .nav-list li {
    margin-left: 25px;
}
.main-navigation .nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-speed);
}
.main-navigation .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width var(--transition-speed);
}
.main-navigation .nav-list a:hover,
.main-navigation .nav-list a.active {
    color: var(--secondary-color);
}
.main-navigation .nav-list a:hover::after,
.main-navigation .nav-list a.active::after {
    width: 100%;
}

/* Hamburger Menu */
.menu-toggle {
    display: none; /* Hidden by default on larger screens */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Above nav list */
}
.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    position: relative;
    transition: background-color 0s 0.3s; /* Delay hiding the middle bar */
}
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    position: absolute;
    left: 0;
    transition: transform var(--transition-speed), top var(--transition-speed) 0.3s;
}
.hamburger::before {
    top: -8px;
}
.hamburger::after {
    top: 8px;
}

/* Active Hamburger State (when menu is open) */
.menu-toggle.active .hamburger {
    background-color: transparent; /* Middle bar disappears */
}
.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}


/* --- Section-Specific Styles --- */

/* Hero Section */
.hero-section {
    /* min-height: calc(100vh - var(--header-height)); */ /* Removed fixed min-height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light-color);
    padding: 120px 0 80px; /* Added padding top and bottom for content */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-title {
    font-size: 3.5rem;
    color: var(--text-light-color); /* Explicitly white as requested */
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light-color); /* Explicitly white as requested */
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}
.hero-cta {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Contact Form Top */
#contact-form-top.contact-form-section {
    background-color: var(--bg-light-gray);
    padding-top: calc(var(--header-height) + 40px); /* Adjust for fixed header */
}
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-main);
    box-shadow: var(--glass-shadow);
}
#contact-form-top.glassmorphic-section .contact-form {
    background: var(--glass-bg-light);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border-light);
}
#contact-form-top.glassmorphic-section .contact-form label,
#contact-form-top.glassmorphic-section .contact-form input,
#contact-form-top.glassmorphic-section .contact-form textarea {
    color: var(--text-color); /* Ensure readability on glass */
}
#contact-form-top.glassmorphic-section .volumetric-form input,
#contact-form-top.glassmorphic-section .volumetric-form textarea {
    background-color: rgba(255,255,255,0.5); /* Lighter background for inputs on glass */
    box-shadow: var(--volumetric-shadow-dark-inset);
}


/* External Resources Section */
.external-resources-section {
    background-color: var(--bg-color); /* Or var(--bg-light-gray) */
}
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.resource-card .resource-title a {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.3rem;
}
.resource-card .resource-description {
    font-size: 0.95rem;
    color: var(--text-color-secondary);
    margin-top: 0.5rem;
}

/* Vision Section */
.vision-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}
.vision-image-container img {
    border-radius: var(--border-radius-main);
    box-shadow: var(--glass-shadow);
}
.stats-widgets-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.stat-widget {
    padding: 1.5rem;
    text-align: center;
    border-radius: var(--border-radius-main);
}
.stat-widget.glassmorphic-widget { /* Styles for glassmorphic stats */
    background: var(--glass-bg-light);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border-light);
    box-shadow: var(--glass-shadow);
}
.stat-number {
    display: block;
    font-size: 2.8rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.stat-description {
    font-size: 1rem;
    color: var(--text-color-secondary);
    margin-bottom: 0;
}
.glassmorphic-widget .stat-number, .glassmorphic-widget .stat-description {
    color: var(--text-color);
}

/* Our Process Section */
.process-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.process-step {
    text-align: center; /* Center icon and content within the card */
}
.step-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto; /* Center the icon container */
    font-size: 1.8rem;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(23, 162, 184, 0.4);
}
.process-step .card-content {
    text-align: center; /* Ensure content within card is centered */
}
.process-step h3 {
    color: var(--accent-color);
}
.process-image-container {
    text-align: center; /* Centers the image if it's not full width */
    margin-top: 2rem;
}
.process-image-container img {
    border-radius: var(--border-radius-main);
    box-shadow: var(--glass-shadow);
    max-width: 100%;
}


/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch; /* Make cards same height */
}
.pricing-card {
    display: flex;
    flex-direction: column; /* Ensure button is at bottom */
    text-align: center;
    padding-top: 1rem; /* Extra space for popular badge */
}
.pricing-card .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes button to bottom */
}
.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
}
.pricing-card .price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin: 1rem 0;
}
.pricing-card .price-term {
    font-size: 1rem;
    color: var(--text-color-secondary);
    font-family: var(--font-body);
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}
.pricing-card ul li {
    margin-bottom: 0.75rem;
    padding-left: 25px;
    position: relative;
}
.pricing-card ul li::before {
    content: '✓';
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.pricing-card .btn {
    margin-top: auto; /* Pushes button to bottom of card-content */
    width: 100%;
}
.pricing-card.popular {
    border: 2px solid var(--secondary-color);
    position: relative;
    transform: scale(1.03); /* Slightly larger */
}
.popular-badge {
    position: absolute;
    top: -15px; /* Position above the card */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--text-on-secondary);
    padding: 0.3rem 1rem;
    border-radius: var(--border-radius-small);
    font-size: 0.9rem;
    font-weight: bold;
}

/* Workshops Section */
.workshops-slider-container { /* Basic styling for slider items */
    display: grid; /* Or flex, if JS handles sliding */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.workshop-item .card-content .workshop-date {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.workshop-item .open-modal-button {
    margin-top: 1rem;
    width: 100%;
}
.workshops-main-image {
    margin-top: 2rem;
    text-align: center;
}
.workshops-main-image img {
    border-radius: var(--border-radius-main);
    box-shadow: var(--glass-shadow);
}


/* Success Stories Section */
.testimonials-slider-container { /* Basic styling for slider items */
    display: grid; /* Or flex, if JS handles sliding */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    text-align: center;
}
.testimonial-card .image-container { /* For avatar */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem auto; /* Center the avatar */
    border: 3px solid var(--primary-color);
}
.testimonial-card .image-container img {
    border-radius: 50%;
}
.testimonial-card p {
    font-style: italic;
    color: var(--text-color-secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.testimonial-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0;
}
.success-stats {
    margin-top: 3rem;
}

/* Clientele Section */
.clientele-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.clientele-item .card-content h3 {
    color: var(--primary-color);
    text-align: center;
}
.clientele-item .card-content p {
    text-align: center;
}
.clientele-main-image {
    margin-top: 2rem;
    text-align: center;
}
.clientele-main-image img {
     border-radius: var(--border-radius-main);
     box-shadow: var(--glass-shadow);
}


/* Partners Section */
.partners-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}
.partner-logo-item {
    padding: 1.5rem;
    border-radius: var(--border-radius-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px; /* Ensure logos are not too squished */
    text-align: center;
}
.partner-logo-item img {
    max-height: 60px; /* Control logo height */
    width: auto;
    margin-bottom: 0.75rem;
    filter: grayscale(50%); /* Subtle effect, remove if full color preferred */
    transition: filter var(--transition-speed);
}
.partner-logo-item:hover img {
    filter: grayscale(0%);
}
.partner-logo-item p {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--text-color-secondary);
    margin-bottom: 0;
}
.glassmorphic-logo-card { /* Specific styling for glassmorphic partner cards */
    background: var(--glass-bg-light);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border-light);
    box-shadow: var(--glass-shadow);
}
.glassmorphic-logo-card p {
    color: var(--text-color);
}

/* --- Modal Styles --- */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6); /* Dimmed background */
    animation: fadeIn 0.3s ease-out;
}
.modal-content {
    position: relative;
    margin: 10% auto; /* Vertically centered */
    padding: 2.5rem;
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius-main);
    animation: slideIn 0.4s ease-out;
}
.modal-content.glassmorphic-modal {
    background: var(--glass-bg-light);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border-light);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    color: var(--text-color);
}
.glassmorphic-modal h2, .glassmorphic-modal p, .glassmorphic-modal strong {
    color: var(--text-color);
}
.close-modal-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    transition: color var(--transition-speed);
}
.close-modal-button:hover,
.close-modal-button:focus {
    color: var(--danger-color);
    text-decoration: none;
    cursor: pointer;
}
.modal-form {
    margin-top: 1.5rem;
}
.modal-form p {
    margin-bottom: 0.5rem;
}

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

/* --- Footer Styles --- */
.site-footer {
    background-color: var(--bg-dark-section);
    color: var(--text-light-color);
    padding-top: 50px;
    padding-bottom: 20px;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 30px;
}
.footer-column h4 {
    font-family: var(--font-heading);
    color: var(--text-light-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.footer-column p {
    color: rgba(248, 249, 250, 0.8); /* Lighter text on dark bg */
    font-size: 0.95rem;
    line-height: 1.6;
}
.footer-nav-list, .footer-social-list {
    list-style: none;
    padding: 0;
}
.footer-nav-list li, .footer-social-list li {
    margin-bottom: 0.6rem;
}
.footer-nav-list a, .footer-social-list a {
    color: rgba(248, 249, 250, 0.8);
    text-decoration: none;
    transition: color var(--transition-speed);
    font-size: 0.95rem;
}
.footer-nav-list a:hover, .footer-social-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(248, 249, 250, 0.7);
}

/* --- Page-Specific Styles --- */
/* Success Page */
.success-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light-gray);
}
.success-page-container h1 {
    color: var(--success-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}
.success-page-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.success-page-container .btn {
    font-size: 1.1rem;
}

/* Privacy & Terms Pages */
.privacy-page-content, .terms-page-content, .about-page-content, .contact-page-content {
    padding-top: calc(var(--header-height) + 40px); /* Header height + some margin */
    padding-bottom: 60px;
    min-height: calc(100vh - var(--header-height) - 215px); /* Approx footer height */
}
.privacy-page-content h1, .terms-page-content h1,
.about-page-content h1, .contact-page-content h1 {
    margin-bottom: 2rem;
    text-align: center;
}
.privacy-page-content h2, .terms-page-content h2,
.about-page-content h2, .contact-page-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}
/* Contact page specific form placement */
.contact-page-content .contact-form-section {
    padding-top: 0; /* Remove extra padding as it's already on page content */
}


/* --- Responsive Styles (Media Queries) --- */
@media (min-width: 769px) { /* For vision section layout */
    .vision-content-wrapper {
        grid-template-columns: 2fr 1fr; /* Text wider than image */
    }
    .vision-image-container {
        order: 1; /* If text should be first */
    }
    .vision-text {
        order: 0;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .main-navigation .nav-list {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 1rem 0;
        animation: slideDownMobileNav 0.3s ease-out forwards;
    }
    .main-navigation .nav-list.active {
        display: flex;
    }
    .main-navigation .nav-list li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .main-navigation .nav-list a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .main-navigation .nav-list li:last-child a {
        border-bottom: none;
    }
    .main-navigation .nav-list a::after {
        display: none; /* Remove underline effect for mobile nav items */
    }
    .menu-toggle {
        display: block; /* Show hamburger */
    }

    .footer-container {
        grid-template-columns: 1fr; /* Stack columns */
        text-align: center;
    }
    .footer-column {
        margin-bottom: 2rem;
    }

    .vision-content-wrapper {
        grid-template-columns: 1fr;
    }
    .vision-image-container {
        order: 0; /* Image first on mobile */
        margin-bottom: 1.5rem;
    }
    .vision-text {
        order: 1;
    }
}

@keyframes slideDownMobileNav {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
html,body{
    overflow-x: hidden;
}