/* Hybrid Design - Minimal Gradients, Maximum Impact */

/* Reset & Variables */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --green: #bfecac;
    --orange: #ffa51f;
    --yellow: #ffde59;
    --purple: #3e1964;
    
    /* Extended Palette */
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-600: #757575;
    --gray-800: #424242;
    --gray-900: #212121;
    
    /* Typography */
    --font-primary: 'Nunito', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
}

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

.logo-text {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--purple);
    margin: 0;
}

.logo-accent {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    position: relative;
    transition: all var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--purple);
    background: rgba(191, 236, 172, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--purple);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gray-50);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.6;
}

.shape-1 {
    top: 15%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: var(--purple);
    animation: float-1 6s ease-in-out infinite;
}

.shape-2 {
    bottom: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: var(--yellow);
    animation: float-2 8s ease-in-out infinite;
}

.shape-3 {
    top: 50%;
    left: 80%;
    width: 60px;
    height: 60px;
    background: var(--yellow);
    animation: float-3 7s ease-in-out infinite;
}

.shape-4 {
    top: 10%;
    left: 5%;
    width: 40px;
    height: 40px;
    background: var(--green);
    animation: float-4 9s ease-in-out infinite;
}

.shape-5 {
    bottom: 5%;
    right: 1%;
    width: 390px;
    height: 390px;
    background: var(--orange);
    opacity: 0.4;
    animation: float-5 5s ease-in-out infinite;
}

.shape-6 {
    top: 20%;
    left: 50%;
    width: 35px;
    height: 35px;
    background: var(--yellow);
    animation: float-6 10s ease-in-out infinite;
}

.shape-7 {
    bottom: 35%;
    right: 60%;
    width: 150px;
    height: 150px;
    background: var(--orange);
    opacity: 0.3;
    animation: float-7 6s ease-in-out infinite;
}

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

@keyframes float-2 {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(20px) rotate(-180deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    50% { transform: translate(-15px, 15px) rotate(90deg); }
}

@keyframes float-4 {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    50% { transform: translateY(25px) scale(1.2) rotate(45deg); }
}

@keyframes float-5 {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    33% { transform: translate(15px, -10px) rotate(120deg); }
    66% { transform: translate(-10px, 10px) rotate(240deg); }
}

@keyframes float-6 {
    0%, 100% { transform: translateX(0px) rotate(0deg) scale(1); }
    50% { transform: translateX(-30px) rotate(-90deg) scale(0.8); }
}

@keyframes float-7 {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(20px, -15px) rotate(90deg); }
    75% { transform: translate(-15px, 20px) rotate(270deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: slide-in-left 0.8s ease;
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.title-main {
    display: block;
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--purple);
    line-height: 0.9;
    margin-bottom: var(--space-sm);
}

.title-logo {
    display: block;
    height: clamp(4rem, 15vw, 20rem);
    width: auto;
    margin-bottom: var(--space-sm);
    object-fit: contain;
}

.title-sub {
    display: block;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 500;
    color: var(--orange);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-800);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.hero-visual {
    display: flex;
    justify-content: center;
    animation: slide-in-right 0.8s ease 0.3s both;
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-slow);
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.hero-card img {
    width: 100%;
    /*height: 500px;*/
    object-fit: cover;
    display: block;
}

.card-badge {
    position: absolute;
    /*top: var(--space-lg);*/
    top: -50px; position: fixed;
    right: var(--space-lg);
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.badge-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.badge-text {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Quote Sections */
.quote-section {
    padding: var(--space-2xl) 0;
    text-align: center;
    position: relative;
}

.quote-section.green-theme {
    background: var(--green);
}

.quote-section.orange-theme {
    background: var(--orange);
}

.quote-section.yellow-theme {
    background: var(--yellow);
}

.quote-section.purple-theme {
    background: var(--purple);
}

.quote-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.quote-content blockquote {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: var(--space-md);
}

.green-theme blockquote,
.orange-theme blockquote,
.yellow-theme blockquote {
    color: var(--purple);
}

.purple-theme blockquote {
    color: var(--white);
}

.quote-decoration {
    width: 60px;
    height: 4px;
    background: var(--purple);
    margin: 0 auto;
    border-radius: 2px;
}

.purple-theme .quote-decoration {
    background: var(--white);
}

/* Sections */
.section {
    padding: var(--space-3xl) 0;
}

.gray-bg {
    background: var(--gray-50);
}

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

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

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--purple);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 400;
}

/* What is PerPoSa */
.meaning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.meaning-item {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.meaning-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.meaning-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    color: var(--white);
}

.meaning-item[data-color="green"] .meaning-icon {
    background: var(--green);
    color: var(--purple);
}

.meaning-item[data-color="orange"] .meaning-icon {
    background: var(--orange);
    color: var(--white);
}

.meaning-item[data-color="yellow"] .meaning-icon {
    background: var(--yellow);
    color: var(--purple);
}

.meaning-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: var(--space-md);
}

.meaning-item p {
    color: var(--gray-800);
    line-height: 1.6;
}

.item-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.meaning-item[data-color="green"] .item-accent {
    background: var(--green);
}

.meaning-item[data-color="orange"] .item-accent {
    background: var(--orange);
}

.meaning-item[data-color="yellow"] .item-accent {
    background: var(--yellow);
}

.meaning-conclusion {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--purple);
    font-style: italic;
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--green);
}

