/* Reset & Basics */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: #121212; color: #fff; line-height: 1.6; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 5px; }
.section { padding: 80px 0; }
h2 { text-align: center; margin-bottom: 40px; font-size: 2.5em; }
.smooth-scroll { scroll-behavior: smooth; }



/* Language Switcher - Top Left */
.language-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    margin-right: 25px;
    flex-shrink: 0;
}

.language-switcher a {
    color: #ddd;
    text-decoration: none;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.language-switcher a:hover {
    color: #fff;
}

.language-switcher a.active {
    background: #f1683a;
    color: #fff;
    box-shadow: 0 2px 8px rgba(241, 104, 58, 0.4);
}

/* Adjust nav container for better spacing */
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.7rem;
    font-weight: 700;
    margin-right: auto;   /* Pushes everything else to the right */
    
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .language-switcher {
        padding: 4px;
        margin-right: 15px;
    }
    
    .language-switcher a {
        padding: 7px 13px;
        font-size: 0.9rem;
    }
    
    .nav-container {
        padding: 0 20px;
    }
}

/* Header */
/* .sticky-header { position: sticky; top: 0; background: rgba(18, 18, 18, 0.8); z-index: 1000; padding: 15px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5em; font-weight: 700; }
.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 20px; }
.nav-links a { color: #fff; text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: #f1683a; }
.hamburger { display: none; flex-direction: column; cursor: pointer; }
.hamburger span { background: #fff; height: 3px; width: 25px; margin: 4px 0; transition: 0.3s; } */

/* Hero */
.hero { height: 100vh; position: relative; overflow: hidden; }
.hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; transform: translate(-50%, -50%); object-fit: cover; }
.hero-overlay { position: relative; z-index: 1; text-align: center; top: 40%; transform: translateY(-50%); padding: 0 20px; }
.hero-overlay h1 { font-size: 4em; margin-bottom: 10px; }
.hero-overlay p { font-size: 1.5em; margin-bottom: 50px; max-width: 1000px; margin-left: auto; margin-right: auto; color: #ddd; }
.cta-button { background: #f1683a; color: #fff; padding: 15px 30px; text-decoration: none; border-radius: 5px; transition: background 0.3s; }
.cta-button:hover { background: #d85a2e; }

/* Hero Mobile Adjustments */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 3em;
    }
    
    .hero-overlay p {
        font-size: 1.25em;
        margin-bottom: 35px;
    }
    /* .hero { 
        height: 91vh;
    } */
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 2.7em;
    }
    /* .hero { 
        height: 91vh;
    } */
}

/* Parallax Effect */
.hero { background-attachment: fixed; } /* Simple parallax */

/* About */
.about {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

.about .container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-img {
    width: 320px;
    height: auto;
    border-radius: 10%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* About Text */
.about-text {
    flex: 1;
    min-width: 300px;
}

.about-headline {
    font-size: 2.1rem;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #f1683a;
    font-weight: 600;
}

.about-subheadline {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 32px;
    color: #ddd;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 26px;
    line-height: 1.78;
    font-size: 1.09rem;
}

.about-text p:last-of-type {
    margin-bottom: 35px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 20px;           /* Reduced from previous values */
    }
    
    .about-content {
        flex-direction: column;
        text-align: left;
        gap: 40px;
    }

    .profile-img {
        width: 100%;                  /* Use full available width */
        max-width: 320px;             /* Prevents it from being too wide */
        height: auto;
        margin: 0 auto;
    }

    .about-headline {
        font-size: 1.85rem;
    }

    /* Reduce side padding for text on very small screens */
    .about-text {
        padding: 0 0;               /* Less space on left and right */
    }
}

/* Extra tight padding for very small phones */
@media (max-width: 480px) {
    .about {
        padding: 50px 15px;           /* Even less padding */
    }
    
    .about-text {
        padding: 0 0;
    }
}


/* Portfolio */
/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* Force 3 columns on large screens (PC) */
@media (min-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);   /* Exactly 3 columns */
    }
}

