/* 
   Style.css for ConsultAR - Professional Consulting Agency in Argentina
   Design System: Glassmorphism with Asymmetric Balance
   Color Scheme: Tetrad
   Animation Style: 3D Effects
   Fonts: Raleway (headings), Open Sans (body)
*/

/* ===== ROOT VARIABLES ===== */
:root {
    /* Primary Colors - Tetrad Scheme */
    --primary-color: #2E5BFF;       /* Royal Blue */
    --primary-dark: #1A3BBF;        /* Darker Blue */
    --primary-light: #8DA9FF;       /* Lighter Blue */
    
    --secondary-color: #FF5C2E;     /* Coral Orange */
    --secondary-dark: #D43E14;      /* Darker Orange */
    --secondary-light: #FFA28D;     /* Lighter Orange */
    
    --tertiary-color: #2EFF94;      /* Mint Green */
    --tertiary-dark: #0ED672;       /* Darker Green */
    --tertiary-light: #A5FFD0;      /* Lighter Green */
    
    --quaternary-color: #C52EFF;    /* Purple */
    --quaternary-dark: #9A14D4;     /* Darker Purple */
    --quaternary-light: #DDA5FF;    /* Lighter Purple */
    
    /* Neutral Colors */
    --dark: #222222;
    --medium-dark: #444444;
    --medium: #777777;
    --medium-light: #AAAAAA;
    --light: #EEEEEE;
    --white: #FFFFFF;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    --blur-radius: 15px;
    
    /* Layout */
    --container-width: 1200px;
    --section-spacing: 100px;
    --element-spacing: 30px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-sm: 6px;
    
    /* Typography */
    --heading-font: 'Raleway', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Animation */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 20px;
}

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

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

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

ul, ol {
    list-style-position: inside;
    margin-bottom: 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    border: none;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.5s;
    z-index: -1;
}

.btn:hover:before {
    transform: translateX(0) skewX(-15deg);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 91, 255, 0.3);
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 92, 46, 0.3);
}

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

.btn-tertiary {
    background-color: var(--tertiary-color);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(46, 255, 148, 0.3);
}

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

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

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

/* ===== GLASSMORPHISM CARD STYLES ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-radius));
    -webkit-backdrop-filter: blur(var(--blur-radius));
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    padding: 30px;
    transition: var(--transition-medium);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px 0 var(--glass-shadow);
}

/* ===== SECTION TITLE STYLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: var(--dark);
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

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

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--medium-dark);
    font-size: 1.1rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
    padding: 15px 0;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    transition: var(--transition-fast);
}

.header.scrolled .logo img {
    max-height: 50px;
    object-fit: cover;
}

.navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover:before {
    transform: scaleX(1);
}

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

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

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark);
    border-radius: 3px;
    transition: var(--transition-fast);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    margin-right: auto;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* ===== ABOUT SECTION ===== */
.about {
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-medium);
}

.image-container:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.2);
}

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

.about-text {
    flex: 1;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    padding: 20px;
    border-radius: var(--border-radius);
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-radius));
    -webkit-backdrop-filter: blur(var(--blur-radius));
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    text-align: center;
    transition: var(--transition-fast);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--glass-shadow);
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ===== HISTORY SECTION ===== */
.history {
    background-color: #f9f9f9;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 0 5px rgba(46, 91, 255, 0.2);
}

.timeline-content {
    width: calc(50% - 40px);
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition-fast);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    transform: perspective(1000px) rotateY(-5deg);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    transform: perspective(1000px) rotateY(5deg);
}

.timeline-item:hover .timeline-content {
    transform: perspective(1000px) rotateY(0);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.history-image {
    text-align: center;
    margin-top: 60px;
}

.history-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* ===== TEAM SECTION ===== */
.team {
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.team .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-medium);
    background: var(--white);
    height: 100%;
}

.team .card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team .card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.team .card-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* ===== STATISTICS SECTION ===== */
.statistics {
    background-color: #f5f7ff;
    position: relative;
    overflow: hidden;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.stat-item:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(46, 91, 255, 0.1), rgba(46, 91, 255, 0));
    transform: rotate(45deg);
    z-index: -1;
    transition: var(--transition-medium);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-item:hover:before {
    transform: rotate(45deg) translate(10%, 10%);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.success-stories {
    margin-top: 70px;
}

.success-stories h3 {
    text-align: center;
    margin-bottom: 40px;
}

.success-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.slider-controls {
    display: flex;
    align-items: center;
    position: relative;
}

.prev-slide, .next-slide {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0 15px;
    z-index: 10;
}

.prev-slide:hover, .next-slide:hover {
    color: var(--primary-dark);
    transform: scale(1.2);
}

.slider-container {
    overflow: hidden;
    padding: 20px 0;
    flex-grow: 1;
}

.slide {
    display: flex;
    justify-content: center;
}

.slide-content {
    padding: 40px;
    border-radius: var(--border-radius);
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    text-align: left;
}

.slide-content h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-info span {
    font-weight: 600;
    color: var(--dark);
}

/* ===== WORKSHOPS SECTION ===== */
.workshops {
    background-color: var(--white);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.workshops .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-medium);
    background: var(--white);
    height: 100%;
}

