/* ROOT VARIABLES ========================================== */
:root {
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;

    /* Pastel Color Palette */
    --color-primary: #A2D2FF; /* Pastel Blue */
    --color-primary-dark: #78A2CC; /* Darker Pastel Blue */
    --color-secondary: #FFB6C1; /* Light Pink / Pastel Pink */
    --color-accent: #CDB4DB; /* Pastel Purple/Lavender */
    --color-accent-light: #E6E6FA; /* Very Light Lavender (Contact BG) */
    
    --color-background-light: #FFFFFF;
    --color-background-page: #FAF7F0; /* Creamy off-white for overall page */
    --color-background-section-light: #F0F8FF; /* AliceBlue (Features) */
    --color-background-section-alt: #FFF0F5; /* LavenderBlush (Workshops) */
    --color-background-section-press: #F5F5DC; /* Beige (Press/Testimonials) */
    --color-background-success: #F0FFF0; /* Honeydew (Success Page) */

    --color-text-dark: #333333;
    --color-text-darker: #222222;
    --color-text-light: #FFFFFF;
    --color-text-muted: #6c757d;
    --color-text-link: var(--color-primary-dark);
    --color-text-link-hover: var(--color-primary);

    --color-border: #DDDDDD;
    --color-success: #28a745;
    --color-error: #dc3545;

    /* Gradients & Shadows */
    --gradient-pastel-bg: linear-gradient(135deg, var(--color-background-section-light), var(--color-background-section-alt));
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 30px rgba(0,0,0,0.12);

    /* Typography */
    --font-size-base: 16px;
    --font-size-sm: 0.875rem; /* 14px */
    --font-size-md: 1rem;    /* 16px */
    --font-size-lg: 1.125rem; /* 18px */
    --font-size-xl: 1.25rem;  /* 20px */

    --line-height-base: 1.6;
    --line-height-heading: 1.3;

    /* Spacing & Borders */
    --spacing-xs: 0.25rem; /* 4px */
    --spacing-sm: 0.5rem;  /* 8px */
    --spacing-md: 1rem;    /* 16px */
    --spacing-lg: 1.5rem;  /* 24px */
    --spacing-xl: 2rem;    /* 32px */
    --spacing-xxl: 3rem;   /* 48px */
    --section-padding: 4rem 0; /* 64px */

    --border-radius-small: 5px;
    --border-radius-medium: 10px;
    --border-radius-large: 15px;
    --border-radius-round: 50%;

    /* Transitions */
    --transition-speed: 0.3s;
    --transition-easing: ease-in-out;
    --transition-default: var(--transition-speed) var(--transition-easing);

    /* Z-index */
    --z-index-header: 1000;
    --z-index-modal: 2000;
    --z-index-cookie-popup: 9999; /* As per HTML */
}

/* MODERN NORMALIZE COMPATIBILITY & GLOBAL STYLES ================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text-dark);
    background-color: var(--color-background-page);
    line-height: var(--line-height-base);
    overflow-x: hidden; /* Prevent horizontal scroll from AOS animations */
}

.main-container {
    overflow: hidden; /* Contains parallax and AOS animations */
    position: relative;
}

/* TYPOGRAPHY ======================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-text-darker);
    line-height: var(--line-height-heading);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); } /* Adaptive Typography */
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-md);
    color: var(--color-text-dark);
}

a {
    color: var(--color-text-link);
    text-decoration: none;
    transition: color var(--transition-default);
}

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

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

.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-medium);
}

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

.section-padding {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.text-meta {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.content-column { /* For privacy, terms, about pages */
    max-width: 800px; /* Equivalent to is-two-thirds on a 1200px container */
    margin-left: auto;
    margin-right: auto;
}

/* Hide elements visually but keep them accessible */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* BUTTONS (GLOBAL) ============================================== */
.btn, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: var(--font-size-md);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--border-radius-small);
    padding: var(--spacing-sm) var(--spacing-lg);
    transition: all var(--transition-default);
    white-space: nowrap;
    user-select: none; /* Prevent text selection */
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-darker);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-text-light);
    transform: translateY(-2px); /* Micro-interaction */
    box-shadow: var(--shadow-soft);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-secondary:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    transform: translateY(-2px);
}

