/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0E4F46;
    --secondary: #D4A84F;
    --accent: #F08A7E;
    --background: #F9F7F3;
    --text: #1E1E1E;
    --light-bg: #FEFDFB;
    --dark-bg: #0A0A0A;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --hero-flower-image: url("images/hero-flower.jpg");
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--background);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: 0;
}

.section-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text);
    opacity: 0.8;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.75;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(14, 79, 70, 0.3);
}

.btn-primary:hover {
    background: #0a3a32;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(14, 79, 70, 0.4);
}

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

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

.btn-tertiary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 10px 30px rgba(212, 168, 79, 0.3);
}

.btn-tertiary:hover {
    background: #c49860;
    transform: translateY(-3px);
}

/* Magnetic Button Effect */
.magnetic-btn {
    position: relative;
}

/* ===== CONTAINERS ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(249, 247, 243, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(14, 79, 70, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-image {
    display: block;
    width: auto;
    height: clamp(44px, 6vw, 58px);
    max-width: min(220px, 52vw);
    object-fit: contain;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-full {
    display: none;
    font-size: 1rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .logo-full {
        display: block;
        color: var(--text);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

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

.cta-link {
    background: var(--primary);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    display: inline-block;
}

.cta-link:hover {
    background: #0a3a32;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .logo-image {
        height: 42px;
        max-width: 180px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--light-bg);
        padding: 2rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    background-color: #f9f7f3;
    background-image: var(--hero-flower-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 247, 243, 0.58), rgba(240, 230, 210, 0.44));
    pointer-events: none;
    z-index: 1;
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(14, 79, 70, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 168, 79, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

.hero-headline {
    margin-bottom: 1.5rem;
}

.headline-word {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    display: block;
    margin: 0.5rem 0;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.headline-word:nth-child(1) {
    animation-delay: 0.2s;
}

.headline-word:nth-child(2) {
    animation-delay: 0.4s;
}

.headline-word:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subheadline {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease 0.8s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 0.9;
    }
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
}

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

/* ===== BREATHING SECTION ===== */
.breathing-section {
    background: linear-gradient(135deg, var(--light-bg), #f5e6d3);
    position: relative;
}

.breathing-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.breathing-experience {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.breathing-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary), var(--accent));
    box-shadow: 0 0 60px rgba(212, 168, 79, 0.4),
                0 0 120px rgba(240, 138, 126, 0.2);
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1);
    }
}

.breathing-text {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    min-height: 2rem;
}

.breath-phase {
    display: inline-block;
    animation: fadeInOut 4s ease infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ===== EXHALE FRAMEWORK SECTION ===== */
.exhale-framework {
    background: var(--background);
    position: relative;
}

.framework-container {
    max-width: 1400px;
    margin: 0 auto;
}

.framework-3d-container {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, rgba(14, 79, 70, 0.05), rgba(212, 168, 79, 0.05));
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 1px solid rgba(14, 79, 70, 0.1);
    overflow: hidden;
}

.framework-3d-container canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.framework-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.phase-card {
    background: var(--light-bg);
    border: 1px solid rgba(14, 79, 70, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 79, 0.2), transparent);
    transition: left 0.5s ease;
}

.phase-card:hover::before {
    left: 100%;
}

