/* style.css */

/* ------------------------------------------------------------------------- */
/* 0. ROOT VARIABLES
/* ------------------------------------------------------------------------- */
:root {
  /* Fonts */
  --font-primary: 'Source Sans Pro', Arial, sans-serif;
  --font-headings: 'Playfair Display', Georgia, serif;

  /* Core Colors (Split-Complementary & Futuristic) */
  --color-primary-dark: #0D1B2A;   /* Deep Space Blue - Backgrounds, Dark Elements */
  --color-primary-medium: #1B263B; /* Slightly lighter for depth, text on light bg */
  --color-accent-main: #E07A5F;    /* Fiery Coral - CTAs, Primary Highlights */
  --color-accent-main-darker: #D46A4D; /* Darker Coral for hover */
  --color-accent-secondary: #3DCCC7; /* Vibrant Teal/Cyan - Secondary Accents, Icons */
  --color-accent-secondary-darker: #30A09B; /* Darker Teal for hover */
  
  /* Neutral Colors */
  --color-text-light: #F0F8FF;     /* Alice Blue - Main text on dark backgrounds */
  --color-text-dark: #222222;      /* Dark Gray - Main text on light backgrounds */
  --color-text-medium: #555555;   /* Medium Gray for less prominent text */
  --color-background-light: #FFFFFF; /* White for light sections or cards */
  --color-background-medium: #F8F9FA; /* Off-white for subtle section differentiation */
  --color-border-light: #DEE2E6;   /* Light border for cards/elements on light bg */
  --color-border-dark: #4A5568;    /* Subtle borders on dark bg */

  /* Gradients & Overlays */
  --gradient-dynamic-bg: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-medium) 50%, var(--color-accent-secondary) 100%);
  --gradient-accent-flow: linear-gradient(90deg, var(--color-accent-main) 0%, var(--color-accent-secondary) 100%);
  --gradient-text-on-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
  --gradient-hero-overlay: linear-gradient(to bottom, rgba(13, 27, 42, 0.4) 0%, rgba(13, 27, 42, 0.7) 100%);

  /* Spacing & Sizes */
  --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: 80px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;

  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-smooth: 0.35s ease-in-out;
  --transition-long: 0.5s ease-in-out;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 30px rgba(224, 122, 95, 0.2); /* Accent shadow */
  --text-shadow-light: 1px 1px 2px rgba(0,0,0,0.3);
  --text-shadow-dark-bg: 0 0 8px rgba(240, 248, 255, 0.3); /* Subtle glow for text on dark bg */
}

/* ------------------------------------------------------------------------- */
/* 1. BASIC RESET & GLOBAL 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-primary);
  line-height: 1.7;
  color: var(--color-text-dark);
  background-color: var(--color-background-light); /* Default light background */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-primary-medium); /* Default heading color for light backgrounds */
  margin-bottom: var(--spacing-md);
  text-rendering: optimizeLegibility;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.7rem; }
h4 { font-size: 1.3rem; }

p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-medium);
}

a {
  color: var(--color-accent-main);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-accent-main-darker);
  text-decoration: underline;
}

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

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

/* Ensuring text on dark backgrounds is light */
.section[style*="background-color: var(--color-primary-dark)"],
.section[style*="background-image"] .hero-overlay + .container, /* For hero with overlay */
.section[style*="background-image"] .vision-overlay + .container,
footer.site-footer {
  color: var(--color-text-light);
}

.section[style*="background-color: var(--color-primary-dark)"] h1,
.section[style*="background-color: var(--color-primary-dark)"] h2,
.section[style*="background-color: var(--color-primary-dark)"] h3,
.section[style*="background-color: var(--color-primary-dark)"] h4,
.section[style*="background-image"] .hero-overlay + .container h1, /* For hero */
.section[style*="background-image"] .vision-overlay + .container h2, /* For vision */
footer.site-footer h4 {
  color: var(--color-text-light);
  text-shadow: var(--text-shadow-dark-bg);
}

.section[style*="background-color: var(--color-primary-dark)"] p,
.section[style*="background-image"] .hero-overlay + .container p,
.section[style*="background-image"] .vision-overlay + .container p,
footer.site-footer p {
  color: var(--color-text-light);
  opacity: 0.9;
}
.section[style*="background-color: var(--color-primary-dark)"] a,
.section[style*="background-image"] .hero-overlay + .container a,
.section[style*="background-image"] .vision-overlay + .container a,
footer.site-footer a {
  color: var(--color-accent-secondary);
}
.section[style*="background-color: var(--color-primary-dark)"] a:hover,
.section[style*="background-image"] .hero-overlay + .container a:hover,
.section[style*="background-image"] .vision-overlay + .container a:hover,
footer.site-footer a:hover {
  color: var(--color-text-light);
}


