/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #003d82;
    --secondary-color: #002855;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    width: 100%;
    max-width: 100%;
}

.section {
    padding: 80px 0;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo {
    height: 45px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.navbar-brand-text {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    color: var(--text-dark);
    cursor: pointer;
}

.navbar-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    letter-spacing: -0.2px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-contact {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-contact:hover {
    background: var(--secondary-color);
}

/* Hero Section */
.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    background: var(--white);
    color: var(--primary-color);
    position: relative;
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/background.jpg') center center / cover no-repeat;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--primary-color);
    text-shadow: 
        -2px -2px 0 var(--white),
        2px -2px 0 var(--white),
        -2px 2px 0 var(--white),
        2px 2px 0 var(--white),
        0 0 10px rgba(0, 61, 130, 0.3);
}

.hero-subtitle {
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: -0.3px;
    line-height: 1.5;
    color: var(--secondary-color);
    text-shadow: 
        -1px -1px 0 var(--white),
        1px -1px 0 var(--white),
        -1px 1px 0 var(--white),
        1px 1px 0 var(--white);
}

.hero-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1em;
    letter-spacing: -0.3px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(0, 61, 130, 0.3);
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 61, 130, 0.4);
    background: var(--secondary-color);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: -0.8px;
}

.section-header p {
    font-size: 1.2em;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: -0.2px;
}

/* Products Section */
.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Product Icon Style */
.product-icon {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    font-size: 4em;
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.product-card:hover .product-icon i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.product-link:hover {
    color: var(--secondary-color);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-photo-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

/* Team Education Overlay */
.team-education-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.95) 0%, rgba(0, 40, 85, 0.95) 100%);
    color: var(--white);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.team-photo-container:hover .team-education-overlay {
    opacity: 1;
    visibility: visible;
}

.team-photo-container:hover .team-photo {
    transform: scale(1.1);
}

.team-education-overlay h4 {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
}

.team-education-overlay h4 i {
    font-size: 1.2em;
}

.team-education-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-education-overlay ul li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95em;
    line-height: 1.5;
}

.team-education-overlay ul li::before {
    content: '🎓';
    position: absolute;
    left: 0;
    top: 0;
}

.team-education-overlay ul li strong {
    display: block;
    font-weight: 600;
    margin-bottom: 3px;
}

.team-info {
    padding: 30px;
}

