/* ============================================
   MAIN STYLES FOR HYFUN FOODS - HOME & ABOUT
   ============================================ */

/* Light Theme Variables */
:root {
    --bg-main: #E8F7FA;
    --bg-card: #FFFFFF;
    --text-main: #2D3748;
    --text-muted: #666666;
    --green: #78B04B;
    --blue: #6EC1E4;
    --orange: #FFA726;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 16px;
    --header-height: 80px;
}

/* Dark Theme Variables */
.dark-theme {
    --bg-main: #0F172A;
    --bg-card: #1E293B;
    --text-main: #E5E7EB;
    --text-muted: #9CA3AF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Background Patterns */
.bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('https://images.unsplash.com/photo-1518837695005-2083093ee35b?q=80&w=600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.bg-pattern-2 {
    background-image: url('https://images.unsplash.com/photo-1575549591888-47b6d0a82bc8?q=80&w=600&auto=format&fit=crop');
}

.bg-pattern-3 {
    background-image: url('https://images.unsplash.com/photo-1565299624946-b28f40a0ca4b?q=80&w=600&auto=format&fit=crop');
}

.section-bg {
    position: relative;
    overflow: hidden;
}

.section-bg .bg-pattern {
    opacity: 0.03;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.dark-theme header {
    background-color: rgba(30, 41, 59, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

/* Logo Styles */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

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

/* Desktop Navigation */
.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav ul li {
    margin-left: 30px;
    position: relative;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.desktop-nav ul li a:hover {
    color: var(--green);
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    transition: var(--transition);
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

/* Active Navigation State */
.desktop-nav .active > a {
    color: var(--green);
}

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

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-card);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    z-index: 100;
    padding: 15px 0;
    transition: var(--transition);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: rgba(110, 193, 228, 0.1);
    color: var(--green);
    padding-left: 25px;
}

/* ============================================
   HOME PAGE SPECIFIC STYLES
   ============================================ */

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-container {
    width: 450px;
    height: 450px;
    position: relative;
    transform-style: preserve-3d;
    animation: float3d 6s ease-in-out infinite;
}

.hero-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 8px solid var(--bg-card);
}

.hero-badge {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(110, 193, 228, 0.4);
    z-index: 2;
    animation: pulse 2s infinite;
}

.badge-1 {
    top: 20px;
    right: 0;
}

.badge-2 {
    bottom: 40px;
    left: 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(110, 193, 228, 0.3);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(110, 193, 228, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
    box-shadow: none;
    margin-left: 15px;
}

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

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.title-accent {
    display: inline-block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    margin-top: 15px;
    border-radius: 2px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    z-index: 2;
}

.feature-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 5px solid rgba(110, 193, 228, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
}

/* Why Potatoes Section - Center Layout */
.potato-center-layout {
    position: relative;
    width: 100%;
    height: 600px;
    max-width: 900px;
    margin: 0 auto;
}

.center-potato {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.potato-center-image {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: float 4s ease-in-out infinite;
}

.potato-fact {
    position: absolute;
    width: 250px;
    z-index: 1;
}

.potato-fact .fact-content {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.potato-fact .fact-content:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.potato-fact.top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.potato-fact.left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.potato-fact.right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.potato-fact.bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.fact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.potato-fact h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.potato-fact p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Logos Scrolling Container */
.logos-scroll-container {
    position: relative;
    overflow: hidden;
    margin: 50px 0;
    padding: 20px 0;
}

.logos-track {
    display: flex;
    gap: 40px;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-scroll-item {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.logo-scroll-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.client-logo {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition);
}

.logo-scroll-item:hover .client-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

/* About Hero Section */
#about-hero.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(120, 176, 75, 0.95), rgba(110, 193, 228, 0.95));
}

#about-hero .hero-text h1 {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#about-hero .hero-text p {
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-stat h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 5px;
}

.hero-stat p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.hero-buttons {
    margin-top: 30px;
}

/* Timeline Hero Container */
.timeline-hero-container {
    width: 450px;
    height: 450px;
    position: relative;
}

.timeline-hero-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.timeline-point {
    position: absolute;
    z-index: 2;
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.timeline-point .point-year {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 8px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-point .point-text {
    color: white;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.point-1 {
    top: 20%;
    left: -10%;
}

.point-2 {
    top: 60%;
    right: -15%;
}

.point-3 {
    bottom: 10%;
    left: 0;
}

/* Circular Timeline */
.circular-timeline {
    position: relative;
    width: 100%;
    height: 800px;
    max-width: 900px;
    margin: 0 auto;
}

/* Center Story Styling */
.center-story {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(110, 193, 228, 0.4);
    animation: pulse 3s infinite;
}

.center-story h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
}

.center-story p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
    color: white;
}

.story-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

/* Enhanced Circular Animation */
.circular-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    border: 2px dashed rgba(120, 176, 75, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.timeline-item {
    position: absolute;
    width: 220px;
}

.timeline-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    z-index: 1;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.timeline-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Timeline Connectors */
.timeline-connector {
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.year-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(110, 193, 228, 0.3);
    position: relative;
    z-index: 1;
}

.year-badge::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.timeline-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-main);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Circular Positioning */
.item-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatTimeline 6s ease-in-out infinite 0s;
}

.item-2 {
    top: 25%;
    right: 15%;
    animation: floatTimeline 6s ease-in-out infinite 0.5s;
}

.item-3 {
    top: 50%;
    right: 5%;
    animation: floatTimeline 6s ease-in-out infinite 1s;
}

.item-4 {
    bottom: 25%;
    right: 15%;
    animation: floatTimeline 6s ease-in-out infinite 1.5s;
}

.item-5 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatTimeline 6s ease-in-out infinite 2s;
}

.item-6 {
    bottom: 25%;
    left: 15%;
    animation: floatTimeline 6s ease-in-out infinite 2.5s;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.principle-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.mission-card::before {
    background: linear-gradient(90deg, var(--green), var(--blue));
}

.vision-card::before {
    background: linear-gradient(90deg, var(--blue), var(--orange));
}

.values-card::before {
    background: linear-gradient(90deg, var(--orange), var(--green));
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.vision-card .card-icon {
    background: linear-gradient(135deg, var(--blue), var(--orange));
}

.values-card .card-icon {
    background: linear-gradient(135deg, var(--orange), var(--green));
}

.principle-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.principle-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.card-tag {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 20px;
}

/* Legacy Story */
.legacy-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.legacy-image {
    position: relative;
}

.legacy-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.legacy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    margin-bottom: 30px;
    border-radius: 2px;
}

.legacy-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.legacy-highlights {
    margin-top: 30px;
    display: grid;
    gap: 20px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(120, 176, 75, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.highlight:hover {
    background: rgba(120, 176, 75, 0.2);
    transform: translateX(10px);
}

.highlight i {
    font-size: 1.5rem;
    color: var(--green);
}

.highlight h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.highlight p {
    margin: 0;
    font-size: 0.9rem;
}

/* Green Practices Grid */
.green-practices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto;
}

.green-practice-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--green);
}

.green-practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.green-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    transition: var(--transition);
}

.green-practice-card:hover .green-icon {
    transform: scale(1.1) rotate(360deg);
}

.green-practice-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.green-practice-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.green-commitment {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(120, 176, 75, 0.1), rgba(110, 193, 228, 0.1));
    border-radius: var(--border-radius);
    border: 2px solid rgba(120, 176, 75, 0.2);
}

.green-commitment h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.green-commitment p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Connect Section */
.connect-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.connect-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.connect-content p {
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

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

.connect-option {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.connect-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: var(--green);
}

.connect-option i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--green);
}

.connect-option h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.connect-option p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   COMMON COMPONENTS
   ============================================ */

/* Mobile Menu Button */
.mobile-menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Content */
.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background-color: var(--bg-card);
    z-index: 1000;
    padding: 30px;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu-content.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(110, 193, 228, 0.2);
}

.mobile-menu-header .logo-image {
    height: 50px;
}

.close-menu-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-menu-btn:hover {
    color: var(--green);
    transform: rotate(90deg);
}

/* Mobile Navigation */
.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 15px;
    position: relative;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(110, 193, 228, 0.1);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--green);
    padding-left: 10px;
}

.mobile-dropdown-content {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
    border-left: 2px solid var(--green);
}

.mobile-dropdown-content a {
    display: block;
    padding: 8px 0;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-dropdown-content a:hover {
    color: var(--green);
    padding-left: 10px;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-dropdown .fa-chevron-down {
    transition: transform 0.3s ease;
}

/* Footer */
footer {
    background-color: var(--bg-card);
    color: var(--text-main);
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-main);
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--blue));
}

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

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

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-info p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.contact-info i {
    color: var(--green);
    margin-right: 10px;
    width: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(110, 193, 228, 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes float3d {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(110, 193, 228, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(110, 193, 228, 0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 30px rgba(110, 193, 228, 0.4); }
}

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

@keyframes float {
    0% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-15px); }
    100% { transform: translate(-50%, -50%) translateY(0px); }
}

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

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-180px * 8 - 40px * 8)); }
}