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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f1b2e;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 27, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-text {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #FFA500;
}

.nav-links a.admin-link {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    color: #0f1b2e;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links a.admin-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 165, 0, 0.3);
    color: #0f1b2e;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1b2e 0%, #1a2f4a 100%);
}

.parallax-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.ting-circle {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.5));
}

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

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
}

/* Reveal Elements Animation */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Big Text Sections */
.big-text-section {
    position: relative;
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0f1b2e;
}

.big-text-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.parallax-bg-light {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    right: -25%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
    z-index: 1;
}

.big-text {
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
    white-space: nowrap;
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 0;
}

.big-text-orange {
    color: rgba(255, 165, 0, 0.12);
}

.reveal-text {
    opacity: 0;
    animation: none;
}

.reveal-text.visible {
    animation: revealText 1.2s ease forwards;
}

@keyframes revealText {
    0% {
        opacity: 0;
        transform: scaleX(0);
        transform-origin: center;
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.big-text-section .section-content {
    position: relative;
    z-index: 3;
    margin-top: 2rem;
    opacity: 0;
    animation: none;
}

.big-text-section .section-content.visible {
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

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

.section-content p {
    font-size: 1.3rem;
    color: #b0b0b0;
    max-width: 600px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    color: #0f1b2e;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 165, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #FFA500;
    border: 2px solid #FFA500;
}

.btn-secondary:hover {
    background: rgba(255, 165, 0, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: #FFA500;
    font-size: 0.9rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(15, 27, 46, 0.9), rgba(26, 47, 74, 0.9));
    border-top: 1px solid rgba(255, 165, 0, 0.1);
}

.about-content p {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.2);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.5);
    transform: translateY(-5px);
}

.service-card h3 {
    color: #FFA500;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: rgba(15, 27, 46, 0.5);
    border-top: 1px solid rgba(255, 165, 0, 0.1);
}

.section-intro {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-item {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.05), rgba(255, 215, 0, 0.02));
    border: 1px solid rgba(255, 165, 0, 0.15);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 165, 0, 0.4);
}

.service-number {
    font-size: 3rem;
    font-weight: bold;
    color: rgba(255, 165, 0, 0.3);
    margin-bottom: 1rem;
}

.service-item h3 {
    color: #FFA500;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-item p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(135deg, rgba(15, 27, 46, 0.9), rgba(26, 47, 74, 0.9));
    border-top: 1px solid rgba(255, 165, 0, 0.1);
}

.portfolio-section {
    margin-bottom: 4rem;
}

.portfolio-section h3 {
    color: #FFA500;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.logo-card {
    background: rgba(255, 165, 0, 0.08);
    border: 2px solid rgba(255, 165, 0, 0.2);
    border-radius: 12px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-card:hover {
    border-color: #FFA500;
    background: rgba(255, 165, 0, 0.15);
    transform: scale(1.05);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.video-placeholder {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 165, 0, 0.2);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.video-card:hover .video-placeholder {
    border-color: #FFA500;
    background: rgba(255, 165, 0, 0.2);
    transform: scale(1.03);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-top: 1px solid rgba(255, 165, 0, 0.2);
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
    text-align: center;
    padding: 6rem 2rem;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 165, 0, 0.1);
    padding: 2rem 0;
    text-align: center;
    color: #b0b0b0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .big-text {
        font-size: 5rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .services-showcase,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .logos-grid,
    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo {
        margin-bottom: 1rem;
    }

    .ting-circle {
        width: 100px;
        height: 100px;
    }

    .big-text {
        font-size: 3rem;
    }
}