/* Mission & Vision */
.mission-vision-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
}

.card-style {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.header-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.green-bg { background: var(--green); color: var(--purple) !important; }
.orange-bg { background: var(--orange); }
.yellow-bg { background: var(--yellow); color: var(--purple) !important; }
.purple-bg { background: var(--purple); }

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--purple);
}

.card-style p {
    color: var(--gray-800);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.card-style p:last-child {
    margin-bottom: 0;
}

/* Why PerPoSa */
.why-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.stats-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-visual {
    margin-bottom: var(--space-lg);
}

.stat-circle {
    position: relative;
    display: inline-block;
}

.stat-circle svg {
    transform: rotate(-90deg);
}

.stat-bg {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 8;
}

.stat-progress {
    fill: none;
    stroke: var(--orange);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 0 314;
    transition: stroke-dasharray 2s ease;
}

.stat-progress.animated {
    stroke-dasharray: 62.8 314;
}

.stat-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--purple);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.stats-card p {
    color: var(--gray-800);
    font-weight: 500;
}

.text-content {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--green);
}

.text-content p {
    margin-bottom: var(--space-md);
    color: var(--gray-800);
    line-height: 1.7;
}

.text-content p:last-child {
    margin-bottom: 0;
}

/* Unique Features */
.unique-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

/* First 3 cards span 2 columns each to fill the full width */
.unique-grid .unique-card:nth-child(1) {
    grid-column: 1 / 3;
}

.unique-grid .unique-card:nth-child(2) {
    grid-column: 3 / 5;
}

.unique-grid .unique-card:nth-child(3) {
    grid-column: 5 / 7;
}

/* Last 2 cards are centered by starting at columns 2 and 4 */
.unique-grid .unique-card:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
}

.unique-grid .unique-card:nth-child(5) {
    grid-column: 4 / 6;
    grid-row: 2;
}

.unique-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
}

.unique-card.span-wide {
    /* Keep this for any legacy styling */
    max-width: none;
    margin: 0;
}

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

.unique-card .card-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.75rem;
    color: var(--white);
}

.unique-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: var(--space-md);
}

.unique-card p {
    color: var(--gray-800);
    line-height: 1.6;
}

