/*
  FinArg Consultores - style.css
  Theme: Financial Consulting in Argentina
  Design System: Glassmorphism, Adaptive Typography
  Color Scheme: Gradient
  Animation Style: Smooth Transitions
  Fonts: Oswald (Headings), Nunito (Body)
*/

/* CSS Variables */
:root {
    --font-primary: 'Oswald', sans-serif;
    --font-secondary: 'Nunito', sans-serif;

    /* Bright & Attractive Gradient Palette */
    --color-primary-start: #007bff; /* Vibrant Blue */
    --color-primary-end: #00c6ff;   /* Lighter Sky Blue */
    --color-accent-start: #ffafbd;  /* Soft Pink */
    --color-accent-end: #ffc3a0;    /* Soft Peach */
    --color-secondary-action: #28a745; /* Success Green */
    --color-secondary-action-dark: #218838;

    /* Text Colors */
    --color-text-base: #343a40; /* Dark Grey for readability */
    --color-text-light: #f8f9fa; /* Off-White for dark backgrounds */
    --color-text-headings: #1a2533; /* Darker Blue/Grey for headings */
    --color-text-muted: #6c757d;  /* Muted grey for subtitles/secondary text */
    --color-link: var(--color-primary-start);
    --color-link-hover: var(--color-primary-end);

    /* Backgrounds */
    --color-background-body-start: #e0eafc; /* Light Blueish Grey */
    --color-background-body-end: #cfdef3;   /* Slightly Darker Blueish Grey */
    --color-background-footer: #1d2b3a; /* Dark Blue for Footer */

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-bg-alt: rgba(230, 235, 240, 0.4);
    --glass-border-color: rgba(255, 255, 255, 0.35);
    --glass-blur-amount: 10px;
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);

    /* UI Elements */
    --border-radius-base: 12px;
    --border-radius-large: 20px;
    --border-radius-pill: 50px;
    --transition-speed: 0.3s;
    --box-shadow-light: 0 4px 15px rgba(0, 0, 0, 0.05);
    --box-shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --spacing-xs: 0.5rem; /* 8px */
    --spacing-sm: 1rem;   /* 16px */
    --spacing-md: 1.5rem; /* 24px */
    --spacing-lg: 2.5rem; /* 40px */
    --spacing-xl: 4rem;   /* 64px */

    /* Header height for page content offset */
    --header-height: 70px; /* Adjust if header padding/logo size changes */
    --page-top-padding: calc(var(--header-height) + var(--spacing-md));
}

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

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

body {
    font-family: var(--font-secondary);
    line-height: 1.7;
    color: var(--color-text-base);
    background: linear-gradient(135deg, var(--color-background-body-start), var(--color-background-body-end));
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Adaptive Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-text-headings);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); text-shadow: 1px 1px 2px rgba(0,0,0,0.1); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: var(--spacing-lg); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: var(--spacing-md); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

p {
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
}

a {
    color: var(--color-link);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}
a:hover {
    color: var(--color-link-hover);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-base);
}

ul, ol {
    list-style-position: inside;
    padding-left: var(--spacing-sm);
}
li { margin-bottom: var(--spacing-xs); }

/* Layout & Containers */
.main-container {
    width: 100%;
    margin: 0 auto;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-padding {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.section-title {
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
    color: var(--color-text-headings);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-start), var(--color-primary-end));
    border-radius: 2px;
}
.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-text-muted);
    max-width: 750px;
    margin: 0 auto var(--spacing-lg) auto;
}

/* Global Button Styles */
.cta-button,
button,
input[type="submit"],
input[type="button"] {
    display: inline-block;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--box-shadow-light);
    color: var(--color-text-light);
    background: linear-gradient(90deg, var(--color-primary-start), var(--color-primary-end));
}

.cta-button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(90deg, var(--color-primary-end), var(--color-primary-start)); /* Invert gradient on hover */
    color: var(--color-text-light);
    text-decoration: none;
}

.submit-button { /* Specific for form submission, potentially different color */
    background: linear-gradient(90deg, var(--color-secondary-action), var(--color-secondary-action-dark));
    width: 100%;
}
.submit-button:hover {
    background: linear-gradient(90deg, var(--color-secondary-action-dark), var(--color-secondary-action));
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}