/* Optional: 2 columns on medium screens (tablets) */
@media (min-width: 768px) and (max-width: 1199px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.portfolio-card {
    cursor: pointer;
    background: #1e1e1e;
    padding: 20px;
    border-radius: 16px;           /* Softer, more modern look */
    transition: all 0.4s ease;
    height: 100%;                  /* Makes cards same height */
}

.portfolio-card:hover {
    transform: translateY(-10px);  /* Better hover effect than scale */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.portfolio-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    aspect-ratio: 16/9;            /* Keeps images consistent */
    object-fit: cover;
}

.portfolio-card h3 {
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.portfolio-card p {
    color: #bbb;
    line-height: 1.6;
}


/* Services - 3 Column Layout like Portfolio */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
}

.service-card {
    background: #1e1e1e;
    padding: 30px 25px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.service-card h3 {
    font-size: 1.55rem;
    margin-bottom: 8px;
    color: #f1683a;
    text-align: center;
}

.service-target {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 18px;
    text-align: center;
}

.package {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.package h4 {
    color: #fff;
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.price {
    font-size: 1.35rem;
    font-weight: 600;
    color: #f1683a;
    margin-bottom: 14px;
}

.package ul {
    list-style: none;
    margin: 12px 0 16px 0;
}

.package ul li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.package ul li:before {
    content: "•";
    color: #f1683a;
    position: absolute;
    left: 0;
}

.hook {
    font-style: italic;
    color: #ccc;
    line-height: 1.5;
}

/* Custom Production Section */
.custom-production {
    text-align: center;
    margin-top: 70px;
    padding: 40px 30px;
    background: #1e1e1e;
    border-radius: 16px;
    border: 1px solid #f1683a33;
}

.custom-production h3 {
    font-size: 1.75rem;
    margin-bottom: 18px;
    color: #f1683a;
}

.custom-production p {
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
    color: #ddd;
}



/* FAQ Section */
.faq {
    background: #0f0f0f;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: #1e1e1e;
    padding: 28px 32px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h4 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: #f1683a;
    line-height: 1.4;
}

.faq-item p {
    line-height: 1.75;
    color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faq-item {
        padding: 24px 25px;
    }
}

/* Testimonials */
.testimonial-carousel { display: flex; overflow: hidden; position: relative; }
.testimonial-item { min-width: 100%; text-align: center; padding: 20px; animation: carousel 30s infinite; }

@keyframes carousel { 0% { transform: translateX(0); } 33% { transform: translateX(-100%); } 66% { transform: translateX(-200%); } 100% { transform: translateX(0); } }

/* Contact */
.contact-form { display: flex; flex-direction: column; max-width: 600px; margin: 0 auto; }
.contact-form input, .contact-form textarea { margin-bottom: 10px; padding: 10px; background: #1e1e1e; border: 1px solid #333; color: #fff; border-radius: 5px; }

/* Footer */
footer { background: #0a0a0a; padding: 20px 0; text-align: center; }
.social-links a { color: #fff; margin: 0 10px; text-decoration: none; }

/* Modal */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); }
.modal-content { position: relative; margin: 10% auto; width: 80%; height: 70%; }
.close-modal { position: absolute; top: 10px; right: 20px; color: #fff; font-size: 40px; cursor: pointer; }

/* Animations */
.section { opacity: 0; transform: translateY(50px); transition: opacity 0.6s, transform 0.6s; }
.section.visible { opacity: 1; transform: translateY(0); }







/* FORM */
.success-message, .error-message {
    background: #1e1e1e;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(241, 104, 58, 0.3);
}

.error-message {
    border-color: #ff6b6b;
}



/* INSTAGRAM ICON */
.instagram-link {
    margin-top: 35px;
    text-align: left;
}

.instagram-link a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.instagram-link a:hover {
    color: #f1683a;
    transform: translateY(-2px);
}

.instagram-icon {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.instagram-link a:hover .instagram-icon {
    transform: scale(1.1);
}






/* Floating WhatsApp Business Button - Safe & Professional */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 62px;
    height: 62px;
    /* background: #25D366; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35); */
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    /* box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); */
}

.whatsapp-float img {
    width: 36px;
    height: 36px;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 58px;
        height: 58px;
    }
    
    .whatsapp-float img {
        width: 33px;
        height: 33px;
    }
}








/* Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; width: 100%; background: #121212; }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
}

@media (max-width: 768px) {
    .nav-links {
        padding: 40px 0;                /* adds space at top/bottom of menu */
    }

    .nav-links li {
        margin: 20px 0;                 /* bigger vertical space between items */
        font-size: 1.3rem;              /* optional: make text slightly larger too */
    }

    .nav-links a {
        display: block;                 /* ensures full clickable area */
        padding: 0 30px;             /* horizontal padding + more touch-friendly height */
        
    }
}







/* Header & Navigation */
.sticky-header {
    position: sticky;
    top: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 18px 0;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Desktop Navigation - Centered */
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: #eee;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Instagram Icon - Visible on Desktop */
.instagram-topbar {
    display: flex;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
}

.instagram-icon-top {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.instagram-topbar:hover .instagram-icon-top {
    transform: scale(1.15);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 15px;
}

.hamburger span {
    background: #fff;
    height: 3px;
    width: 28px;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* ===================== MOBILE ===================== */
@media (max-width: 992px) {
    .nav-links {
        position: static;
        transform: none;
        gap: 25px;
        margin-left: auto;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;                    /* Hidden on mobile */
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li a {
        font-size: 1.6rem;
    }

    .hamburger {
        display: flex;
    }

    /* ✅ HIDE Instagram Icon on Mobile */
    .instagram-topbar {
        display: none;
    }
}



/* Hamburger / X Animation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 32px;
    height: 26px;
    position: relative;
}

.hamburger span {
    background: #fff;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    transition: all 0.35s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }

/* Turn into X when active */
.hamburger.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        justify-content: center;
        align-items: center;
        gap: 5px;
        transition: left 0.4s ease;
        z-index: 1000;
    }

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

    .nav-links li a {
        font-size: 1.6rem;
    }

    /* Hide Instagram on mobile */
    .instagram-topbar {
        display: none;
    }
}

