/**
 * Şeal Tekno Web Sitesi - Ana CSS
 * Modern ve responsive tasarım
 */

/* ═══════════════════════════════════════════════════════════
   GENEL AYARLAR
   ═══════════════════════════════════════════════════════════ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #074309;
    --primary-light: #06a125;
    --primary-dark: #013b10;
    --secondary-color: #ffd43b;
    --text-color: #222;
    --text-light: #666;
    --bg-color: #ffffff;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(4, 67, 9, 0.2);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lexend', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(7, 67, 9, 0.85);
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: auto;
    max-width: 95%;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.brand-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    height: 40px;
    line-height: 1;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary-color);
}

.nav-link i {
    margin-right: 5px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    background: 
        radial-gradient(ellipse at top, #0a2f0a 0%, #041f04 50%, #001a00 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

/* Nebula/Galaxy glow effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(0, 100, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(0, 150, 50, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 50%, rgba(0, 80, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* Aurora/Northern Lights effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: 
        linear-gradient(180deg, 
            transparent 0%,
            rgba(0, 255, 100, 0.02) 20%,
            rgba(0, 200, 80, 0.03) 40%,
            transparent 60%
        );
    animation: auroraWave 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes auroraWave {
    0%, 100% { 
        opacity: 0.3;
        transform: translateX(-5%) scaleY(1);
    }
    50% { 
        opacity: 0.6;
        transform: translateX(5%) scaleY(1.1);
    }
}

.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Yıldızlar */
.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
}

.star.bright {
    box-shadow: 0 0 6px rgba(255, 255, 255, 1), 0 0 12px rgba(200, 255, 200, 0.5);
}

.twinkle {
    animation: twinkle 3s infinite ease-in-out;
}

.twinkle-slow {
    animation: twinkle 5s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Takımyıldızı çizgileri */
.constellation-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    height: 1px;
    transform-origin: left center;
    pointer-events: none;
}

/* Takımyıldızı yıldızları (büyük ve parlak) */
.constellation-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 
        0 0 4px #fff,
        0 0 8px rgba(150, 255, 150, 0.8),
        0 0 15px rgba(100, 255, 100, 0.4);
    animation: constellationPulse 4s infinite ease-in-out;
}

@keyframes constellationPulse {
    0%, 100% { 
        box-shadow: 
            0 0 4px #fff,
            0 0 8px rgba(150, 255, 150, 0.8),
            0 0 15px rgba(100, 255, 100, 0.4);
    }
    50% { 
        box-shadow: 
            0 0 6px #fff,
            0 0 12px rgba(150, 255, 150, 1),
            0 0 25px rgba(100, 255, 100, 0.6);
    }
}

/* Kayan yıldız */
.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(200, 255, 200, 0.5), transparent);
    border-radius: 50%;
    animation: shooting 3s linear infinite;
    opacity: 0;
}

@keyframes shooting {
    0% { 
        transform: translate(0, 0) rotate(-45deg); 
        opacity: 0; 
    }
    10% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% { 
        transform: translate(-500px, 500px) rotate(-45deg); 
        opacity: 0; 
    }
}

/* Parlayan yıldız patlaması efekti */
.star-burst {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
}

.star-burst::before,
.star-burst::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
}