/* Glassmorphism Effect */
.glass-effect,
.glass-effect-section {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur-amount));
    -webkit-backdrop-filter: blur(var(--glass-blur-amount));
    border-radius: var(--border-radius-large);
    border: 1px solid var(--glass-border-color);
    box-shadow: var(--glass-shadow);
}
.glass-effect-section { /* For sections with full-width glass effect on content */
    background: var(--glass-bg-alt);
    padding: var(--spacing-lg);
}


/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border-bottom: 1px solid transparent; /* Subtle separation */
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: var(--box-shadow-medium);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-text-headings);
    text-decoration: none;
}
.logo-accent {
    color: var(--color-primary-start);
}

.nav-links {
    list-style: none;
    display: flex;
}
.nav-links li { margin-left: var(--spacing-md); }
.nav-links a {
    font-weight: 700;
    color: var(--color-text-base);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: var(--spacing-xs) 0;
    position: relative;
    text-decoration: none;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary-start);
    transition: width var(--transition-speed) ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary-start);
    text-decoration: none;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
}
.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-text-headings);
    position: relative;
    transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: var(--color-text-headings);
    left: 0;
    transition: transform var(--transition-speed) ease, top var(--transition-speed) ease;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-toggle.active .hamburger { background-color: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }


/* Hero Section */
.hero-section {
    min-height: 90vh; /* Make hero taller but not fixed if content is more */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    position: relative;
    color: var(--color-text-light); /* White text for hero */
    padding: var(--header-height) var(--spacing-md) var(--spacing-lg); /* Padding for content, accounting for header */
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)); /* Dark overlay for text readability */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-title {
    color: var(--color-text-light);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5); /* Enhanced shadow for white text */
}
.hero-subtitle {
    color: var(--color-text-light);
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.hero-section .cta-button {
    margin-top: var(--spacing-md);
    padding: calc(var(--spacing-sm) + 0.25rem) calc(var(--spacing-lg) + 0.5rem); /* Larger CTA */
    font-size: clamp(1rem, 2vw, 1.2rem);
}


/* General Card Styles */
.card, .resource-card, .accolade-item, .testimonial-card {
    background: var(--glass-bg);
    border-radius: var(--border-radius-large);
    border: 1px solid var(--glass-border-color);
    box-shadow: var(--glass-shadow);
    padding: var(--spacing-md);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    text-align: center; /* Center content within the card */
}
.card:hover, .resource-card:hover, .accolade-item:hover, .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(31, 38, 135, 0.15);
}

.card-image { /* Container for image in a card */
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    border-radius: var(--border-radius-base); /* Radius for image container */
    width: 100%; /* Make image container take full width of card column */
    height: 200px; /* Fixed height for consistency in grids */
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area, crop if needed */
    transition: transform 0.4s ease;
}
.card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    flex-grow: 1; /* Allows content to fill space, useful for aligning buttons at bottom */
    display: flex;
    flex-direction: column;
}
.card-content h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary-start);
    text-align: center; /* Ensure heading is centered */
}
.card-content p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--color-text-base); /* Ensure p has good contrast */
    flex-grow: 1; /* Pushes elements after it down */
}

/* Services Section Specifics */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

/* Mission Section */
.mission-content {
    display: grid;
    grid-template-columns: 1fr; /* Default for mobile */
    gap: var(--spacing-lg);
    align-items: center;
}
.mission-text p { text-align: left; }
.mission-image-container img {
    box-shadow: var(--box-shadow-medium);
}
@media (min-width: 768px) {
    .mission-content { grid-template-columns: 1.2fr 1fr; } /* Text takes a bit more space */
}