.btn-hero {
    font-size: var(--font-size-lg);
    padding: var(--spacing-md) var(--spacing-xl);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FORMS (GLOBAL) ============================================== */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-darker);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-small);
    font-family: var(--font-secondary);
    font-size: var(--font-size-md);
    color: var(--color-text-dark);
    background-color: var(--color-background-light);
    transition: border-color var(--transition-default), box-shadow var(--transition-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,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb, 162, 210, 255), 0.5); /* Define --color-primary-rgb if needed */
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* For placeholder color, if needed */
::placeholder {
    color: var(--color-text-muted);
    opacity: 1; 
}


/* HEADER & NAVIGATION ======================================== */
.site-header {
    background-color: rgba(255, 255, 255, 0.9); /* Slight glassmorphism */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: var(--spacing-md) 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-index-header);
    box-shadow: var(--shadow-soft);
    transition: background-color var(--transition-default), box-shadow var(--transition-default);
}

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

.logo {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-darker);
    text-decoration: none;
}
.logo:hover {
    color: var(--color-primary);
}

.main-navigation .nav-list {
    list-style: none;
    display: flex;
    gap: var(--spacing-lg);
}

.main-navigation .nav-list a {
    font-family: var(--font-primary);
    font-size: var(--font-size-md);
    color: var(--color-text-dark);
    text-decoration: none;
    padding: var(--spacing-xs) 0;
    position: relative;
    transition: color var(--transition-default);
}

.main-navigation .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-default);
}

.main-navigation .nav-list a:hover,
.main-navigation .nav-list a.active { /* Add .active class with JS for current page */
    color: var(--color-primary);
}

.main-navigation .nav-list a:hover::after,
.main-navigation .nav-list a.active::after {
    width: 100%;
}

.burger-menu {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* Above nav list on mobile */
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text-darker);
    margin: 5px 0;
    transition: all var(--transition-default);
    border-radius: 3px;
}


/* HERO SECTION ================================================ */
.hero-section {
    position: relative;
    color: var(--color-text-light);
    padding: 8rem 0 6rem; /* Adjust padding to accommodate fixed header */
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh; /* Ensure it's substantial but not fixed 400px */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Adaptive Hero Title */
    color: var(--color-text-light); /* Enforced by prompt */
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-light); /* Enforced by prompt */
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.animated-icon-placeholder {
    margin-top: var(--spacing-xl);
}
.animated-icon-placeholder svg { /* Basic style for the CPU icon */
    stroke: var(--color-text-light); /* Ensure icon color matches text */
    /* Add morphing animations via JS or CSS keyframes if desired */
}


/* COMMON SECTION STYLING ====================================== */
.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-text-darker);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-bottom: var(--spacing-sm);
}
/* Optional: underline effect for section titles */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
}
.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

/* Specific section title styling when on dark/image backgrounds (from HTML) */
.innovation-section .section-title { /* Example from HTML */
    color: var(--color-text-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}
.innovation-section .section-title::after {
    background-color: var(--color-text-light); /* Adjust underline for light text */
}

/* CARD STYLING (GLOBAL) ======================================= */
.card {
    background-color: var(--color-background-light);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform var(--transition-default), box-shadow var(--transition-default);
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    text-align: center;   /* Center text content */
    height: 100%; /* For equal height in grids */
}

.card:hover {
    transform: translateY(-5px) scale(1.02); /* Morphing effect */
    box-shadow: var(--shadow-medium);
}

.card-image {
    width: 100%;
    overflow: hidden; /* Ensures image corners match card radius if image is first child */
}

.card-image img {
    width: 100%;
    height: 200px; /* Fixed height for consistent card appearance */
    object-fit: cover; /* Ensures image covers the area without distortion */
    display: block; /* Remove extra space below image */
    margin: 0 auto; /* Center image if it's smaller than container (though object-fit:cover handles this) */
}

/* Specific card image container for features icons */
.feature-card .card-image {
    padding: var(--spacing-lg) 0 var(--spacing-md); /* Space for icon */
    height: auto; /* Override fixed height for icons */
}
.feature-card .card-image svg {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    margin: 0 auto; /* Center SVG */
    transition: transform var(--transition-default);
}
.feature-card:hover .card-image svg {
    transform: scale(1.1) rotate(5deg); /* Morph icon on hover */
}


.card-content {
    padding: var(--spacing-lg);
    flex-grow: 1; /* Allows content to take available space for equal height cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes button to bottom if present */
}

.card-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-darker);
}

