/* ===== Custom Properties ===== */
:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent: #0f3460;
    --highlight: #e94560;
    --highlight-glow: rgba(233, 69, 96, 0.4);
    --cyan: #00d4ff;
    --gold: #f5a623;
    --text: #e0e0e0;
    --text-dark: #333;
    --white: #ffffff;
    --light-bg: #f4f4f8;
    --card-bg: #fafafa;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.97);
    padding: 10px 0;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    /* Removed filter: brightness(0) invert(1); to show original logo colors */
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links li a {
    font-weight: 600;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-links li a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-nav {
    background: var(--highlight) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
}

.btn-nav:hover {
    background: #d63851 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--highlight-glow) !important;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.dropdown-menu a .fa-whatsapp {
    color: #25d366;
    font-size: 18px;
}

.dropdown-menu a .fa-phone {
    color: var(--cyan);
    font-size: 16px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--white);
    padding: 8px;
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--highlight);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--highlight);
}

.btn-primary:hover {
    background: #d63851;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--highlight-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 17px;
}

/* ===== Hero Section ===== */
header {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 75%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s ease-in-out, transform 8s ease-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.85) 0%,
        rgba(15, 52, 96, 0.7) 50%,
        rgba(26, 26, 46, 0.8) 100%
    );
    z-index: -1;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: var(--highlight);
    border-color: var(--highlight);
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--highlight-glow);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Hero Content */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    color: var(--white);
    z-index: 1;
    position: relative;
}

.hero-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--cyan);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    max-width: 800px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--cyan), var(--highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s ease 1.2s forwards;
    opacity: 0;
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--highlight);
    animation: scrollLine 2s ease infinite;
}

/* ===== Section Common ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--highlight);
    background: rgba(233, 69, 96, 0.08);
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header p {
    color: #777;
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== Work Section ===== */
.work-section {
    background: var(--light-bg);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.work-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.work-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 85%;
    transition: transform 0.6s ease;
}

.work-card:hover .work-card-image img {
    transform: scale(1.08);
}

.work-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(26, 26, 46, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.card-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.work-card-content {
    padding: 28px 24px 32px;
    text-align: center;
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--highlight));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px var(--highlight-glow);
}

.icon-circle i {
    font-size: 22px;
    color: var(--white);
}

.work-card-content h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

.work-card-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* ===== Parallax Divider ===== */
.parallax-divider {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center 60%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.88),
        rgba(15, 52, 96, 0.85)
    );
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.parallax-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.parallax-content p {
    font-size: 19px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Play Section ===== */
.play-section {
    background: var(--white);
}

.play-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.play-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.play-card-featured {
    grid-column: 1 / -1;
    grid-row: span 1;
    height: 360px;
}

.play-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 60%;
    transition: transform 0.8s ease;
}

.play-card:hover .play-card-bg {
    transform: scale(1.08);
}

.play-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(26, 26, 46, 0.9) 0%,
        rgba(26, 26, 46, 0.3) 50%,
        transparent 100%
    );
    transition: var(--transition);
}

.play-card:hover .play-card-overlay {
    background: linear-gradient(
        to top,
        rgba(233, 69, 96, 0.85) 0%,
        rgba(26, 26, 46, 0.4) 60%,
        transparent 100%
    );
}

.play-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    color: var(--white);
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition);
}

.play-card:hover .play-card-content {
    transform: translateY(0);
}

.play-card-content i {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.play-card:hover .play-card-content i {
    opacity: 1;
    transform: translateY(0);
}

.play-card-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.play-card-content p {
    font-size: 14px;
    opacity: 0;
    max-height: 0;
    transition: all 0.4s ease;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.play-card:hover .play-card-content p {
    opacity: 1;
    max-height: 100px;
    margin-top: 4px;
}

/* Featured play card special layout */
.play-card-featured .play-card-content {
    max-width: 600px;
}

.play-card-featured .play-card-content h3 {
    font-size: 30px;
}

.play-card-featured .play-card-content p {
    font-size: 16px;
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-item-wide {
    grid-column: span 2;
}

/* Position specific gallery images to show the best parts */
.gallery-item-wide img {
    object-position: center 60%;
}

/* Portrait images in gallery should show the center/action */
.gallery-item:not(.gallery-item-wide) img {
    object-position: center 40%;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--highlight-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.85;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-img-footer {
    height: 44px;
    width: auto;
    /* Removed filter: brightness(0) invert(1); to show original logo colors */
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 14px;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--highlight);
    padding-left: 4px;
}

.social-links-labeled {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.social-links-labeled a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-links-labeled a:hover {
    color: #e1306c;
    padding-left: 4px;
}

.social-links-labeled a i {
    font-size: 18px;
    color: #e1306c;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--highlight);
    border-color: var(--highlight);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .play-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 260px;
    }

    .play-card-featured {
        grid-column: 1 / -1;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(12px);
        text-align: center;
        padding: 24px 0;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 8px 0;
    }

    .nav-links li a {
        display: block;
        padding: 12px 24px;
    }

    .dropdown-menu {
        display: flex;
        position: static;
        background: none;
        backdrop-filter: none;
        box-shadow: none;
        padding: 0;
        min-width: auto;
        justify-content: center;
        gap: 8px;
        margin-top: 4px;
    }

    .dropdown-menu a {
        padding: 8px 16px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 24px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .play-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .play-card-featured {
        height: 300px;
    }

    /* Show play card content by default on mobile */
    .play-card-content {
        transform: translateY(0);
    }

    .play-card-content i {
        opacity: 1;
        transform: translateY(0);
    }

    .play-card-content p {
        opacity: 1;
        max-height: 100px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .parallax-divider {
        background-attachment: scroll;
        height: 300px;
    }

    .parallax-content h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .slider-dots {
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section {
        padding: 64px 0;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .play-card-featured .play-card-content h3 {
        font-size: 22px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}