.team-name {
    font-size: 1.5em;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.team-position {
    font-size: 1em;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    font-size: 0.95em;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

.team-bio p {
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.team-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f7fafc;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2em;
}

.team-social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.video-thumbnail a {
    display: block;
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-thumbnail:hover .video-play-btn {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Social Media Section */
.social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
    overflow: hidden;
}

.social-slider-wrapper {
    margin-top: 50px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.social-slider {
    display: flex;
    gap: 30px;
    animation: socialScroll 20s linear infinite;
}

@keyframes socialScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.social-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 35px;
    background: var(--white);
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 280px;
}

.social-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.social-slide .social-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-slide.youtube .social-icon {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.social-slide.tiktok .social-icon {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.social-slide.instagram .social-icon {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
}

.social-slide.facebook .social-icon {
    background: linear-gradient(135deg, #1877F2 0%, #0D65D9 100%);
}

.social-slide.shopee .social-icon {
    background: linear-gradient(135deg, #EE4D2D 0%, #D73211 100%);
}

.social-slide.tokopedia .social-icon {
    background: linear-gradient(135deg, #42B549 0%, #2E8B34 100%);
}

.social-slide.lynk .social-icon {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
}

.social-slide .social-info h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.social-slide .social-info p {
    font-size: 0.95em;
    color: var(--text-light);
}

.social-slide:hover .social-icon {
    transform: scale(1.1);
}

/* E-Commerce Section */
.ecommerce-section {
    padding: 80px 0;
    background: var(--white);
}

.ecommerce-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.ecommerce-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 35px;
    background: var(--white);
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ecommerce-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ecommerce-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ecommerce-card.shopee .ecommerce-icon {
    background: linear-gradient(135deg, #EE4D2D 0%, #D73211 100%);
}

.ecommerce-card.shopee:hover {
    border-color: #EE4D2D;
}

.ecommerce-card.tokopedia .ecommerce-icon {
    background: linear-gradient(135deg, #42B549 0%, #2E8B34 100%);
}

.ecommerce-card.tokopedia:hover {
    border-color: #42B549;
}

.ecommerce-card.lynk .ecommerce-icon {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
}

.ecommerce-card.lynk:hover {
    border-color: #6366F1;
}

.ecommerce-info h3 {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.ecommerce-info p {
    font-size: 1em;
    color: var(--text-light);
}

.ecommerce-card:hover .ecommerce-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .ecommerce-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ecommerce-card {
        padding: 25px 30px;
    }

    .ecommerce-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6em;
    }

    .ecommerce-info h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .ecommerce-card {
        padding: 20px 25px;
    }

    .ecommerce-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4em;
        border-radius: 14px;
    }

    .ecommerce-info h3 {
        font-size: 1.1em;
    }

    .ecommerce-info p {
        font-size: 0.9em;
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
}

.contact-item i {
    font-size: 1.3em;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-column h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
    display: block;
    color: #ccc;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.3em;
    transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        min-height: 500px;
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .products-grid {
        gap: 30px;
    }

    .team-grid {
        gap: 30px;
    }

    .team-photo-container {
        height: 380px;
    }
}

/* Responsive - Mobile Landscape & Small Tablet */
@media (max-width: 768px) {
    .navbar-toggle {
        display: block;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu li {
        width: 100%;
        text-align: center;
    }

    .navbar-menu .btn-contact {
        display: block;
        margin: 10px auto 0;
        width: fit-content;
    }

    .navbar-brand-text {
        font-size: 1.4em;
    }

    .navbar-logo {
        height: 35px;
    }

    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8em;
    }

    .section-header p {
        font-size: 1em;
    }

    .hero {
        min-height: 450px;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.8em;
        text-shadow: 
            -1px -1px 0 var(--white),
            1px -1px 0 var(--white),
            -1px 1px 0 var(--white),
            1px 1px 0 var(--white);
    }

    .hero-subtitle {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .hero-button {
        padding: 12px 30px;
        font-size: 1em;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-icon {
        height: 150px;
        font-size: 3em;
    }

    .product-content {
        padding: 25px;
    }

    .product-content h3 {
        font-size: 1.3em;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .team-photo-container {
        height: 350px;
    }

    .team-education-overlay {
        padding: 20px;
    }

    .team-education-overlay h4 {
        font-size: 1em;
        margin-bottom: 15px;
    }

    .team-education-overlay ul li {
        font-size: 0.85em;
        margin-bottom: 12px;
    }

    .team-info {
        padding: 25px;
    }

    .team-name {
        font-size: 1.2em;
    }

    .team-bio {
        font-size: 0.9em;
    }

    .video-thumbnail {
        border-radius: 15px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.8em;
    }

    .social-slide {
        min-width: 240px;
        padding: 20px 25px;
        gap: 15px;
    }

    .social-slide .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }

    .social-slide .social-info h3 {
        font-size: 1.1em;
    }

    .social-slide .social-info p {
        font-size: 0.85em;
    }

    .cta-content h2 {
        font-size: 1.8em;
    }

    .cta-content p {
        font-size: 1em;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .contact-item {
        font-size: 0.95em;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }

    .contact-map iframe {
        height: 250px;
    }

    .cta-button {
        padding: 12px 35px;
        font-size: 1em;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Responsive - Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 10px 0;
    }

    .navbar-brand-text {
        font-size: 1.2em;
    }

    .navbar-logo {
        height: 30px;
    }

    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 1.5em;
    }

    .section-header p {
        font-size: 0.9em;
    }

    .hero {
        min-height: 400px;
        padding: 50px 0;
    }

    .hero-title {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .hero-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }

    .products-grid {
        gap: 20px;
    }

    .product-icon {
        height: 130px;
        font-size: 2.5em;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h3 {
        font-size: 1.2em;
    }

    .product-content p {
        font-size: 0.9em;
    }

    .team-photo-container {
        height: 300px;
    }

    .team-info {
        padding: 20px;
    }

    .team-name {
        font-size: 1.1em;
    }

    .team-position {
        font-size: 0.85em;
    }

    .team-bio {
        font-size: 0.85em;
        line-height: 1.6;
    }

    .team-social-link {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }

    .social-slide {
        min-width: 200px;
        padding: 15px 20px;
    }

    .social-slide .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3em;
        border-radius: 12px;
    }

    .social-slide .social-info h3 {
        font-size: 1em;
    }

    .social-slide .social-info p {
        font-size: 0.8em;
    }

    .cta-content h2 {
        font-size: 1.5em;
    }

    .cta-content p {
        font-size: 0.9em;
    }

    .contact-item {
        font-size: 0.85em;
    }

    .contact-map iframe {
        height: 200px;
        margin-top: 20px;
    }

    .cta-button {
        padding: 10px 30px;
        font-size: 0.9em;
    }

    .footer-column h3 {
        font-size: 1.3em;
    }

    .footer-column h4 {
        font-size: 1.1em;
    }

    .footer-column p,
    .footer-column a {
        font-size: 0.9em;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.3em;
    }

    .hero-subtitle {
        font-size: 0.85em;
    }

    .section-header h2 {
        font-size: 1.3em;
    }

    .team-photo-container {
        height: 280px;
    }

    .social-slide {
        min-width: 180px;
        padding: 12px 15px;
    }
}

/* Promo Popup */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.promo-popup.show {
    opacity: 1;
    visibility: visible;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.promo-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: popupSlideIn 0.5s ease-out;
    text-align: center;
    padding-bottom: 30px;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.promo-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5em;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: rotate(90deg);
}

/* Flyer Promo di tengah */
.promo-flyer {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
}

.promo-flyer img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.promo-content .promo-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 61, 130, 0.3);
    margin-top: 20px;
}

.promo-content .promo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 61, 130, 0.4);
    background: var(--secondary-color);
}

/* Mascot di pojok kanan bawah */
.promo-mascot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    animation: mascotSlideIn 0.6s ease-out 0.3s both;
}

.promo-popup:not(.show) .promo-mascot {
    display: none;
}

.promo-mascot img {
    max-width: 180px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
    animation: mascotBounce 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes mascotSlideIn {
    from {
        transform: translateX(100px) translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
}

@keyframes mascotBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Promo Popup */
@media (max-width: 768px) {
    .promo-content {
        max-width: 92%;
        border-radius: 15px;
    }

    .promo-flyer {
        max-height: 300px;
    }

    .promo-content .promo-button {
        padding: 12px 25px;
        font-size: 0.95em;
    }

    .promo-close {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
        top: 10px;
        right: 10px;
    }

    .promo-mascot {
        bottom: 10px;
        right: 10px;
    }

    .promo-mascot img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .promo-content {
        max-width: 95%;
        padding-bottom: 20px;
    }

    .promo-flyer {
        max-height: 250px;
    }

    .promo-content .promo-button {
        padding: 10px 20px;
        font-size: 0.9em;
        margin-top: 15px;
    }

    .promo-mascot img {
        max-width: 90px;
    }
}

@media (max-width: 360px) {
    .promo-flyer {
        max-height: 200px;
    }

    .promo-mascot img {
        max-width: 70px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