.card-content p {
    font-size: var(--font-size-md);
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
    flex-grow: 1; /* Pushes button to bottom */
}
.card-content .btn {
    margin-top: auto; /* Pushes button to the bottom of the card */
    align-self: center; /* Center button if card text is centered */
}


/* VISION SECTION ============================================== */
.vision-content .image-container {
    margin-top: var(--spacing-xl);
    text-align: center;
}
.vision-content .image-container img {
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
}


/* FEATURES SECTION ============================================ */
.features-section {
    background-color: var(--color-background-section-light);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}
.feature-title {
    font-size: var(--font-size-lg);
    color: var(--color-text-darker);
    margin-bottom: var(--spacing-sm);
}


/* OUR PROCESS SECTION ========================================= */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.process-step {
    display: flex;
    align-items: flex-start; /* Align number and content to top */
    gap: var(--spacing-lg);
}

.step-number-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    position: relative;
    z-index: 1;
    background-color: var(--color-background-page); /* Match page BG to "cut through" line */
    padding: 0 var(--spacing-xs);
}

.progress-indicator-line {
    width: 3px;
    height: 100px; /* Adjust as needed */
    background-color: var(--color-primary-dark);
    opacity: 0.5;
    /* Removed margin-top: -var(--spacing-sm); as step-number handles BG overlap */
}

/* Hide line for the last step number if it's visually better */
.process-step:last-child .progress-indicator-line {
    display: none;
}


.step-content {
    flex: 1;
}

.step-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-darker);
}

/* INNOVATION SECTION ========================================== */
.innovation-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    color: var(--color-text-light);
    padding: var(--section-padding);
}
.innovation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    z-index: 1;
}
.innovation-section .container {
    position: relative;
    z-index: 2;
}
.innovation-section .section-title,
.innovation-section p {
    color: var(--color-text-light); /* Override default dark text for sections */
}
.stats-widgets-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xxl);
}
.stat-widget {
    text-align: center;
    padding: var(--spacing-md);
    min-width: 180px;
}
.stat-value {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-primary); /* Light and bright for contrast */
    display: block;
    margin-bottom: var(--spacing-xs);
}
.stat-label {
    font-size: var(--font-size-md);
    color: var(--color-text-light);
    opacity: 0.9;
}

/* PROJECTS, TESTIMONIALS (PRESS) - SLIDERS ================= */
.custom-slider { /* Basic placeholder for slider styling */
    /* JS will likely handle slider functionality. This is for cards within a slider. */
    /* Add styles for navigation arrows/dots if you implement them */
    display: flex; /* If it's a simple flex-based scrollable container */
    overflow-x: auto; /* For basic horizontal scroll */
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-md); /* Space for scrollbar */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.custom-slider::-webkit-scrollbar { /* Chrome, Safari, Opera */
    display: none;
}

.custom-slider .project-card,
.custom-slider .testimonial-card {
    min-width: 300px; /* Ensure cards have a minimum width in the slider */
    flex-shrink: 0; /* Prevent cards from shrinking */
}

.project-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}
.project-description {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-md);
}

/* Testimonial specific card styles */
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-round);
    object-fit: cover;
    margin: 0 auto var(--spacing-md); /* Center avatar */
    border: 3px solid var(--color-primary);
}
.testimonial-text {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-md);
}
.testimonial-author {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-text-darker);
    margin-bottom: var(--spacing-xs);
}
.testimonial-location {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}
.testimonials-section {
    background-color: var(--color-background-section-press);
}