.phase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 79, 70, 0.15);
    border-color: var(--secondary);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.phase-number {
    font-size: 2.5rem;
    color: var(--secondary);
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.phase-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.phase-card p {
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.phase-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature {
    background: rgba(14, 79, 70, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* ===== SERVICES SECTION ===== */
.services {
    background: linear-gradient(135deg, var(--light-bg), #f5e6d3);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light-bg);
    border: 1px solid rgba(14, 79, 70, 0.1);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 79, 0.15), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(14, 79, 70, 0.2);
    border-color: var(--secondary);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.5s ease;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(212, 168, 79, 0.4);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: var(--text);
    padding: 0.5rem 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

.service-features li::before {
    content: '✓ ';
    color: var(--secondary);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    background: var(--background);
    position: relative;
    overflow: visible;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .founder-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-visual {
        height: auto;
        min-height: 0;
    }

    .founder-image-placeholder {
        min-height: 380px;
    }

    .achievement-bubbles {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.9rem;
        width: 100%;
        height: auto;
        margin-top: 1rem;
    }

    .bubble,
    .bubble:nth-child(n) {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        min-height: 72px;
        border-radius: 12px;
        padding: 0.75rem;
        animation: none;
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .founder-content {
        width: 100%;
    }
}

.founder-visual {
    position: relative;
    height: 500px;
    overflow: visible;
}

.founder-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 800;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.feature-image:not([hidden]) ~ .placeholder-text,
.feature-image:not([hidden]) ~ .image-fallback-text {
    opacity: 0;
}

.placeholder-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
    z-index: 2;
}

.placeholder-text {
    position: relative;
    z-index: 3;
}

.achievement-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    overflow: visible;
    pointer-events: none;
}

.bubble {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--light-bg);
    border: 3px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(14, 79, 70, 0.1);
    pointer-events: auto;
    z-index: 3;
}

.bubble:nth-child(1) {
    top: 44px;
    left: 12%;
    animation: float 6s ease-in-out infinite;
}

.bubble:nth-child(2) {
    top: 42%;
    right: 12%;
    animation: float 7s ease-in-out infinite;
}

.bubble:nth-child(3) {
    bottom: 14%;
    left: 12%;
    animation: float 8s ease-in-out infinite;
}

.bubble:nth-child(4) {
    top: 16%;
    right: 24%;
    animation: float 5.5s ease-in-out infinite;
}

.bubble:nth-child(5) {
    bottom: 24%;
    right: 24%;
    animation: float 6.5s ease-in-out infinite;
}

.bubble:nth-child(6) {
    top: 50%;
    left: 24%;
    animation: float 7.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.bubble:hover {
    transform: scale(1.15);
    box-shadow: 0 20px 50px rgba(212, 168, 79, 0.4);
    background: var(--secondary);
    color: white;
}

.founder-content {
    position: relative;
    z-index: 5;
}

.founder-subtitle {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.founder-bio {
    margin-bottom: 2rem;
}

.founder-bio p {
    color: var(--text);
    opacity: 0.85;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.founder-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight {
    background: rgba(14, 79, 70, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.highlight h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.highlight p {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.8;
}

/* ===== IMPACT SECTION ===== */
.impact-section {
    background: linear-gradient(135deg, var(--light-bg), #f5e6d3);
}

.impact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--light-bg);
    border: 2px solid var(--secondary);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 168, 79, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 168, 79, 0.2);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* ===== AEWC SECTION ===== */
.aewc-section {
    background: var(--background);
    position: relative;
}

.aewc-container {
    max-width: 1400px;
    margin: 0 auto;
}

.aewc-content {
    display: grid;
    grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.55fr);
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.aewc-info {
    display: grid;
    gap: 2rem;
    min-width: 0;
}

.aewc-image-panel {
    position: relative;
    min-height: 460px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 24px 60px rgba(14, 79, 70, 0.18);
}

.aewc-image-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 79, 70, 0.08), rgba(14, 79, 70, 0.36));
    z-index: 2;
    pointer-events: none;
}

.image-fallback-text {
    position: absolute;
    inset: auto 2rem 2rem;
    z-index: 3;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
}

@media (max-width: 968px) {
    .aewc-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .aewc-image-panel {
        min-height: 360px;
    }
}

.countdown-box {
    background: linear-gradient(135deg, var(--primary), #0a3a32);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.countdown-box h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.countdown-date {
    font-size: 1rem;
    opacity: 0.9;
}

.aewc-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 1180px) {
    .aewc-content {
        grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    }

    .aewc-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .aewc-details {
        grid-template-columns: 1fr;
    }

    .aewc-content {
        grid-template-columns: 1fr;
    }
}

.detail-card {
    background: var(--light-bg);
    border: 1px solid rgba(14, 79, 70, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
}

.detail-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.detail-card ul {
    list-style: none;
}

.detail-card li {
    color: var(--text);
    opacity: 0.8;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.detail-card li::before {
    content: '✓ ';
    color: var(--secondary);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(135deg, var(--light-bg), #f5e6d3);
}

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

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2rem 0;
    scroll-behavior: smooth;
}

.testimonials-carousel::-webkit-scrollbar {
    height: 4px;
}

.testimonials-carousel::-webkit-scrollbar-track {
    background: rgba(14, 79, 70, 0.05);
    border-radius: 10px;
}

.testimonials-carousel::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    background: var(--light-bg);
    border: 1px solid rgba(14, 79, 70, 0.1);
    border-radius: 15px;
    overflow: hidden;
    scroll-snap-align: center;
    transition: all 0.4s ease;
}

@media (max-width: 968px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 79, 70, 0.15);
}

.testimonial-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-video:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
}

.play-button svg {
    width: 30px;
    height: 30px;
}

.testimonial-text {
    padding: 2rem;
}

.testimonial-text p:first-child {
    color: var(--text);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.carousel-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* ===== ECOSYSTEM SECTION ===== */
.ecosystem-section {
    background: var(--background);
    position: relative;
}

.ecosystem-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ecosystem-svg {
    width: 100%;
    height: auto;
    max-height: 600px;
    margin-top: 2rem;
}

.ecosystem-node circle {
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(14, 79, 70, 0.2));
}

.ecosystem-node.central circle {
    fill: var(--primary);
}

.ecosystem-node:not(.central) circle {
    fill: var(--secondary);
}

.ecosystem-node:hover circle {
    r: 50px;
    filter: drop-shadow(0 10px 30px rgba(212, 168, 79, 0.4));
}

.connecting-line {
    stroke: var(--secondary);
    stroke-width: 2;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.ecosystem-node:hover .connecting-line {
    stroke-width: 3;
    opacity: 1;
    filter: drop-shadow(0 5px 15px rgba(212, 168, 79, 0.3));
}

.node-label {
    fill: white;
    font-size: 14px;
    font-weight: 600;
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
}

/* ===== PORTFOLIO GALLERY ===== */
.portfolio-section {
    background: linear-gradient(135deg, var(--light-bg), #f5e6d3);
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(260px, auto);
    gap: 1rem;
}

.portfolio-item {
    position: relative;
    min-height: 260px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 18px 45px rgba(14, 79, 70, 0.14);
}

.portfolio-featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 536px;
}

.portfolio-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.portfolio-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    z-index: 1;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.06), rgba(10, 10, 10, 0.66));
    z-index: 2;
}

.portfolio-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 1.5rem;
    color: white;
}

