/* CSS Design System for Business Consulting Website - Neomorphism with Hyperrealistic Textures */

/* ====== CSS VARIABLES (ROOT) ====== */
:root {
    /* Triadic Color Scheme */
    --primary-color: #4760e5;
    --primary-dark: #2c45c8;
    --primary-light: #6a80ff;
    
    --secondary-color: #e54760;
    --secondary-dark: #c8293c;
    --secondary-light: #ff6a80;
    
    --tertiary-color: #47e560;
    --tertiary-dark: #29c843;
    --tertiary-light: #6aff80;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f7f9fc;
    --light-gray: #e6ecf5;
    --medium-gray: #c4d0e3;
    --dark-gray: #5e6c84;
    --black: #172b4d;
    
    /* Background Colors */
    --bg-primary: var(--off-white);
    --bg-secondary: var(--white);
    --bg-tertiary: #f0f4fa;
    
    /* Text Colors */
    --text-primary: var(--black);
    --text-secondary: var(--dark-gray);
    --text-light: var(--white);
    
    /* Shadow Colors */
    --shadow-light: rgba(255, 255, 255, 0.8);
    --shadow-dark: rgba(179, 186, 197, 0.4);
    --shadow-darker: rgba(98, 114, 164, 0.2);
    
    /* Neomorphism Shadows */
    --neo-shadow-flat: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    --neo-shadow-pressed: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light);
    --neo-shadow-floating: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-round: 50%;
    
    /* Font Sizes */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-md: 1rem;
    --font-lg: 1.25rem;
    --font-xl: 1.5rem;
    --font-xxl: 2rem;
    --font-xxxl: 2.5rem;
    --font-jumbo: 3.5rem;
    
    /* Line Heights */
    --line-height-xs: 1;
    --line-height-sm: 1.2;
    --line-height-md: 1.5;
    --line-height-lg: 1.8;
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    --gradient-tertiary: linear-gradient(135deg, var(--tertiary-color), var(--tertiary-dark));
    --gradient-light: linear-gradient(135deg, var(--white), var(--light-gray));
    
    /* Z-index layers */
    --z-base: 1;
    --z-elevated: 10;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-popover: 500;
    --z-tooltip: 600;
}

/* ====== RESET AND BASE STYLES ====== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: var(--font-md);
    line-height: var(--line-height-md);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: var(--line-height-sm);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

h1 {
    font-size: var(--font-jumbo);
    font-weight: 700;
}

h2 {
    font-size: var(--font-xxxl);
    margin-bottom: var(--space-lg);
}

h3 {
    font-size: var(--font-xl);
    margin-bottom: var(--space-md);
}

h4 {
    font-size: var(--font-lg);
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

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

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

ul {
    list-style-type: none;
}

section {
    padding: var(--space-xxl) 0;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ====== UTILITY CLASSES ====== */
.text-center {
    text-align: center;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }
.mb-6 { margin-bottom: var(--space-xxl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }
.mt-6 { margin-top: var(--space-xxl); }

.py-1 { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
.py-2 { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-3 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-4 { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-5 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-6 { padding-top: var(--space-xxl); padding-bottom: var(--space-xxl); }

.px-1 { padding-left: var(--space-xs); padding-right: var(--space-xs); }
.px-2 { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-3 { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-4 { padding-left: var(--space-lg); padding-right: var(--space-lg); }
.px-5 { padding-left: var(--space-xl); padding-right: var(--space-xl); }
.px-6 { padding-left: var(--space-xxl); padding-right: var(--space-xxl); }

/* ====== BUTTONS ====== */
.btn, button, input[type="submit"] {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: var(--font-md);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-medium);
    box-shadow: var(--neo-shadow-flat);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before, button::before, input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    transition: width var(--transition-medium) ease-in-out;
    opacity: 0.7;
}

.btn:hover::before, button:hover::before, input[type="submit"]:hover::before {
    width: 100%;
}

.btn:active, button:active, input[type="submit"]:active {
    box-shadow: var(--neo-shadow-pressed);
    transform: translateY(2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary::before {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary::before {
    background-color: var(--secondary-dark);
}

.btn-tertiary {
    background-color: var(--tertiary-color);
    color: var(--white);
}

.btn-tertiary::before {
    background-color: var(--tertiary-dark);
}

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

.btn-outline::before {
    background-color: var(--primary-color);
}

.btn-outline:hover {
    color: var(--white);
}

.btn-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0;
    position: relative;
    transition: all var(--transition-medium);
    box-shadow: none;
    background: none;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-medium);
}

.btn-link:hover {
    color: var(--primary-dark);
}

.btn-link:hover::after {
    width: 100%;
}

.btn-link:active {
    transform: none;
    box-shadow: none;
}

/* ====== HEADER AND NAVIGATION ====== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md) 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: var(--z-fixed);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-medium);
}

.header.scrolled {
    padding: var(--space-sm) 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: var(--font-xl);
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav ul {
    display: flex;
    gap: var(--space-lg);
}

.desktop-nav a {
    color: var(--text-primary);
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    transition: all var(--transition-fast);
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all var(--transition-medium);
    transform: translateX(-50%);
}

.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--primary-color);
}

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

.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-primary);
    transition: all var(--transition-medium);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-secondary);
    padding: var(--space-xxl) var(--space-xl);
    z-index: var(--z-dropdown);
    transition: right var(--transition-slow);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-xxl);
}

.mobile-nav a {
    color: var(--text-primary);
    font-size: var(--font-lg);
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
}

.mobile-nav a:hover, .mobile-nav a.active {
    color: var(--primary-color);
}

/* ====== HERO SECTION ====== */
.hero-section {
    padding: 0;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: var(--space-xxl) 0;
}

.hero-content h1 {
    font-size: var(--font-jumbo);
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: var(--font-lg);
    color: var(--white);
    margin-bottom: var(--space-xl);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
}

/* ====== FEATURES SECTION ====== */
.features-section {
    background-color: var(--bg-primary);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-header h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: var(--font-lg);
    max-width: 600px;
    margin: var(--space-lg) auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--neo-shadow-flat);
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neo-shadow-floating);
}

.card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

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

.card-content h3 {
    font-size: var(--font-xl);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.card-content p {
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
    line-height: var(--line-height-lg);
}

/* ====== PROJECTS SECTION ====== */
.projects-section {
    background-color: var(--bg-tertiary);
    position: relative;
}

.project-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}

.slider-container {
    display: flex;
    transition: transform var(--transition-slow);
}

.slide {
    min-width: 100%;
    padding: 0 var(--space-md);
    box-sizing: border-box;
}

.project-stats {
    display: flex;
    justify-content: space-around;
    margin-top: var(--space-lg);
    width: 100%;
}

.stat {
    text-align: center;
}

.stat .value {
    display: block;
    font-size: var(--font-xxl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-xs);
}

.stat .label {
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--space-xl);
    gap: var(--space-xl);
}

.slider-dots {
    display: flex;
    gap: var(--space-sm);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.prev-btn, .next-btn {
    background-color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--neo-shadow-flat);
    transition: all var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
    box-shadow: var(--neo-shadow-floating);
}

.prev-btn:active, .next-btn:active {
    box-shadow: var(--neo-shadow-pressed);
}

.prev-btn::before, .next-btn::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--text-primary);
    border-right: 2px solid var(--text-primary);
    transition: all var(--transition-fast);
}

.prev-btn::before {
    transform: rotate(-135deg);
}

.next-btn::before {
    transform: rotate(45deg);
}

/* ====== INSTRUCTORS SECTION ====== */
.instructors-section {
    background-color: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.social-links {
    margin-top: var(--space-md);
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.social-links a {
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    background-color: var(--light-gray);
    text-decoration: none;
    font-size: var(--font-sm);
    box-shadow: var(--neo-shadow-flat);
}

.social-links a:hover {
    color: var(--white);
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--neo-shadow-floating);
}

.social-links a.linkedin:hover {
    background-color: #0077b5;
}

.social-links a.twitter:hover {
    background-color: #1da1f2;
}

.social-links a.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-links a.facebook:hover {
    background-color: #4267b2;
}

/* ====== BEHIND THE SCENES SECTION ====== */
.behind-scenes-section {
    background-color: var(--bg-tertiary);
    position: relative;
}

.behind-scenes-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xxl);
    align-items: center;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.text-content h3 {
    margin-top: var(--space-xl);
}

.text-content h3:first-child {
    margin-top: 0;
}

.image-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.methodology-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.step {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.step .number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: var(--font-lg);
    box-shadow: var(--neo-shadow-flat);
}

.step .text {
    font-weight: 600;
}

/* ====== PARTNERS SECTION ====== */
.partners-section {
    background-color: var(--bg-secondary);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xxl);
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform var(--transition-medium);
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item img {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: var(--space-md);
    filter: grayscale(100%);
    transition: filter var(--transition-medium);
}

.partner-item:hover img {
    filter: grayscale(0%);
}

.partner-item p {
    font-weight: 600;
    color: var(--text-secondary);
}

/* ====== RESOURCES SECTION ====== */
.resources-section {
    background-color: var(--bg-primary);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.resource-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--neo-shadow-flat);
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neo-shadow-floating);
}

