/*
Theme Name: InnoKaushal
Theme URI: https://innokaushal.in
Author: InnoKaushal Team
Description: Premium Innovation Ecosystem Website for INNOKAUSHAL
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: innokaushal
*/

:root {
    --primary: #1D1D1F;
    --accent: #0071E3;
    --secondary: #000000;
    --light-bg: #F5F5F7;
    --white: #FFFFFF;
    --text: #1D1D1F;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
    --shadow-hover: 0 8px 40px rgba(26, 26, 46, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6E6E73;
    max-width: 650px;
    margin: 0 auto;
}

.section-header .accent-line {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

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

.bg-light {
    background: var(--light-bg);
}

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

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

.header.scrolled {
    box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    gap: 16px;
    max-width: 1400px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo span {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

.nav-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 24px;
    flex-shrink: 0;
    padding-left: 24px;
    border-left: 1px solid #E0E0E5;
}

.nav-buttons .btn-primary {
    padding: 9px 18px;
    font-size: 0.8rem;
    border-radius: 20px;
    white-space: nowrap;
}

.nav-buttons .btn-outline {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 20px;
    white-space: nowrap;
    border-width: 1.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #0F3460 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.15);
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 60px; height: 60px; top: 60%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { width: 100px; height: 100px; top: 40%; left: 50%; animation-delay: 2s; }
.particle:nth-child(4) { width: 40px; height: 40px; top: 80%; left: 20%; animation-delay: 3s; }
.particle:nth-child(5) { width: 70px; height: 70px; top: 10%; left: 70%; animation-delay: 4s; }
.particle:nth-child(6) { width: 50px; height: 50px; top: 50%; left: 30%; animation-delay: 5s; }

.geo-shape {
    position: absolute;
    border: 2px solid rgba(233, 69, 96, 0.2);
    animation: rotate 20s linear infinite;
}

.geo-shape:nth-child(7) { width: 200px; height: 200px; top: 15%; right: 10%; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.geo-shape:nth-child(8) { width: 150px; height: 150px; bottom: 20%; left: 5%; border-radius: 50%; animation-direction: reverse; }
.geo-shape:nth-child(9) { width: 120px; height: 120px; top: 60%; right: 25%; transform: rotate(45deg); }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-buttons .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.hero-buttons .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

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

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 20px 30px;
    animation: floatCard 4s ease-in-out infinite;
}

.stat-card:nth-child(2) { animation-delay: 1s; }
.stat-card:nth-child(3) { animation-delay: 2s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.stat-card h3 {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
}

.stat-card p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* ========== ABOUT PREVIEW ========== */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-preview-text p {
    color: #6E6E73;
    margin-bottom: 15px;
}

.about-stats-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.about-stat-item {
    text-align: center;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--light-bg);
}

.about-stat-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.about-stat-item h4 {
    font-size: 1.5rem;
    color: var(--primary);
}

.about-stat-item p {
    font-size: 0.85rem;
    color: #6E6E73;
}

/* ========== WHAT WE DO ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.service-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(233, 69, 96, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card .icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: #6E6E73;
}

/* ========== ECOSYSTEM ========== */
.ecosystem-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.eco-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.eco-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.eco-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.eco-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.eco-arrow {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ========== INNOVATION JOURNEY ========== */
.journey-container {
    overflow-x: auto;
    padding: 20px 0;
}

.journey-timeline {
    display: flex;
    gap: 0;
    min-width: max-content;
    position: relative;
    padding: 40px 0;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    position: relative;
    text-align: center;
}

.journey-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--accent), rgba(233,69,96,0.3));
}

.journey-step:last-child::after {
    display: none;
}

.journey-step .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.journey-step .step-icon i {
    color: var(--accent);
    font-size: 1.2rem;
}

.journey-step h4 {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.journey-step p {
    font-size: 0.75rem;
    color: #888;
    max-width: 100px;
}

/* ========== WHY CHOOSE ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-card .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ff6b81);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card .icon-circle i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.85rem;
    color: #6E6E73;
}

/* ========== PROGRAMS SNAPSHOT ========== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.program-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.program-card .program-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(233,69,96,0.1), rgba(233,69,96,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.program-card .program-icon i {
    font-size: 1.3rem;
    color: var(--accent);
}

.program-card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.program-card p {
    font-size: 0.9rem;
    color: #6E6E73;
    margin-bottom: 15px;
}

.program-card a {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.program-card a:hover {
    text-decoration: underline;
}

/* ========== IMPACT COUNTERS ========== */
.counters-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 80px 0;
}

.counters-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.counter-item {
    text-align: center;
    min-width: 180px;
}

.counter-item .counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
}

.counter-item .counter-suffix {
    font-size: 2rem;
    color: var(--accent);
}

.counter-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-top: 5px;
}