/* Methodology Section (Timeline) */
.timeline {
    list-style: none;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px; /* For mobile: line on the left */
    width: 4px;
    background: linear-gradient(var(--color-primary-start), var(--color-primary-end));
    border-radius: 2px;
}
.timeline-item {
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-left: calc(20px + var(--spacing-lg)); /* Space for icon and line */
}
.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background: var(--color-text-light);
    color: var(--color-primary-start);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    font-family: var(--font-primary);
    border: 3px solid var(--color-primary-start);
    box-shadow: 0 0 0 4px var(--color-text-light), var(--box-shadow-light);
    z-index: 1;
}
.timeline-content {
    padding: var(--spacing-sm);
    text-align: left;
}
.timeline-content h3 {
    text-align: left;
    margin-bottom: var(--spacing-xs);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--color-primary-start);
}
@media (min-width: 768px) {
    .timeline::before { left: 50%; transform: translateX(-50%); }
    .timeline-item {
        width: 50%;
        padding-left: 0; /* Reset padding */
        margin-bottom: 0; /* Handled by alternating */
    }
    .timeline-item:nth-child(odd) {
        left: 0;
        padding-right: calc(22px + var(--spacing-lg)); /* 22px is half icon width */
        text-align: right;
    }
    .timeline-item:nth-child(even) {
        left: 50%;
        padding-left: calc(22px + var(--spacing-lg));
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-icon { right: -22px; left: auto; }
    .timeline-item:nth-child(even) .timeline-icon { left: -22px; }
    .timeline-item:nth-child(odd) .timeline-content h3,
    .timeline-item:nth-child(odd) .timeline-content p { text-align: right; }
    .timeline-item:nth-child(even) .timeline-content h3,
    .timeline-item:nth-child(even) .timeline-content p { text-align: left; }
    .timeline-item:not(:last-child) { margin-bottom: var(--spacing-xl); }
}

/* Instructors/Team Section */
.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}
.instructors-grid .card { /* Card itself is flex for centering its content */
    align-items: center; /* Center items like image and text block */
}
.instructors-grid .card-image { /* Image container */
    width: 150px; /* Fixed width for circular image */
    height: 150px; /* Fixed height for circular image */
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    border: 4px solid var(--glass-border-color);
}
.instructors-grid .card-image img {
    border-radius: 50%; /* Image itself also circular */
}
.instructors-grid .card-content h3 {
    font-size: clamp(1.3rem, 2.8vw, 1.7rem);
}
.instructors-grid .card-content h4 { /* Role/Title */
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: var(--color-primary-start);
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    text-align: center;
}

/* Behind the Scenes Section */
.behind-scenes-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}
.behind-scenes-text p { text-align: left; }
@media(min-width: 768px) {
    .behind-scenes-content { grid-template-columns: 1fr 1fr; }
    .behind-scenes-image-container { order: 1; } /* Image on right */
    .progress-indicators { order: 0;}
}

.progress-indicators { margin-top: var(--spacing-sm); }
.progress-item { margin-bottom: var(--spacing-md); }
.progress-item label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    color: var(--color-text-headings);
    text-align: left;
}
.progress-bar-container {
    width: 100%;
    background-color: rgba(0,0,0,0.1);
    border-radius: var(--border-radius-pill);
    height: 28px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary-start), var(--color-primary-end));
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: var(--border-radius-pill);
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth ease-out */
    width: 0%; /* Initial width for animation */
}

/* Accolades Section */
.accolades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}
.accolade-item img { /* For award logos */
    margin: 0 auto var(--spacing-sm) auto;
    max-height: 70px;
    width: auto;
    filter: grayscale(30%) opacity(0.8);
    transition: filter var(--transition-speed) ease;
}
.accolade-item:hover img {
    filter: grayscale(0%) opacity(1);
}
.accolade-item h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--color-text-headings);
}
.testimonial-card {
    background: var(--glass-bg-alt); /* Slightly different glass */
    border-left: 5px solid var(--color-primary-start);
    text-align: left;
}
.testimonial-card blockquote p {
    font-style: italic;
    color: var(--color-text-base);
    margin-bottom: var(--spacing-sm);
    font-size: clamp(0.95rem, 1.9vw, 1.05rem);
}
.testimonial-card blockquote footer {
    font-weight: bold;
    color: var(--color-primary-start);
    text-align: right;
    font-size: clamp(0.85rem, 1.7vw, 0.95rem);
}