/* WORKSHOPS SECTION =========================================== */
.workshops-section {
    background-color: var(--color-background-section-alt);
}
.workshops-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}
.workshop-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    padding: var(--spacing-lg);
    background-color: var(--color-background-light);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-default), box-shadow var(--transition-default);
}
.workshop-item:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow-medium);
}
.workshop-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: var(--spacing-xs); /* Align with text better */
}
.workshop-details {
    flex-grow: 1;
}
.workshop-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}
.workshop-meta {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    display: block;
    margin-top: var(--spacing-md);
}

/* EVENTS SECTION ============================================== */
.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}
.event-item .card-image img { /* Event card images might be more like banners */
    height: 200px; /* Consistent height */
}
.event-date {
    display: block;
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}
.event-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
}
.event-location {
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}
.event-description {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-md);
}


/* EXTERNAL RESOURCES SECTION ================================== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}
.resource-card.card { /* Ensure these cards are styled correctly */
    text-align: left; /* Override global card center for resource text */
    align-items: flex-start; /* Override global card center for resource text */
}
.resource-card .card-content {
    align-items: flex-start;
}
.resource-title {
    font-size: var(--font-size-lg);
}
.resource-title a {
    color: var(--color-text-darker);
}
.resource-title a:hover {
    color: var(--color-primary);
}
.resource-description {
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
}

/* CONTACT SECTION ============================================= */
.contact-section {
    background-color: var(--color-accent-light);
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr; /* Default for mobile */
    gap: var(--spacing-xxl);
}
@media (min-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 2fr 1fr; /* Form takes more space */
    }
}

.contact-form-container, .contact-info-container {
    padding: var(--spacing-xl);
    background-color: var(--color-background-light);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-soft);
}
.contact-info-title, .contact-subtitle {
    font-family: var(--font-primary);
    color: var(--color-text-darker);
    margin-bottom: var(--spacing-md);
}
.contact-info-container p {
    margin-bottom: var(--spacing-sm);
    display: flex; /* For icon alignment */
    align-items: center;
    gap: var(--spacing-sm);
}
.contact-info-container .icon-placeholder {
    display: inline-block; /* Placeholder for actual icons */
    width: 20px;
    height: 20px;
    /* background-color: var(--color-accent); /* Example */
    /* mask-image: url('path-to-icon.svg'); /* For SVG icons */
    /* -webkit-mask-image: url('path-to-icon.svg'); */
    /* mask-size: contain; */
    /* mask-repeat: no-repeat; */
    flex-shrink: 0;
}
.contact-info-container .mail-icon::before { content: '📧'; font-size: 1.2em; } /* Basic emoji for placeholder */
.contact-info-container .phone-icon::before { content: '📞'; font-size: 1.2em; }
.contact-info-container .map-pin-icon::before { content: '📍'; font-size: 1.2em; }
.contact-info-container .web-icon::before { content: '🌐'; font-size: 1.2em; }


.contact-map-placeholder img,
.contact-map-full img {
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-soft);
    margin-top: var(--spacing-md);
}

/* FOOTER ====================================================== */
.site-footer {
    background-color: var(--color-text-darker);
    color: var(--color-text-light);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    font-size: var(--font-size-sm);
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}
.footer-column h4 {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}
.footer-column p,
.footer-column ul {
    margin-bottom: var(--spacing-sm);
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column a {
    color: var(--color-text-light);
    opacity: 0.8;
    text-decoration: none;
}
.footer-column a:hover {
    opacity: 1;
    color: var(--color-primary);
    text-decoration: underline;
}
.social-links li {
    margin-bottom: var(--spacing-xs);
}
.social-links a { /* Text links as requested */
    font-weight: 500;
}
.copyright {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* PAGE-SPECIFIC STYLES ======================================= */

/* Page Titles (for about, contacts, privacy, terms) */
.page-title-section {
    position: relative;
    padding: 6rem 0 4rem; /* Space for fixed header */
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0; /* Header already creates space */
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-title-section .page-title-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));
    z-index: 1;
}
.page-title-section .container {
    position: relative;
    z-index: 2;
}
.page-title-section h1, .page-title-section p {
    color: var(--color-text-light); /* Enforced by prompt */
}