.workshops .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.workshops .card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.workshops .card-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.workshop-details {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.workshop-details span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--medium-dark);
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--medium-light);
    border-radius: 30px;
    transition: var(--transition-fast);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    border-radius: 50%;
    transition: var(--transition-fast);
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

/* ===== RESEARCH SECTION ===== */
.research {
    background-color: #f5f7ff;
}

.research-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 70px;
}

.research-image {
    flex: 1;
}

.research-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-medium);
}

.research-image:hover img {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.2);
}

.research-text {
    flex: 1;
}

.research-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.research-text h4 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.research-text ul {
    list-style-type: none;
}

.research-text li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.research-text li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.research-reports h3 {
    text-align: center;
    margin-bottom: 40px;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.report-card {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-medium);
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.report-icon {
    flex-shrink: 0;
    margin-right: 20px;
}

.report-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.report-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.report-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

.report-link:hover {
    color: var(--secondary-dark);
    text-decoration: underline;
}

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

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.resource-card {
    padding: 30px;
    text-align: center;
    border-radius: var(--border-radius);
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-radius));
    -webkit-backdrop-filter: blur(var(--blur-radius));
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 30px var(--glass-shadow);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--glass-shadow);
}

.resource-icon {
    margin-bottom: 20px;
}

.resource-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.resource-card a {
    display: inline-block;
    margin-top: 15px;
    color: var(--tertiary-dark);
    font-weight: 600;
    transition: var(--transition-fast);
}

.resource-card a:hover {
    color: var(--tertiary-color);
    text-decoration: underline;
}

/* ===== PARTNERS SECTION ===== */
.partners {
    background-color: #f5f7ff;
}

.partners-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
    text-align: center;
}

.partner:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.partner img {
    max-width: 180px;
    margin-bottom: 20px;
    margin: 0 auto 20px;
}

.partner-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

.contact-container {
    display: flex;
    gap: 60px;
}

.contact-form {
    flex: 1;
    padding: 40px;
    border-radius: var(--border-radius);
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-radius));
    -webkit-backdrop-filter: blur(var(--blur-radius));
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px var(--glass-shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-light);
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.9);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 91, 255, 0.2);
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-container input {
    width: auto;
    margin-right: 10px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.info-content h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.map-container {
    margin-top: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.map-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--medium-light);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--medium-light);
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    color: var(--medium-light);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

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

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

.footer-bottom p {
    color: var(--medium-light);
    font-size: 0.9rem;
}

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

.success-container {
    max-width: 600px;
    padding: 60px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 5rem;
    color: var(--tertiary-color);
    margin-bottom: 30px;
}

.success-title {
    color: var(--dark);
    margin-bottom: 20px;
}

.success-message {
    color: var(--medium-dark);
    margin-bottom: 30px;
}

/* ===== ADDITIONAL PAGES ===== */
.page-header {
    padding-top: 100px;
    padding-bottom: 60px;
    background-color: var(--primary-light);
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.page-content {
    padding: 80px 0;
}

.page-content .container {
    max-width: 900px;
}

.terms-page h2,
.privacy-page h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.terms-page p,
.privacy-page p {
    margin-bottom: 20px;
    color: var(--medium-dark);
}

.terms-page ul,
.privacy-page ul {
    margin-bottom: 20px;
    color: var(--medium-dark);
}

.terms-page li,
.privacy-page li {
    margin-bottom: 10px;
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 1200px) {
    :root {
        --container-width: 960px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .reports-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 992px) {
    :root {
        --container-width: 720px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .about-content,
    .research-content,
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        transform: none !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: 0;
        margin-left: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-column {
        flex: 1 0 40%;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --container-width: 540px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-features {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .workshops-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .report-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .report-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .team-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 576px) {
    :root {
        --container-width: 100%;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-description {
        margin-bottom: 30px;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
    }
    
    .client-info img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-column {
        flex: 1 0 100%;
    }
}