/* Team */
.team-container {
    display: grid;
    gap: var(--space-3xl);
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.member-visual {
    background: var(--gray-50);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.member-image {
    position: relative;
    margin-bottom: var(--space-md);
}

.member-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-full);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.member-badge {
    background: var(--orange);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.member-content {
    padding: var(--space-xl);
}

.member-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: var(--space-sm);
}

.member-intro {
    font-size: 1.125rem;
    color: var(--gray-800);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.experience-grid {
    display: grid;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.experience-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.exp-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
}

.exp-content h5 {
    font-weight: 600;
    color: var(--purple);
    margin-bottom: var(--space-xs);
}

.exp-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.support-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
}

.support-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--orange);
}

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

.support-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: var(--space-lg);
    background: var(--orange);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.support-icon {
    width: 80px;
    height: 80px;
    background: var(--purple);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    color: var(--white);
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: var(--space-md);
}

.price-highlight {
    background: var(--gray-50);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.price-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.support-card p {
    color: var(--gray-800);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gray-800);
    color: var(--white);
    text-decoration: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.support-btn.primary {
    background: var(--orange);
}

.support-btn:hover {
    background: var(--black);
    transform: translateY(-2px);
}

.support-btn.primary:hover {
    background: var(--purple);
}

.breakdown-section {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.breakdown-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--purple);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.breakdown-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.breakdown-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.breakdown-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
}

.breakdown-text h4 {
    font-weight: 600;
    color: var(--purple);
    margin-bottom: var(--space-xs);
}

.breakdown-text p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.contact-info {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-header {
    margin-bottom: var(--space-xl);
}

.contact-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: var(--space-xs);
}

.contact-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

.contact-list {
    display: grid;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: var(--space-xs);
}

.contact-details a {
    color: var(--gray-800);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--orange);
}

.contact-visual {
    display: flex;
    justify-content: center;
}

.contact-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.contact-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(62, 25, 100, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.contact-image:hover .contact-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.overlay-content p {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.footer-brand h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all var(--transition-normal);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--green);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-600);
    opacity: 0.7;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.contact-form:hover {
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    background: var(--white);
    color: var(--gray-800);
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(191, 236, 172, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-xs);
    font-size: 1.1rem;
    padding: var(--space-lg) var(--space-xl);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: var(--space-2xl);
        transition: left var(--transition-normal);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .hero-text {
        order: -1;
        padding-top: 8rem;
    }

    .title-logo {
        width: 100%;
        max-width: none;
        height: auto;
        display: block;
        margin: 0 auto var(--space-sm);
    }

    .hero-card {
        margin-bottom: var(--space-2xl);
    }

    .unique-card,
    .member-content,
    .meaning-item,
    .card-style,
    .text-content,
    .contact-info,
    .contact-form,
    .support-card,
    .breakdown-section {
        padding: var(--space-md);
    }

    .contact-form .btn {
        width: 100% !important;
        max-width: none;
        box-sizing: border-box;
    }

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

    .mission-vision-container {
        grid-template-columns: 1fr;
    }

    .why-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .unique-grid .unique-card:nth-child(1),
    .unique-grid .unique-card:nth-child(2),
    .unique-grid .unique-card:nth-child(3),
    .unique-grid .unique-card:nth-child(4),
    .unique-grid .unique-card:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }

    .unique-card.span-wide {
        grid-column: 1;
    }

    .team-member {
        grid-template-columns: 1fr;
    }

    .member-visual {
        order: -1;
    }

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

    .support-card.featured {
        transform: none;
    }

    .support-card.featured:hover {
        transform: translateY(-8px);
    }

    .breakdown-items {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .experience-item {
        display: grid;
        grid-template-areas: 
            "icon title"
            "description description";
        grid-template-columns: 50px 1fr;
        gap: var(--space-md);
        align-items: center; /* Center align items vertically */
    }

    .exp-icon {
        grid-area: icon;
    }

    .exp-content {
        display: contents; /* This makes the children behave as if exp-content doesn't exist */
    }

    .exp-content h5 {
        grid-area: title;
        margin-bottom: 0;
    }

    .exp-content p {
        grid-area: description;
        margin: 0;
    }

    .container {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .title-main {
        font-size: 2.5rem;
    }

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

    .quote-content blockquote {
        font-size: 1.5rem;
    }
}