/* Global Button Styles */
.cta-button, button, input[type="submit"], input[type="button"] {
  display: inline-block;
  padding: calc(var(--spacing-sm) * 0.9) calc(var(--spacing-lg) * 0.9);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-light);
  background: var(--gradient-accent-flow); /* Dynamic color transition */
  background-size: 200% 100%;
  background-position: right bottom;
  border: none;
  border-radius: var(--border-radius-md);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-position var(--transition-smooth), transform var(--transition-fast), box-shadow var(--transition-smooth);
  box-shadow: var(--shadow-md);
  letter-spacing: 0.5px;
}

.cta-button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  background-position: left bottom;
  color: var(--color-text-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.cta-button:active, button:active, input[type="submit"]:active, input[type="button"]:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}


/* ------------------------------------------------------------------------- */
/* 2. UTILITY CLASSES
/* ------------------------------------------------------------------------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-sm);
  padding-right: var(--spacing-sm);
}

.section {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  position: relative;
  overflow: hidden; /* For parallax or animation containers */
}
.section:nth-child(even) {
  background-color: var(--color-background-medium);
}
.section:nth-child(odd) {
   background-color: var(--color-background-light);
}

/* Background image handling */
[style*="background-image"] {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  padding-bottom: var(--spacing-sm);
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-accent-flow);
  margin: var(--spacing-xs) auto 0;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-text-medium);
  max-width: 700px;
  margin: 0 auto var(--spacing-lg) auto;
}

/* For dark section titles on light background - default h2 behavior is fine */
/* For light section titles on dark backgrounds - already handled by cascading */
.vision-section .section-title, /* Example: section with dark bg */
.hero-section .hero-title {
    color: var(--color-text-light);
    text-shadow: var(--text-shadow-light);
}
.vision-section .section-title::after { /* Adjusting for contrast */
    background: var(--color-accent-secondary);
}


.text-center { text-align: center; }
.margin-bottom-md { margin-bottom: var(--spacing-md); }

/* Column system */
.columns {
  display: flex;
  flex-wrap: wrap;
  margin-left: -var(--spacing-sm);
  margin-right: -var(--spacing-sm);
}
.column {
  padding-left: var(--spacing-sm);
  padding-right: var(--spacing-sm);
  margin-bottom: var(--spacing-md); /* Vertical spacing for columns */
  width: 100%; /* Default for mobile */
}

@media (min-width: 768px) {
  .column.is-one-third { width: 33.3333%; }
  .column.is-half { width: 50%; }
  .column.is-two-thirds { width: 66.6666%; }
  .column.is-full { width: 100%; }
}

.image-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative; /* For potential overlays or captions */
}
.image-container img {
    border-radius: var(--border-radius-lg); /* If img is direct child */
}


/* ------------------------------------------------------------------------- */
/* 3. HEADER
/* ------------------------------------------------------------------------- */
.site-header {
  background-color: rgba(13, 27, 42, 0.85); /* Dark, slightly transparent */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--spacing-sm) 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: background-color var(--transition-smooth);
}
.site-header.scrolled {
  background-color: var(--color-primary-dark); /* Solid on scroll */
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-light);
  text-decoration: none;
}
.logo-accent {
  color: var(--color-accent-main);
}
.logo:hover {
  text-decoration: none;
  opacity: 0.9;
}

.main-nav ul {
  list-style: none;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
}
.main-nav li {
  margin-left: var(--spacing-md);
}
.main-nav a {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 600;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent-secondary);
    transition: width var(--transition-smooth);
}
.main-nav a:hover,
.main-nav a.active { /* Add .active class via JS for current page */
  color: var(--color-accent-secondary);
  text-decoration: none;
}
.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}


.burger-menu {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010; /* Above nav */
}
.burger-menu span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--color-text-light);
  margin: 5px 0;
  border-radius: 3px;
  transition: all var(--transition-smooth);
}