/* About Page Specifics */
#company-story .image-container,
#our-values .value-item .card-image svg {
    margin: var(--spacing-md) auto;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}
.value-item.card {
    background-color: var(--color-background-light); /* Ensure cards have distinct BG on colored section */
}
.value-item .card-image svg {
    width: 48px;
    height: 48px;
    color: var(--color-accent); /* Use accent for value icons */
}

/* Detailed Contact Page */
#detailed-contact .section-title-sub {
    text-align: left;
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-xl);
}
#detailed-contact .section-title-sub::after {
    display: none; /* No underline for sub-titles */
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Form larger */
    gap: var(--spacing-xxl);
}
.contact-info-block {
    margin-bottom: var(--spacing-lg);
}
.contact-info-block h3 {
    color: var(--color-text-darker);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

/* Privacy & Terms Pages */
#privacy-content, #terms-content {
    padding-top: 100px; /* Offset for fixed header - ALREADY SET IN HTML AS PAGE-TITLE-SECTION */
    /* If page-title-section is not used, this padding would be needed directly on main or section */
}
#privacy-content h2, #terms-content h2 { /* section-title-sub in HTML */
    font-size: var(--font-size-xl);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-text-darker);
    text-align: left;
}
#privacy-content h2::after, #terms-content h2::after {
    display: none; /* No underline for these subheadings */
}
#privacy-content p, #terms-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

/* Success Page */
.success-page-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-background-success);
}
.success-page-section .container { /* ensure the container itself is part of the centering logic */
    width: 100%;
}
.success-icon svg {
    width: 80px;
    height: 80px;
    stroke: var(--color-success);
    margin-bottom: var(--spacing-lg);
}
.success-title {
    color: var(--color-text-darker);
    margin-bottom: var(--spacing-md);
}
.success-message {
    font-size: var(--font-size-lg);
    color: var(--color-text-dark);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

/* RESPONSIVE STYLES =========================================== */
@media (max-width: 992px) {
    .main-navigation .nav-list {
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: var(--spacing-sm) 0;
    }
    .header-container {
        padding-left: var(--spacing-md); /* Ensure space for logo/burger on small screens */
        padding-right: var(--spacing-md);
    }
    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%; /* Hidden off-screen */
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-background-light);
        box-shadow: var(--shadow-medium);
        padding-top: 80px; /* Space for header */
        transition: left var(--transition-default);
        z-index: 999; /* Below header, above content */
        overflow-y: auto;
    }
    .main-navigation.active {
        left: 0; /* Slide in */
    }
    .main-navigation .nav-list {
        flex-direction: column;
        align-items: center;
        padding: var(--spacing-xl) 0;
        gap: var(--spacing-xl);
    }
    .main-navigation .nav-list a {
        font-size: var(--font-size-lg);
    }
    .burger-menu {
        display: block;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-section {
        padding-top: 6rem; /* Adjust for header */
    }
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .hero-subtitle {
        font-size: var(--font-size-md);
    }

    .section-padding {
        padding: 3rem 0;
    }
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .contact-grid,
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stack on mobile */
    }

    .footer-container {
        grid-template-columns: 1fr; /* Stack footer columns */
        text-align: center;
    }
    .footer-column ul {
        display: inline-block; /* Center list items if text-align center on parent */
        text-align: left; /* Keep list text left-aligned */
    }
    .social-links {
        display: flex;
        justify-content: center;
        gap: var(--spacing-md);
    }
    .social-links li {
        margin-bottom: 0;
    }
}

/* AOS Animation Overrides (Optional) */
[data-aos] {
    /* Potential global AOS settings */
    /* e.g., transition-duration: 0.8s !important; */
}
.burger-menu{
    display: none;
}