/* ===================================
   CSS Variables & Root Configuration
   =================================== */
:root {
    /* Triadic Color Scheme - Eco-Minimalist Retro Theme */
    --primary-color: #4a7c2e;
    --primary-dark: #355a1f;
    --primary-light: #6ba845;
    
    --secondary-color: #2e4a7c;
    --secondary-dark: #1f355a;
    --secondary-light: #456ba8;
    
    --accent-color: #7c2e4a;
    --accent-dark: #5a1f35;
    --accent-light: #a8456b;
    
    /* Neutral Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #1a1a25;
    --bg-tertiary: #2a2a35;
    --bg-light: #f5f7f0;
    --bg-card: rgba(26, 26, 37, 0.95);
    
    /* Text Colors */
    --text-primary: #e8e8f0;
    --text-secondary: #d0d0e0;
    --text-dark: #2a2a35;
    --text-muted: #a8a8c0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(74, 124, 46, 0.9) 0%, rgba(46, 74, 124, 0.9) 100%);
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(74, 124, 46, 0.4);
    
    /* Typography */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Rubik', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* ===================================
   Global Styles & Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

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

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

a:hover {
    color: var(--primary-color);
}

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

ul {
    list-style: none;
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ===================================
   Global Button Styles
   =================================== */
.btn,
button:not(.navbar-toggler),
input[type="submit"] {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: var(--shadow-glow);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(74, 124, 46, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(74, 124, 46, 0.6);
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Read More Links */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-light);
    transition: var(--transition-normal);
    position: relative;
}

.read-more::after {
    content: '→';
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--primary-color);
    gap: 0.75rem;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* ===================================
   Header & Navigation
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 124, 46, 0.2);
    transition: var(--transition-normal);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-light) !important;
    letter-spacing: 0.05em;
    transition: var(--transition-normal);
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
    transform: scale(1.05);
}

.navbar-nav {
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-light) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border-color: var(--primary-color);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(74, 124, 46, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(107, 168, 69, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================================
   Hero Section
   =================================== */
.hero-section,
.page-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section::before,
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.7) 0%, rgba(26, 26, 37, 0.6) 100%);
    z-index: 1;
}

.hero-content,
.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.hero-title,
.page-title {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle,
.page-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: var(--spacing-lg);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.page-hero-simple {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-overlay);
    position: relative;
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .parallax {
        background-attachment: scroll;
    }
}

/* ===================================
   Section Titles & Common Elements
   =================================== */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===================================
   Card Styles (Global)
   =================================== */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(74, 124, 46, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    margin: 0 auto;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.card-content h3 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
}

.card-content p {
    color: var(--text-secondary);
    flex: 1;
}

/* ===================================
   Adventure Section
   =================================== */
.section-adventure {
    background: var(--bg-secondary);
}

.adventure-card {
    height: 100%;
}

/* ===================================
   Methodology Section
   =================================== */
.section-methodology {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.methodology-content {
    background: rgba(26, 26, 37, 0.9);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.methodology-content h3 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
}

/* ===================================
   Gallery Section
   =================================== */
.section-gallery {
    background: var(--bg-primary);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    margin: 0 auto;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.7) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ===================================
   Testimonials Section
   =================================== */
.section-testimonials {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.testimonial-card {
    background: rgba(26, 26, 37, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 124, 46, 0.3);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.testimonial-author {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===================================
   Events Section
   =================================== */
.section-events {
    background: var(--bg-secondary);
}

.event-card {
    height: 100%;
}

.event-card .card-image {
    height: 280px;
}

/* ===================================
   Resources Section
   =================================== */
.section-resources {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.resource-card {
    background: rgba(26, 26, 37, 0.95);
    backdrop-filter: blur(10px);
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
}

.resource-card h3 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
}

.resource-card .btn {
    margin-top: var(--spacing-sm);
}

/* ===================================
   Contact Section
   =================================== */
.section-contact,
.section-contact-main {
    background: var(--bg-primary);
}

.contact-info,
.contact-info-detailed {
    padding: var(--spacing-md);
}

.contact-info h3,
.contact-info-detailed h2 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-md);
}

.contact-details,
.contact-details-list {
    margin-top: var(--spacing-md);
}

.contact-item,
.contact-detail-item {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-color);
}

.contact-item h4,
.contact-detail-item h3 {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-detail-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(74, 124, 46, 0.2);
}

.contact-form-wrapper h2 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-md);
}