/* ------------------------------------------------------------------------- */
/* 4. HERO SECTION
/* ------------------------------------------------------------------------- */
.hero-section {
  min-height: 85vh; /* Adjust as needed, avoid fixed large min-heights if not necessary */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-light); /* IMPORTANT: Hero text is white */
  position: relative;
  padding-top: var(--header-height); /* Offset for fixed header */
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero-overlay); /* Darkening overlay */
  z-index: 1;
}
.hero-content-container {
  position: relative;
  z-index: 2;
  padding: var(--spacing-lg);
}
.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-light) !important; /* Ensure white */
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  color: var(--color-text-light) !important; /* Ensure white */
}
.hero-section .cta-button {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.2rem;
}


/* ------------------------------------------------------------------------- */
/* 5. ABOUT US SECTION
/* ------------------------------------------------------------------------- */
.about-us-section .column.is-two-thirds p {
    font-size: 1.1rem;
    line-height: 1.8;
}
.about-us-section .image-container {
    margin-top: var(--spacing-sm);
}

/* ------------------------------------------------------------------------- */
/* 6. OUR PROCESS SECTION (TIMELINE)
/* ------------------------------------------------------------------------- */
.our-process-section {
    background-color: var(--color-primary-dark);
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::after { /* The central line */
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--color-accent-secondary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
  opacity: 0.5;
}
.timeline-item {
  padding: var(--spacing-sm) var(--spacing-lg);
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: var(--spacing-lg);
}
.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: calc(var(--spacing-lg) + 30px); /* Space for icon */
  text-align: right;
}
.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: calc(var(--spacing-lg) + 30px); /* Space for icon */
}
.timeline-item:nth-child(odd) .timeline-icon {
  right: -20px; /* Adjust to center on line */
}
.timeline-item:nth-child(even) .timeline-icon {
  left: -20px; /* Adjust to center on line */
}
.timeline-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-accent-main);
  border: 3px solid var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.timeline-icon svg {
  fill: var(--color-text-light);
  width: 20px;
  height: 20px;
}
.timeline-content {
  padding: var(--spacing-md);
  background-color: var(--color-primary-medium);
  position: relative;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}
.timeline-item:nth-child(odd) .timeline-content {
   margin-right: 25px;
}
.timeline-item:nth-child(even) .timeline-content {
   margin-left: 25px;
}
.timeline-title {
  margin-top: 0;
  color: var(--color-accent-secondary);
  font-size: 1.4rem;
}
.timeline-content p {
    color: var(--color-text-light);
    opacity: 0.85;
    font-size: 0.95rem;
}
.timeline-content .card-image {
    height: 180px; /* Fixed height for timeline images */
    margin-top: var(--spacing-sm);
}

/* ------------------------------------------------------------------------- */
/* 7. VISION SECTION
/* ------------------------------------------------------------------------- */
.vision-section {
  color: var(--color-text-light);
  text-align: center;
  position: relative;
}
.vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero-overlay); /* Similar to hero */
  z-index: 1;
}
.vision-content-container {
  position: relative;
  z-index: 2;
  padding: var(--spacing-lg);
}
.vision-section .section-title {
    color: var(--color-text-light);
}
.vision-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-light);
  opacity: 0.9;
}

/* ------------------------------------------------------------------------- */
/* 8. TEAM SECTION
/* ------------------------------------------------------------------------- */
.team-section .card.team-member-card {
  background-color: var(--color-background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.team-section .card.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.team-member-card .card-image { /* image-container */
  width: 150px; /* Circle size */
  height: 150px;
  border-radius: 50%;
  margin-bottom: var(--spacing-md);
  border: 4px solid var(--color-accent-main);
}
.team-member-card .card-image img {
  border-radius: 50%;
}
.member-name {
  color: var(--color-primary-medium);
  font-size: 1.4rem;
  margin-bottom: var(--spacing-xs);
}
.member-title {
  color: var(--color-accent-main);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-sm);
}
.member-bio {
  font-size: 0.95rem;
  color: var(--color-text-medium);
}


/* ------------------------------------------------------------------------- */
/* 9. RESOURCES SECTION
/* ------------------------------------------------------------------------- */
.resources-section {
    background-color: var(--color-background-medium);
}
.resource-card {
  background-color: var(--color-background-light);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  height: 100%; /* For equal height cards in a row */
  display: flex;
  flex-direction: column;
}
.resource-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-md);
}
.resource-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}
.resource-title a {
  color: var(--color-primary-medium);
}
.resource-title a:hover {
  color: var(--color-accent-main);
}
.resource-description {
  font-size: 0.95rem;
  color: var(--color-text-medium);
  flex-grow: 1; /* Pushes button/link to bottom if any */
}
/* Style for "Read More" or similar links if added */
.read-more-link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: var(--color-accent-main);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-right: 20px; /* Space for arrow */
}
.read-more-link::after {
    content: '→'; /* Or an SVG icon */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: right var(--transition-fast);
}
.read-more-link:hover::after {
    right: -5px;
}