.star-burst::before {
    width: 10px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.star-burst::after {
    width: 1px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.title-word {
    opacity: 0;
    animation: fadeSlide 0.8s ease forwards;
}

.title-word:nth-child(1) { animation-delay: 0.2s; }
.title-word:nth-child(2) { animation-delay: 0.4s; }
.title-word:nth-child(3) { animation-delay: 0.6s; }
.title-word:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0;
    animation: fadeSlide 1s ease forwards;
    animation-delay: 1s;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlide 1s ease forwards;
    animation-delay: 1.2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ═══════════════════════════════════════════════════════════
   BUTONLAR
   ═══════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: #ffdd5c;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 212, 59, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   SECTION TİTLE
   ═══════════════════════════════════════════════════════════ */

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section-title.light {
    color: var(--white);
}

.title-decoration {
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
}

.section-title.light .title-decoration {
    background: linear-gradient(to right, var(--secondary-color), #fff);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PREVIEW
   ═══════════════════════════════════════════════════════════ */

.about-preview {
    padding: 80px 20px;
    text-align: center;
    background: var(--white);
}

.about-text {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   PROJECTS SECTION - FEATURED SINGLE CARD
   ═══════════════════════════════════════════════════════════ */

.projects {
    padding: 80px 20px;
    background: var(--bg-color);
}

/* Featured Project Card */
.featured-project {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(7, 67, 9, 0.15);
    max-width: 1000px;
    margin: 0 auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.featured-project:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 100px rgba(7, 67, 9, 0.2);
}

/* Visual Side */
.featured-project-visual {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.featured-project-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: pulse 4s ease-in-out infinite;
}

/* Rocket Showcase */
.rocket-showcase {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rocket-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { transform: scale(1); opacity: 0.5; }
    to { transform: scale(1.3); opacity: 0.8; }
}

.rocket-icon {
    font-size: 5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(-15px) rotate(-45deg); }
}

/* Orbits */
.orbit {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.orbit::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-1 {
    width: 140px;
    height: 140px;
    animation-duration: 8s;
}

.orbit-2 {
    width: 180px;
    height: 180px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 220px;
    height: 220px;
    animation-duration: 16s;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Content Side */
.featured-project-content {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary-color), #ffcc00);
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.project-badge i {
    font-size: 0.9rem;
}

.featured-project-content h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-project-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Project Features */
.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-color);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

.feature:hover {
    background: var(--primary-color);
    color: var(--white);
}

.feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

.feature:hover i {
    color: var(--white);
}

/* Project Button */
.btn-project {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 12px;
}

.btn-project i {
    transition: transform 0.3s ease;
}

.btn-project:hover i {
    transform: translateX(5px);
}

/* Featured Project Responsive */
@media (max-width: 900px) {
    .featured-project {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .featured-project-visual {
        padding: 50px 30px;
        min-height: 280px;
    }
    
    .rocket-showcase {
        width: 160px;
        height: 160px;
    }
    .brand-logo {
        height: 70px;
        width: auto;
    }
    
    .rocket-icon {
        font-size: 4rem;
    }
    
    .orbit-1 { width: 110px; height: 110px; }
    .orbit-2 { width: 140px; height: 140px; }
    .orbit-3 { width: 170px; height: 170px; }
    
    .featured-project-content {
        padding: 35px 30px;
    }
    
    .featured-project-content h3 {
        font-size: 1.6rem;
    }
    
    .featured-project-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .projects {
        padding: 50px 15px;
    }

    .brand-logo {
        height: 40px;
        width: auto;
    }

    .featured-project-visual {
        padding: 40px 20px;
        min-height: 220px;
    }
    
    .rocket-showcase {
        width: 130px;
        height: 130px;
    }
    
    .rocket-icon {
        font-size: 3rem;
    }
    
    .orbit-1 { width: 90px; height: 90px; }
    .orbit-2 { width: 115px; height: 115px; }
    .orbit-3 { width: 140px; height: 140px; }
    
    .featured-project-content {
        padding: 25px 20px;
    }
    
    .project-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    .featured-project-content h3 {
        font-size: 1.4rem;
    }
    
    .featured-project-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .project-features {
        gap: 8px;
    }
    
    .feature {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .btn-project {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
    }
}

/* ═══════════════════════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════════════════════ */

.stats {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */

.cta {
    padding: 80px 20px;
    background: var(--bg-color);
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.cta p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (Alt Sayfalar) - YILDIZLI GÖKYÜZÜ
   ═══════════════════════════════════════════════════════════ */

.page-hero {
    background: radial-gradient(ellipse at top, #0a2f0a 0%, #041f04 50%, #001a00 100%);
    padding: 150px 20px 130px;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Nebula glow efekti */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(0, 100, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(0, 150, 50, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Alt dalga */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-color);
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    z-index: 3;
}

/* Yıldız container */
.page-hero .hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.page-hero .motto {
    font-style: italic;
    margin-top: 10px;
    opacity: 0.8;
}

/* Hero Yıldız Animasyonları */
.hero-star.twinkle {
    animation: heroTwinkle 3s infinite ease-in-out;
}

.hero-star.twinkle-slow {
    animation: heroTwinkle 5s infinite ease-in-out;
}

@keyframes heroTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes constellationPulse {
    0%, 100% { 
        box-shadow: 0 0 4px #fff, 0 0 8px rgba(150, 255, 150, 0.8), 0 0 15px rgba(100, 255, 100, 0.4);
    }
    50% { 
        box-shadow: 0 0 6px #fff, 0 0 12px rgba(150, 255, 150, 1), 0 0 25px rgba(100, 255, 100, 0.6);
    }
}

@keyframes heroShooting {
    0% { 
        transform: translate(0, 0) rotate(-45deg); 
        opacity: 0; 
    }
    10% { opacity: 1; }
    70% { opacity: 1; }
    100% { 
        transform: translate(-400px, 400px) rotate(-45deg); 
        opacity: 0; 
    }
}

/* ═══════════════════════════════════════════════════════════
   ROKET UÇUŞ ANİMASYONU
   ═══════════════════════════════════════════════════════════ */

.flying-rocket {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    z-index: 5;
}

.flying-rocket .rocket-icon {
    font-size: 28px;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

.flying-rocket .rocket-flame {
    width: 10px;
    height: 30px;
    margin-top: -8px;
    background: linear-gradient(to bottom, 
        #fff 0%, 
        #ffff00 20%, 
        #ff8800 50%, 
        #ff4400 75%, 
        transparent 100%
    );
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    animation: flameFlicker 0.1s infinite alternate;
    filter: blur(1px);
}

@keyframes flameFlicker {
    0% { 
        height: 28px;
        opacity: 0.9;
    }
    100% { 
        height: 35px;
        opacity: 1;
    }
}

@keyframes rocketFly {
    0% {
        bottom: -60px;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        bottom: 110%;
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
    background: linear-gradient(to right, var(--primary-dark), #034c14);
    color: #f1f1f1;
    padding: 60px 20px 30px;
    margin-top: 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-right {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-brand h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.footer-brand h2 a {
    color: #a8f592;
    text-decoration: none;
    transition: var(--transition);
}

.footer-brand h2 a:hover {
    color: var(--secondary-color);
}

.footer-motto {
    opacity: 0.8;
    font-style: italic;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    color: #a8f592;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: #a8f592;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL TO TOP
   ═══════════════════════════════════════════════════════════ */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    font-size: 1.2rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 992px) {
    .navbar {
        width: 90%;
        padding: 15px 20px;
        justify-content: space-between;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(7, 67, 9, 0.95);
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        margin-top: 10px;
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        gap: 10px;
    }
    
    .title-decoration {
        width: 30px;
    }
    
    .page-hero {
        padding: 130px 15px 60px;
    }
    
    .page-hero::after {
        height: 50px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .page-hero .motto {
        font-size: 0.9rem;
    }
    
    /* Project Cards - Mobil */
    .project-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card {
        padding: 25px 20px;
    }
    
    .project-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .project-icon i {
        font-size: 1.5rem;
    }
    
    .project-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .project-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    /* Stats - Mobil */
    .stats {
        padding: 40px 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* CTA - Mobil */
    .cta {
        padding: 50px 15px;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    /* About Preview - Mobil */
    .about-preview {
        padding: 50px 15px;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    /* Buttons - Mobil */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer - Mobil */
    .footer {
        padding: 40px 15px 20px;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 30px;
    }
    
    .footer-brand h2 {
        font-size: 2rem;
    }
    
    .footer-right {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links h3,
    .footer-contact h3 {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        margin-top: 25px;
        padding-top: 15px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .navbar {
        top: 10px;
        padding: 10px 15px;
    }
    
    .nav-brand span {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        gap: 8px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-hero {
        padding: 100px 10px 60px;
    }
    
    .page-hero h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}