.resource-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    background-color: var(--light-gray);
    transition: all var(--transition-fast);
    margin-top: var(--space-md);
    box-shadow: var(--neo-shadow-flat);
}

.resource-link:hover {
    color: var(--white);
    background-color: var(--primary-color);
    box-shadow: var(--neo-shadow-floating);
}

/* ====== SUSTAINABILITY SECTION ====== */
.sustainability-section {
    background-color: var(--bg-tertiary);
    position: relative;
}

.sustainability-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xxl);
    align-items: center;
}

.sustainability-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: var(--space-sm);
}

.icon.eco {
    background-image: url('image/icon-eco.jpg');
}

.icon.social {
    background-image: url('image/icon-social.jpg');
}

/* ====== CONTACT SECTION ====== */
.contact-section {
    background-color: var(--bg-secondary);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xxl);
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.info-item .icon {
    margin-right: var(--space-md);
}

.map-container {
    margin-top: var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--neo-shadow-flat);
}

.business-hours {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.business-hours h4 {
    margin-bottom: var(--space-md);
}

.business-hours p {
    margin-bottom: var(--space-sm);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--text-primary);
}

input, textarea, select {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    background-color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: var(--font-md);
    transition: all var(--transition-fast);
    box-shadow: var(--neo-shadow-pressed);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(71, 96, 229, 0.2);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-group.checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

/* ====== FOOTER SECTION ====== */
.footer-section {
    background-color: var(--text-primary);
    color: var(--white);
    padding: var(--space-xxl) 0 var(--space-md);
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.link-column {
    flex: 1;
    min-width: 150px;
}

.link-column h3 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: var(--font-lg);
    position: relative;
}

.link-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-light);
}

.link-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.link-column a {
    color: var(--medium-gray);
    transition: all var(--transition-fast);
}

.link-column a:hover {
    color: var(--white);
    padding-left: var(--space-sm);
}

.footer-social {
    flex: 1;
    min-width: 250px;
}

.footer-social h3 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: var(--font-lg);
    position: relative;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-social .social-links {
    justify-content: flex-start;
    margin-bottom: var(--space-xl);
}

.footer-social .social-links a {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    box-shadow: none;
}

.newsletter-form input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: var(--space-md) var(--space-lg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    color: var(--medium-gray);
}

/* ====== MODAL ====== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: var(--z-modal);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    animation: fadeIn var(--transition-medium);
}

.modal-content {
    background-color: var(--bg-secondary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--neo-shadow-floating);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn var(--transition-medium);
}

.close-modal {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: var(--font-xxl);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.close-modal:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* ====== SUCCESS PAGE ====== */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    text-align: center;
    padding: var(--space-xl);
}

.success-content {
    background-color: var(--bg-secondary);
    padding: var(--space-xxl);
    border-radius: var(--radius-lg);
    box-shadow: var(--neo-shadow-flat);
    max-width: 600px;
    width: 100%;
}

.success-content h1 {
    margin-bottom: var(--space-lg);
    color: var(--primary-color);
}

.success-content p {
    margin-bottom: var(--space-xl);
}

/* ====== PRIVACY AND TERMS PAGES ====== */
.page-content {
    padding-top: 100px;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: var(--space-xxl);
}

.page-content h1 {
    margin-bottom: var(--space-xl);
}

.page-content h2 {
    margin-top: var(--space-xxl);
    margin-bottom: var(--space-lg);
}

.page-content p, .page-content ul {
    margin-bottom: var(--space-lg);
}

.page-content ul {
    padding-left: var(--space-xl);
    list-style-type: disc;
}

.page-content ul li {
    margin-bottom: var(--space-sm);
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes floatingAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.floating-animation {
    animation: floatingAnimation 3s ease-in-out infinite;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 992px) {
    :root {
        --font-jumbo: 2.8rem;
        --font-xxxl: 2.2rem;
        --font-xxl: 1.8rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .behind-scenes-content, .sustainability-content {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .image-content {
        order: -1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --font-jumbo: 2.5rem;
        --font-xxxl: 2rem;
        --font-xxl: 1.6rem;
        --font-xl: 1.4rem;
        --font-lg: 1.2rem;
    }
    
    section {
        padding: var(--space-xl) 0;
    }
    
    .card-image {
        height: 250px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-form {
        order: -1;
        margin-bottom: var(--space-xl);
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .footer-links {
        gap: var(--space-lg);
    }
    
    .link-column {
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    :root {
        --font-jumbo: 2.2rem;
        --font-xxxl: 1.8rem;
        --font-xxl: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .partner-item {
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .project-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
}

*{
    opacity: 1 !important;
}
html,body{
    overflow-x: hidden;
}