/* ------------------------------------------------------------------------- */
/* 10. INSIGHTS SECTION (ACCORDION)
/* ------------------------------------------------------------------------- */
.accordion-item {
  background-color: var(--color-background-light);
  margin-bottom: var(--spacing-sm);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.accordion-header {
  background-color: transparent; /* Button is inside item */
  color: var(--color-primary-medium);
  cursor: pointer;
  padding: var(--spacing-md);
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast);
}
.accordion-header:hover {
  background-color: var(--color-background-medium);
}
.accordion-title-text {
    flex-grow: 1;
}
.accordion-icon {
  width: 16px;
  height: 16px;
  margin-left: var(--spacing-sm);
  transition: transform var(--transition-smooth);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E07A5F'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}
.accordion-content {
  padding: 0 var(--spacing-md) var(--spacing-md) var(--spacing-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-long), padding var(--transition-long);
}
.accordion-content p {
  font-size: 1rem;
  color: var(--color-text-medium);
  line-height: 1.8;
}

/* ------------------------------------------------------------------------- */
/* 11. MEDIA SECTION
/* ------------------------------------------------------------------------- */
.media-section {
    background-color: var(--color-background-medium);
}
.media-gallery .card.media-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden; /* Important for child image */
    box-shadow: var(--shadow-md);
    position: relative;
    background-color: var(--color-primary-dark); /* Fallback or bg for image */
}
.media-gallery .card.media-card .card-image { /* This is the image-container div */
    height: 250px; /* Fixed height for gallery images */
    width: 100%;
}
.media-gallery .card.media-card .card-image img {
    border-radius: 0; /* Image itself shouldn't have radius if container does */
}

/* ------------------------------------------------------------------------- */
/* 12. PARTNERS SECTION
/* ------------------------------------------------------------------------- */
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.partners-logos img {
  height: 60px; /* Adjust as needed */
  width: auto;
  margin: var(--spacing-sm) var(--spacing-md);
  filter: grayscale(100%) opacity(0.7);
  transition: filter var(--transition-smooth), transform var(--transition-smooth);
}
.partners-logos img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* ------------------------------------------------------------------------- */
/* 13. CONTACT TEASER SECTION
/* ------------------------------------------------------------------------- */
.contact-teaser-section {
    background: var(--gradient-dynamic-bg);
    color: var(--color-text-light);
    text-align: center;
}
.contact-teaser-section .section-title,
.contact-teaser-section .section-subtitle {
    color: var(--color-text-light);
}
.contact-teaser-section .section-title::after {
    background: var(--color-text-light);
}
.contact-teaser-section .cta-button {
    background: var(--color-text-light);
    color: var(--color-accent-main);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.contact-teaser-section .cta-button:hover {
    background: var(--color-accent-secondary);
    color: var(--color-text-light);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ------------------------------------------------------------------------- */
/* 14. FOOTER
/* ------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
  padding: var(--spacing-xl) 0 var(--spacing-md) 0;
  font-size: 0.95rem;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
}
.footer-column {
  width: 100%; /* Mobile first */
  margin-bottom: var(--spacing-lg);
  padding: 0 var(--spacing-sm);
}
@media (min-width: 576px) {
  .footer-column { width: calc(50% - var(--spacing-md)); }
}
@media (min-width: 992px) {
  .footer-column { width: calc(25% - var(--spacing-md)); }
}

.footer-heading {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  color: var(--color-accent-secondary);
  margin-bottom: var(--spacing-md);
  position: relative;
}
.footer-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent-main);
    margin-top: var(--spacing-xs);
}

.site-footer ul {
  list-style: none;
  padding-left: 0;
}
.site-footer li {
  margin-bottom: var(--spacing-xs);
}
.site-footer a {
  color: var(--color-text-light);
  opacity: 0.8;
  text-decoration: none;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}
.site-footer a:hover {
  opacity: 1;
  color: var(--color-accent-main);
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border-dark);
  font-size: 0.9rem;
  opacity: 0.7;
}
.social-links li a { /* Text-based social links */
    font-weight: 600;
}