/* ========== INDUSTRIES ========== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.industry-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.industry-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.industry-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.industry-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow);
    margin: 10px;
}

.testimonial-card .quote {
    font-size: 0.95rem;
    color: #6E6E73;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ff6b81);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card .author-info h4 {
    font-size: 0.95rem;
    color: var(--primary);
}

.testimonial-card .author-info span {
    font-size: 0.8rem;
    color: #888;
}

/* ========== PARTNERS LOGOS ========== */
.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.partner-logo {
    width: 150px;
    height: 80px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    font-weight: 600;
    color: #999;
    font-size: 0.8rem;
    transition: var(--transition);
}

.partner-logo:hover {
    box-shadow: var(--shadow-hover);
    color: var(--accent);
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), #0F3460);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-banner .btn-primary {
    margin-right: 15px;
}

/* ========== ABOUT SECTION ========== */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.vm-card {
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--white);
}

.vm-card h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.value-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

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

.roadmap {
    position: relative;
    padding: 40px 0;
}

.roadmap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.roadmap-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.roadmap-content {
    width: 45%;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.roadmap-content h4 {
    color: var(--accent);
    margin-bottom: 8px;
}

.roadmap-dot {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

/* ========== PROGRAMS TABS ========== */
.programs-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 25px;
    border: 2px solid #eee;
    border-radius: 50px;
    background: var(--white);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: var(--font-body);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* ========== COMMUNITY ========== */
.community-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.benefit-card {
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.benefit-card i {
    font-size: 1.3rem;
    color: var(--accent);
    margin-top: 3px;
}

.benefit-card h4 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.benefit-card p {
    font-size: 0.85rem;
    color: #6E6E73;
}

.membership-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.membership-form h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* ========== PARTNERS PAGE ========== */
.partner-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-category {
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.partner-category i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.partner-category h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.partner-category p {
    font-size: 0.9rem;
    color: #6E6E73;
    margin-bottom: 15px;
}

.partner-placeholders {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-placeholder {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background: var(--light-bg);
    border: 2px dashed #ddd;
}

/* ========== GALLERY ========== */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid #eee;
    border-radius: 50px;
    background: var(--white);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    font-family: var(--font-body);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.gallery-grid {
    columns: 4;
    column-gap: 15px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

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

.gallery-item .gallery-img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius);
}

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

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-placeholder {
    width: 100%;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--white);
    font-size: 0.85rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.lightbox-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-detail p {
    color: #6E6E73;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
}

.contact-form {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.newsletter-section {
    margin-top: 40px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: var(--radius);
    text-align: center;
}

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

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: var(--radius);
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.map-placeholder {
    margin-top: 30px;
    width: 100%;
    height: 200px;
    background: #e0e0e0;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 500;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.85rem;
}

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

.footer-bottom .footer-links a {
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-bottom .footer-links a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: 80px 30px 30px;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}

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

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
}

.mobile-nav .nav-buttons {
    flex-direction: column;
    margin-top: 30px;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
}

.overlay.active {
    display: block;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .nav-links, .nav-buttons {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .about-preview {
        grid-template-columns: 1fr;
    }
    .about-story {
        grid-template-columns: 1fr;
    }
    .vision-mission {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        columns: 3;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .gallery-grid {
        columns: 2;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .roadmap::before {
        left: 20px;
    }
    .roadmap-item, .roadmap-item:nth-child(odd) {
        flex-direction: row;
        padding-left: 50px;
    }
    .roadmap-content {
        width: 100%;
    }
    .roadmap-dot {
        left: 20px;
    }
    .counters-grid {
        gap: 25px;
    }
    .counter-item .counter-number {
        font-size: 2.2rem;
    }
    .cta-banner h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    .gallery-grid {
        columns: 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
}