.portfolio-caption h3 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}

.portfolio-caption p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, var(--light-bg), #f5e6d3);
    position: relative;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    min-width: 0;
    overflow: visible;
}

.contact-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    min-width: 0;
}

.role-card {
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: inherit;
    font: inherit;
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
}

.role-card:hover,
.role-card.selected {
    border-color: var(--secondary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 168, 79, 0.2);
}

.role-card.selected {
    background: rgba(212, 168, 79, 0.12);
}

.role-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.role-card p {
    color: var(--text);
    opacity: 0.8;
}

.contact-form {
    background: var(--light-bg);
    border: 1px solid rgba(14, 79, 70, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    display: grid;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 1rem;
    border: 1px solid rgba(14, 79, 70, 0.2);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text);
    transition: all 0.3s ease;
    background: var(--background);
}

.form-group textarea {
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text);
    opacity: 0.5;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212, 168, 79, 0.1);
    background: white;
}

.contact-form button {
    margin-top: 1rem;
    width: fit-content;
    max-width: 100%;
}

.form-status {
    min-height: 1.5rem;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-status.visible {
    opacity: 1;
}

.form-status.success {
    color: var(--primary);
}

.form-status.error {
    color: #9f2d20;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--dark-bg);
    transform: scale(1.1) rotate(10deg);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

@media (max-width: 968px) {
    .founder-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .aewc-content {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
    }

    .aewc-info {
        order: 1;
    }

    .aewc-image-panel {
        order: 2;
    }

    .founder-visual {
        height: auto;
        min-height: 0;
    }

    .founder-image-placeholder {
        min-height: 380px;
    }

    .achievement-bubbles {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.9rem;
        width: 100%;
        height: auto;
        margin-top: 1rem;
    }

    .bubble,
    .bubble:nth-child(n) {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        min-height: 72px;
        border-radius: 12px;
        padding: 0.75rem;
        animation: none;
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .founder-content {
        width: 100%;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }

    .aewc-content {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
        gap: 1.5rem;
    }

    .aewc-info,
    .countdown-box,
    .aewc-details,
    .detail-card {
        width: 100%;
        min-width: 0;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas button {
        width: 100%;
    }

    .hero {
        background-position: center top;
    }

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

    .countdown {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .contact-roles {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .role-card {
        padding: 1.25rem;
        text-align: left;
    }

    .role-card:hover,
    .role-card.selected {
        transform: none;
    }

    .contact-form {
        padding: 1.25rem;
        gap: 1rem;
    }

    .contact-form button {
        width: 100%;
    }

    .aewc-image-panel {
        min-height: 300px;
        border-radius: 16px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: minmax(240px, auto);
    }

    .portfolio-featured {
        grid-column: span 2;
        min-height: 360px;
    }

    .founder-section {
        overflow: visible;
    }

    .founder-container {
        gap: 2.25rem;
    }

    .founder-image-placeholder {
        min-height: 320px;
        font-size: 3rem;
        border-radius: 16px;
    }

    .achievement-bubbles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .founder-highlights {
        grid-template-columns: 1fr;
    }

    .founder-content .section-title {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .headline-word {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .phase-card,
    .service-card {
        padding: 1.5rem 1rem;
    }

    .contact-form {
        padding: 1rem;
        border-radius: 12px;
    }

    .contact-section {
        padding-inline: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .role-card {
        padding: 1rem;
        border-radius: 12px;
    }

    .role-card h3 {
        font-size: 1.2rem;
        line-height: 1.25;
    }

    .role-card p {
        font-size: 0.9rem;
    }

    .aewc-image-panel {
        min-height: 240px;
    }

    .countdown-box {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .countdown {
        gap: 0.75rem;
    }

    .countdown-item {
        padding: 0.85rem 0.5rem;
    }

    .countdown-value {
        font-size: 1.6rem;
    }

    .image-fallback-text {
        inset: auto 1.25rem 1.25rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .portfolio-featured,
    .portfolio-item {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 280px;
    }

    .portfolio-caption {
        padding: 1.1rem;
    }

    .portfolio-caption h3 {
        font-size: 1.2rem;
    }

    .portfolio-caption p {
        font-size: 0.88rem;
    }

    .founder-image-placeholder {
        min-height: 260px;
        font-size: 2.35rem;
    }

    .achievement-bubbles {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .bubble,
    .bubble:nth-child(n) {
        min-height: 56px;
        font-size: 0.78rem;
    }

    .founder-subtitle {
        font-size: 1.55rem;
    }

    .founder-title {
        font-size: 1rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Utility */
.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}