/* ------------------------------------------------------------------------- */
/* 15. PAGE-SPECIFIC STYLES
/* ------------------------------------------------------------------------- */
/* About, Contact, Privacy, Terms pages - General page content styling */
.page-content-section {
    padding-top: calc(var(--header-height) + var(--spacing-lg)); /* Avoid header overlap */
    padding-bottom: var(--spacing-xl);
}
.page-title { /* For h1 on static pages */
  text-align: center;
  margin-bottom: var(--spacing-xl);
}
.content-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.content-block h2.sub-heading {
    font-size: 1.8rem;
    color: var(--color-primary-medium);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--color-accent-secondary);
    display: inline-block; /* To make border only as wide as text */
}
.content-block p, .content-block ul, .content-block ol {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-medium);
}
.content-block ul {
    list-style-type: disc;
}
.content-block ol {
    list-style-type: decimal;
}
.content-block strong {
    color: var(--color-primary-medium);
    font-weight: 600;
}
.values-list li {
    padding-left: var(--spacing-sm);
    position: relative;
}
.values-list li::before {
    content: '✓'; /* Or a futuristic icon/svg */
    color: var(--color-accent-main);
    position: absolute;
    left: 0;
    font-weight: bold;
}


/* Contact Page Specifics */
.contact-page-section .contact-form {
  background-color: var(--color-background-light);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}