.contact-form .form-group {
    margin-bottom: var(--spacing-md);
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-family: var(--font-heading);
}

.contact-form .form-control {
    width: 100%;
    padding: 0.875rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(74, 124, 46, 0.3);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition-normal);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 124, 46, 0.2);
}

.contact-form select.form-control {
    cursor: pointer;
}

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

/* ===================================
   History Section
   =================================== */
.section-history {
    background: var(--bg-secondary);
}

.history-content {
    padding: var(--spacing-md);
}

.history-content p {
    margin-bottom: var(--spacing-md);
    text-align: justify;
}

.history-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

/* ===================================
   Mission Section
   =================================== */
.section-mission {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.mission-card {
    background: rgba(26, 26, 37, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(74, 124, 46, 0.3);
    text-align: center;
    transition: var(--transition-normal);
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.mission-card h3 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
}

/* ===================================
   Team Section
   =================================== */
.section-team {
    background: var(--bg-primary);
}

.team-card {
    text-align: center;
    height: 100%;
}

.team-card .card-image {
    height: 350px;
}

.team-role {
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
}

/* ===================================
   Careers Section
   =================================== */
.section-careers {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.careers-content {
    background: rgba(26, 26, 37, 0.9);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.careers-content h3 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
}

.careers-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
}

.careers-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

/* ===================================
   Location Section
   =================================== */
.section-location {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.location-info {
    background: rgba(26, 26, 37, 0.9);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.location-info h3 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
}

.location-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

/* ===================================
   FAQ Section
   =================================== */
.section-faq {
    background: var(--bg-secondary);
}

.faq-item {
    background: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-normal);
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--primary-light);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

/* ===================================
   Legal Content Pages
   =================================== */
.section-legal-content {
    background: var(--bg-secondary);
    padding-top: 100px;
}

.legal-wrapper {
    background: var(--bg-card);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(74, 124, 46, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.legal-wrapper h2 {
    color: var(--primary-light);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper p {
    margin-bottom: var(--spacing-sm);
    text-align: justify;
}

.legal-wrapper ul {
    list-style: disc;
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.legal-wrapper ul li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* ===================================
   Success Page
   =================================== */
.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-overlay);
    padding: var(--spacing-xl) var(--spacing-sm);
}

.success-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(26, 26, 37, 0.95);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.success-icon {
    margin: 0 auto var(--spacing-md);
    animation: scaleIn 0.5s ease-out;
}

.success-title {
    color: var(--primary-light);
    margin-bottom: var(--spacing-md);
}

.success-message {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.success-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.success-info {
    background: var(--bg-tertiary);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: left;
}

.success-info h3 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.success-info ul {
    list-style: none;
}

.success-info ul li {
    position: relative;
    padding-left: var(--spacing-md);
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.success-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===================================
   Footer
   =================================== */
.site-footer {
    background: var(--bg-secondary);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(74, 124, 46, 0.2);
}

.site-footer h3 {
    color: var(--primary-light);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.site-footer h4 {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.site-footer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-links a[target="_blank"]::before {
    content: '→';
    font-weight: bold;
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(74, 124, 46, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll-dependent animations with AOS library */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }
    
    .navbar-nav {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .hero-section,
    .page-hero {
        min-height: 70vh;
    }
    
    .card-image,
    .gallery-item {
        height: 220px;
    }
    
    .team-card .card-image {
        height: 280px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .legal-navigation {
        gap: var(--spacing-sm);
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .contact-form-wrapper,
    .legal-wrapper {
        padding: var(--spacing-md);
    }
    
    .success-wrapper {
        padding: var(--spacing-md);
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .btn {
        width: 100%;
    }
    
    .history-image,
    .location-image,
    .careers-image {
        height: 300px;
        margin-top: var(--spacing-md);
    }
    
    .site-footer {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }

    .achievement-card {
        padding: var(--spacing-md);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .gallery-item-about {
        aspect-ratio: 16 / 9;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .hours-note {
        font-size: 0.85rem;
    }

    .legal-content {
        padding: var(--spacing-md);
    }

    .legal-navigation {
        flex-direction: column;
    }

    .legal-navigation .btn {
        width: 100%;
    }

    .cta-content-about,
    .cta-content {
        padding: 0 var(--spacing-md);
    }

    .team-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .card-content {
        padding: var(--spacing-sm);
    }
}

/* ===================================
   About Page - Additional Classes
   =================================== */
.section-achievements {
    background: var(--bg-secondary);
}

.achievement-card {
    background: var(--bg-card);
    border: 1px solid rgba(74, 124, 46, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.achievement-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-light);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.achievement-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.achievement-card p {
    color: var(--text-secondary);
    margin: 0;
}

.section-cta-about {
    background: var(--gradient-overlay);
    padding: var(--spacing-xl) var(--spacing-md);
}

.cta-content-about {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-about h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-content-about p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.section-gallery-about {
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item-about {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 4 / 3;
    transition: var(--transition-normal);
}

.gallery-item-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item-about:hover img {
    transform: scale(1.1);
}

.gallery-item-about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 124, 46, 0.4);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 2;
}

.gallery-item-about:hover::after {
    opacity: 1;
}

.history-text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.team-bio {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.team-content {
    padding: var(--spacing-md);
    flex: 1;
}

.team-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card-about {
    background: var(--bg-card);
    border: 1px solid rgba(74, 124, 46, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    transition: var(--transition-normal);
    height: 100%;
}

.testimonial-card-about:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-content-about {
    text-align: center;
}

.testimonial-text-about {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author-about {
    color: var(--primary-light);
    margin-bottom: 0.25rem;
}

.testimonial-role-about {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.section-testimonials-about {
    background: var(--bg-secondary);
}

/* ===================================
   Contact Page - Additional Classes
   =================================== */
.section-contact-form {
    background: var(--bg-secondary);
}

.section-contact-info {
    background: var(--bg-secondary);
}

.section-contact-cta {
    background: var(--gradient-overlay);
    padding: var(--spacing-xl) var(--spacing-md);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.section-hours {
    background: var(--bg-secondary);
}

.section-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.section-map {
    background: var(--bg-secondary);
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info-card {
    text-align: center;
}

.contact-info-card .card-content {
    padding: var(--spacing-lg);
}

.contact-info-card h3 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
}

.contact-info-card p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-light);
    transition: var(--transition-normal);
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.hours-card {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(74, 124, 46, 0.2);
    border-radius: var(--radius-md);
}

.hours-card .card-content {
    padding: var(--spacing-lg);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.hours-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item .day {
    color: var(--primary-light);
    font-weight: 600;
    font-family: var(--font-heading);
}

.hours-item .time {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.hours-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ===================================
   Legal Pages - Additional Classes
   =================================== */
.legal-content {
    background: var(--bg-card);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(74, 124, 46, 0.2);
}

.legal-section {
    margin-bottom: var(--spacing-lg);
}

.legal-section h2 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.legal-section h2:first-child {
    margin-top: 0;
}

.legal-section h3 {
    color: var(--text-primary);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.legal-section p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
    text-align: justify;
}

.legal-page {
    background: var(--bg-secondary);
    padding-top: 100px;
    padding-bottom: var(--spacing-xl);
}

.legal-footer {
    background: var(--bg-tertiary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    margin-top: var(--spacing-xl);
}

.legal-footer p {
    color: var(--text-primary);
    margin: 0;
}

.legal-navigation {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.update-date,
.last-update {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   Success Page - Additional Classes
   =================================== */
.success-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-overlay);
    padding: var(--spacing-lg);
}

.success-message {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.success-submessage {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .site-header,
    .site-footer,
    .btn,
    .contact-form {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

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

.justify-content-center {
    justify-content: center;
}

.gap-1 { gap: var(--spacing-xs); }
.gap-2 { gap: var(--spacing-sm); }
.gap-3 { gap: var(--spacing-md); }

/* ===================================
   Accessibility
   =================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===================================
   Loading States
   =================================== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}