/* Media Section (Accordion) */
.accordion-container { max-width: 900px; margin: 0 auto; }
.accordion-item {
    margin-bottom: var(--spacing-sm);
    border-radius: var(--border-radius-base);
    overflow: hidden;
    box-shadow: var(--box-shadow-light);
}
.accordion-header {
    background: linear-gradient(90deg, var(--color-primary-start), var(--color-primary-end));
    color: var(--color-text-light);
    padding: var(--spacing-sm) var(--spacing-md);
    width: 100%;
    border: none;
    text-align: left;
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-speed) ease;
}
.accordion-header:hover {
    background: linear-gradient(90deg, var(--color-primary-end), var(--color-primary-start));
}
.accordion-icon {
    font-size: 1.6rem;
    transition: transform var(--transition-speed) ease;
    font-weight: bold;
}
.accordion-item.active .accordion-icon { transform: rotate(45deg); }
.accordion-content {
    padding: var(--spacing-md);
    background-color: var(--glass-bg); /* Use glass for content too */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: none;
    border-top: 1px solid var(--glass-border-color);
    text-align: left;
}
.accordion-content p {
    color: var(--color-text-base);
    margin-bottom: var(--spacing-md);
}
.read-more-link {
    display: inline-block;
    font-weight: bold;
    color: var(--color-primary-start);
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid var(--color-primary-start);
    border-radius: var(--border-radius-pill);
    transition: all var(--transition-speed) ease;
}
.read-more-link:hover {
    background-color: var(--color-primary-start);
    color: var(--color-text-light);
    text-decoration: none;
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}
.resource-card .resource-icon {
    margin: 0 auto var(--spacing-sm) auto; /* Center icon */
    width: 48px;
    height: 48px;
    opacity: 0.8;
    color: var(--color-primary-start); /* Make icon use primary color */
}
.resource-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--color-primary-start);
    text-align: center;
}
.resource-description {
    font-size: clamp(0.85rem, 1.7vw, 0.95rem);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    text-align: center;
}
.resource-link {
    margin-top: auto; /* Push link to bottom of card */
    display: block; /* Make it full width of its container (card padding) */
}

/* Contact Section & Form */
.contact-form {
    max-width: 750px;
    margin: var(--spacing-md) auto 0 auto;
    padding: var(--spacing-lg);
}
.form-group { margin-bottom: var(--spacing-md); }
.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    color: var(--color-text-headings);
    text-align: left;
}
.form-input, .form-textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid #ced4da;
    border-radius: var(--border-radius-base);
    font-family: var(--font-secondary);
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--color-text-base);
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-primary-start);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.9);
}
.form-textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.site-footer {
    background: var(--color-background-footer);
    color: var(--color-text-light);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}
.footer-column { text-align: left; }
.footer-column h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    text-align: left;
    position: relative;
    padding-bottom: var(--spacing-xs);
}
.footer-column h4::after { /* Small underline for footer titles */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--color-primary-start);
}
.footer-column p, .footer-column li {
    color: #adb5bd; /* Lighter grey for footer text */
    font-size: clamp(0.9rem, 1.8vw, 0.95rem);
}
.footer-nav, .social-links { list-style: none; padding: 0; }
.footer-nav li, .social-links li { margin-bottom: var(--spacing-xs); }
.footer-nav a, .social-links a {
    color: #adb5bd;
    transition: color var(--transition-speed) ease, padding-left var(--transition-speed) ease;
    display: inline-block; /* For padding effect */
}
.footer-nav a:hover, .social-links a:hover {
    color: var(--color-text-light);
    text-decoration: none;
    padding-left: var(--spacing-xs); /* Slight indent on hover */
}
.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    color: #869099;
}