.form-field {
  margin-bottom: var(--spacing-md);
}
.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--color-primary-medium);
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-dark);
  background-color: var(--color-background-medium);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent-main);
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.2);
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-info-column {
    padding-left: var(--spacing-lg); /* More space from form on desktop */
}
.contact-info-title {
    font-size: 1.5rem;
    color: var(--color-primary-medium);
    margin-bottom: var(--spacing-md);
}
.contact-info-column p {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    line-height: 1.6;
}
.contact-info-column strong {
    color: var(--color-primary-medium);
}
.map-placeholder {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

/* Success Page */
.success-page-section {
  min-height: calc(100vh - var(--header-height) - 131px); /* 131px is approx footer height, adjust if needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-height); /* Account for fixed header */
}
.success-message-box {
  background-color: var(--color-background-light);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
}
.success-icon {
  margin-bottom: var(--spacing-md);
}
.success-icon svg {
  fill: var(--color-accent-main); /* Or a success green */
}
.success-message-box .page-title {
  color: var(--color-accent-main);
  font-size: 2.5rem;
}
.success-message-box p {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
}

/* Privacy & Terms pages specific padding (already in .page-content-section) */

/* ------------------------------------------------------------------------- */
/* 16. CARD STYLES (General, can be extended)
/* ------------------------------------------------------------------------- */
.card {
  background-color: var(--color-background-light);
  border-radius: var(--border-radius-lg); /* Changed from --card-border-radius */
  box-shadow: var(--shadow-sm);
  overflow: hidden; /* To contain image radius or effects */
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex; /* For STROGO requirements */
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%; /* For equal height cards in a row if parent is flex */
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.card .card-image, /* This is the image-container div */
.card .image-container {
  width: 100%; /* Takes full width of card */
  /* Fixed height as per requirement, adjust per section or make it variable */
  height: 200px; /* Default fixed height, can be overridden by section styles */
  overflow: hidden;
  margin-bottom: var(--spacing-md); /* Space between image and content */
  display: flex; /* Centers the img if it's smaller than this container (though object-fit usually handles this) */
  justify-content: center;
  align-items: center;
  background-color: var(--color-background-medium); /* Placeholder bg for image */
}
.card .card-image img,
.card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crucial for consistent image display */
  display: block;
  /* margin: 0 auto; redundant if parent is flex centering the image itself */
}
.card .card-content {
  padding: var(--spacing-md);
  padding-top: 0; /* Image has margin-bottom */
  width: 100%; /* Ensures content uses full card width */
  flex-grow: 1; /* Allows content to push footer elements down in flex cards */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically if card has fixed height */
}
.card .card-content h3 { /* Example title in card */
    font-size: 1.3rem;
    color: var(--color-primary-medium);
    margin-bottom: var(--spacing-sm);
}
.card .card-content p {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

/* Glassmorphism example, can be added to .card or specific elements */
.glassmorphism {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
/* If .card uses glassmorphism, text colors might need adjustment */
.card.glassmorphism .card-content h3,
.card.glassmorphism .card-content p {
    color: var(--color-text-light); /* Assuming glass is on a dark/image bg */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}


/* ------------------------------------------------------------------------- */
/* 17. ANIMATIONS (Scroll-dependent placeholders)
/* ------------------------------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.8s; /* Default duration */
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Slight overshoot */
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none !important; /* Reset transform */
}

/* Specific Animations */
.animate-on-scroll[data-animation="fadeIn"] { transform: translateY(10px); }
.animate-on-scroll[data-animation="fadeInUp"] { transform: translateY(40px); }
.animate-on-scroll[data-animation="fadeInDown"] { transform: translateY(-40px); }
.animate-on-scroll[data-animation="fadeInLeft"] { transform: translateX(-40px); }
.animate-on-scroll[data-animation="fadeInRight"] { transform: translateX(40px); }
.animate-on-scroll[data-animation="zoomIn"] { transform: scale(0.9); }
.animate-on-scroll[data-animation="slideInUp"] { transform: translateY(100px); } /* For timeline items */

/* Delay handling (JS will add .is-visible after delay) */
/* Example: [data-delay="200"] { transition-delay: 0.2s; } - Can be done in JS or CSS if limited delays */
.animate-on-scroll[data-delay="100"].is-visible { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="150"].is-visible { transition-delay: 0.15s; }
.animate-on-scroll[data-delay="200"].is-visible { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="300"].is-visible { transition-delay: 0.3s; }
.animate-on-scroll[data-delay="400"].is-visible { transition-delay: 0.4s; }
.animate-on-scroll[data-delay="500"].is-visible { transition-delay: 0.5s; }


/* Parallax effect for background images (Simple CSS version) */
/* Apply this class to sections with background images */
.parallax-bg {
  background-attachment: fixed; /* Creates a simple parallax effect */
}
/* Note: background-attachment: fixed can have performance issues on mobile
   and might not work as expected with other transforms or position:fixed elements.
   True parallax often requires JS. */


/* ------------------------------------------------------------------------- */
/* 18. RESPONSIVE STYLES
/* ------------------------------------------------------------------------- */
@media (max-width: 991px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .hero-title { font-size: 2.8rem; }
  .hero-subtitle { font-size: 1.2rem; }

  .timeline::after { left: 30px; margin-left: -2px; }
  .timeline-item { width: 100%; padding-left: 70px; padding-right: var(--spacing-sm); margin-bottom: var(--spacing-md); }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
    text-align: left;
    padding-left: calc(var(--spacing-lg) + 40px); /* Space for icon from left */
  }
  .timeline-item:nth-child(odd) .timeline-icon,
  .timeline-item:nth-child(even) .timeline-icon {
    left: 10px; /* Adjust to align with the line at 30px */
    right: auto;
  }
   .timeline-item:nth-child(odd) .timeline-content,
   .timeline-item:nth-child(even) .timeline-content {
       margin-left: 0; margin-right: 0;
   }
}

@media (max-width: 767px) {
  .site-header { padding: calc(var(--spacing-sm) * 0.8) 0; }
  .main-nav {
    display: none; /* Hidden for burger */
    position: absolute;
    top: var(--header-height); /* Position below header */
    left: 0;
    width: 100%;
    background-color: var(--color-primary-dark);
    flex-direction: column;
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--color-border-dark);
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav ul {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .main-nav li {
    margin: var(--spacing-xs) 0;
    width: 100%;
    text-align: center;
  }
  .main-nav a {
    display: block;
    padding: var(--spacing-sm);
    width: 100%;
  }
  .burger-menu {
    display: block;
  }
  /* Burger Icon Animation when open */
  .burger-menu.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger-menu.is-active span:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.1rem; }

  .columns {
      margin-left: 0;
      margin-right: 0;
  }
  .column {
    padding-left: 0;
    padding-right: 0;
    width: 100% !important; /* Stack columns on mobile */
  }
  .contact-info-column { padding-left: var(--spacing-sm); } /* Reset from desktop */

  .footer-columns { flex-direction: column; }
  .footer-column { width: 100% !important; margin-bottom: var(--spacing-lg); } /* Full width on mobile */
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-section .cta-button {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
  }
  .section {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
  }
  .page-content-section {
    padding-top: calc(var(--header-height) + var(--spacing-md));
  }
}

/* Cookie Popup Specific Styles (minimal as requested in HTML) */
#cookie-popup p { color: var(--color-text-light); }
#cookie-popup button {
    background-color: var(--color-accent-main);
    color: var(--color-text-light);
}
#cookie-popup button:hover {
    background-color: var(--color-accent-main-darker);
}