/* ============================================
   CSS Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #ff0000;
    --dark-blue: #001f3f;
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-primary: 'Open Sans', sans-serif;
    --font-secondary: 'Ubuntu', sans-serif;
    --font-tertiary: 'DM Sans', sans-serif;
}

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

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

/* ============================================
   Header / Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .logo h1 {
    color: var(--secondary-color);
    text-shadow: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.navbar.scrolled .dropdown-btn {
    color: var(--text-dark);
}

.dropdown-btn:hover {
    color: var(--secondary-color);
}

.dropdown-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-btn i {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-color);
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    margin-top: 10px;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-primary);
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: #f5f5f5;
    color: var(--secondary-color);
}

.btn-allstar {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-allstar:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-tertiary);
    font-size: 24px;
    color: var(--primary-color);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* ============================================
   Section 2: Intro
   ============================================ */
.intro-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.intro-right p {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ============================================
   Section 3: Strategy (Red Section)
   ============================================ */
.strategy-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--text-light);
}

.strategy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.strategy-left p {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.section-title-white {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.2;
}

.strategy-swiper {
    width: 100%;
    height: 300px;
    margin-top: 20px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.slide-content h3 {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.slide-content p {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.swiper-pagination-bullet {
    background: var(--text-light);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--text-light);
}

/* ============================================
   Section 4: Vision (Dark Blue Section)
   ============================================ */
.vision-section {
    padding: 80px 0;
    background: var(--dark-blue);
    color: var(--text-light);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-left h2 {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.vision-subtitle {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
}

.vision-left p {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.gif-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.gif-placeholder i {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.gif-placeholder p {
    font-family: var(--font-primary);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Section 5: Partners
   ============================================ */
.partners-section {
    padding: 80px 0;
    background: var(--primary-color);
}

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

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

.partner-logo {
    text-align: center;
    padding: 40px 20px;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.partner-logo h3 {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #cc0000 100%);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 18px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

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

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

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-primary);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-legal p {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   Responsive Design (Mobile Compatible)
   ============================================ */
@media (max-width: 968px) {
    .nav-menu {
        gap: 15px;
    }
    
    .dropdown-btn {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .btn-allstar {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .intro-content,
    .strategy-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title,
    .section-title-white {
        font-size: 36px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 24px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .intro-section,
    .strategy-section,
    .vision-section,
    .partners-section {
        padding: 60px 0;
    }
    
    .section-title,
    .section-title-white {
        font-size: 32px;
    }
    
    .strategy-swiper {
        height: 250px;
    }
    
    .slide-content h3 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        height: 50vh;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title,
    .section-title-white {
        font-size: 28px;
    }
    
    .intro-right p,
    .strategy-left p,
    .vision-left p {
        font-size: 16px;
    }
}