/* Page Title Section (for inner pages like about, contact, etc.) */
.page-title-section {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: var(--header-height); /* Offset for fixed header */
}
.page-title-section .hero-overlay { /* Reuse hero overlay */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
}
.page-title-section h1 {
    color: var(--color-text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    position: relative;
    z-index: 2;
}

/* Content pages (privacy, terms, about) padding & text styling */
.privacy-content-section,
.terms-content-section,
.about-content-section {
    padding-top: var(--page-top-padding); /* Ensure content not hidden by fixed header */
}
.text-content-page {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255,255,255,0.8); /* Light background for long text */
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-base);
    box-shadow: var(--box-shadow-medium);
}
.text-content-page h2, .text-content-page h3 {
    text-align: left;
    color: var(--color-text-headings);
}
.text-content-page h2 { margin-bottom: var(--spacing-md); }
.text-content-page h3 { margin-top: var(--spacing-md); margin-bottom: var(--spacing-xs); font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
.text-content-page p, .text-content-page li {
    text-align: left;
    color: var(--color-text-base);
}
.text-content-page ul { margin-bottom: var(--spacing-sm); }

/* About Page Specifics */
.values-list {
    list-style: disc;
    padding-left: var(--spacing-md); /* Indent list */
}
.subsection-title {
    text-align: left;
    color: var(--color-primary-start);
}
.subsection-title::after { display: none; } /* Remove global underline */

/* Contact Page Specifics */
.contact-page-section {
    padding-top: var(--page-top-padding);
}
.contact-page-section .section-title {
    text-align: left;
    margin-bottom: var(--spacing-sm);
}
.contact-page-section .section-title::after { display: none; }

.contact-info-form-container {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: var(--spacing-lg);
}
.contact-info-details, .contact-form-container {
    background: var(--glass-bg-alt);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-large);
}
.contact-info-details address {
    font-style: normal;
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}
.contact-info-details p { margin-bottom: var(--spacing-xs); text-align: left; }
.map-container {
    margin-top: var(--spacing-md);
    border-radius: var(--border-radius-base);
    overflow: hidden;
    box-shadow: var(--box-shadow-light);
    height: 300px; /* Fixed height for map */
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

@media (min-width: 992px) {
    .contact-info-form-container { grid-template-columns: 1fr 1.2fr; } /* Form takes more space */
}

/* Success Page */
.success-message-section {
    min-height: calc(100vh - var(--header-height)); /* Full viewport height minus header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-lg);
    margin-top: var(--header-height);
}
.success-icon {
    font-size: clamp(4rem, 10vw, 6rem);
    color: var(--color-secondary-action);
    margin-bottom: var(--spacing-md);
    line-height: 1;
}
.success-message-section .section-title {
    color: var(--color-text-headings);
    margin-bottom: var(--spacing-sm);
}
.success-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: var(--spacing-md);
}
.success-message-section .cta-button {
    margin-top: var(--spacing-lg);
}

/* Animate on Scroll (Handled by JS adding 'visible' class from Animate.css or custom) */
.animate-on-scroll {
    /*opacity: 0;*/
    /* Animate.css handles transform, if not using it, add: transform: translateY(30px); */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Custom transition if not using Animate.css heavily */
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .mission-content,
    .behind-scenes-content { grid-template-columns: 1fr; }
    .mission-image-container,
    .behind-scenes-image-container { order: -1; margin-bottom: var(--spacing-md); }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none; /* Hidden by default, JS toggles */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Position below header */
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        padding: var(--spacing-md) 0;
        box-shadow: var(--box-shadow-medium);
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    .nav-links.active { display: flex; }
    .nav-links li { margin: var(--spacing-xs) var(--spacing-md); text-align: center; }
    .nav-links a::after { display: none; } /* Remove underline effect for mobile dropdown */

    .footer-content { grid-template-columns: 1fr; }
    .footer-column, .footer-column h4, .footer-column p, .footer-column ul { text-align: center; }
    .footer-column h4::after { left: 50%; transform: translateX(-50%); }
    .footer-nav, .social-links { justify-content: center; }
    .footer-nav a:hover, .social-links a:hover { padding-left: 0; }

    .timeline::before { left: 20px; }
    .timeline-item { width: 100%; left: 0 !important; padding-left: calc(20px + var(--spacing-lg)) !important; padding-right: 0 !important; text-align: left !important; }
    .timeline-item:nth-child(odd) .timeline-content h3,
    .timeline-item:nth-child(odd) .timeline-content p,
    .timeline-item:nth-child(even) .timeline-content h3,
    .timeline-item:nth-child(even) .timeline-content p { text-align: left !important; }
    .timeline-item .timeline-icon { left: 0 !important; transform: translateX(0) !important; }
}
.nav-toggle{
    display: none;
}