/* ===== Basic Reset & Smooth Scrolling ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #FFF3E0; /* Soft Mango Yellow background */
    line-height: 1.6;
}

/* ===== Scroll Progress Bar ===== */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #ffe0ec;
    z-index: 102;
}

.progress-bar {
    height: 8px;
    width: 0%;
    background: linear-gradient(90deg, #FF2E84 0%, #FF8FAB 50%, #FFC107 100%);
    border-radius: 0 4px 4px 0;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    color: #2b2b2b;
    margin-bottom: 15px;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; text-align: center; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Navigation Bar ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 15px 5%;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(255, 46, 132, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-box {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #555;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF2E84;
}

/* Hamburger Menu Defaults */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background-color: #FF2E84;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin: 5px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #FF2E84;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 46, 132, 0.4);
}

.btn-primary:hover {
    background-color: #E6005C;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: #FFC107;
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-secondary:hover {
    background-color: #FFB300;
    transform: translateY(-3px);
}

/* ===== Hero Section & Page Load Animation ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 80px 5%;
    background: linear-gradient(135deg, #FFD1DC 0%, #FFE0B2 100%);
}

.hero-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    margin-right: 40px;
    animation: fadeInUp 1s ease-out;
}

.hero-text h1 { color: #2b2b2b; }

.hero-text p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-buttons { display: flex; flex-wrap: wrap; }

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 46, 132, 0.2);
    object-fit: cover;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== General Section Layouts ===== */
.section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-alt {
    background-color: #FFD1DC; /* Darker Pink for alternating sections */
    max-width: 100% !important;
}

.section-alt > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section h2 { margin-bottom: 20px; }

.section > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

/* ===== What We Make Section Images ===== */
.image-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.section-img {
    flex: 1;
    min-width: 300px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 46, 132, 0.1);
    transition: transform 0.3s ease;
}

.section-img:hover {
    transform: translateY(-5px);
}

/* ===== Why You'll Love It ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 46, 132, 0.08);
    transition: transform 0.3s ease;
    border-top: 6px solid #FF2E84;
}

.feature-card:nth-child(2) { border-top-color: #FFC107; }
.feature-card:nth-child(3) { border-top-color: #06D6A0; }

.feature-card:hover { transform: translateY(-10px); }

/* ===== Products Section ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 46, 132, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover { transform: translateY(-10px); }

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-card h3, .product-card p { padding: 0 25px; text-align: left; }
.product-card h3 { margin-top: 20px; color: #FF2E84; }
.product-card p { margin-bottom: 25px; }

/* ===== Gallery Section ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 46, 132, 0.1);
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: translateY(-10px) scale(1.02);
}

/* ===== Brand Campaign / Video & Jingle Section ===== */
.campaign-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch; /* Makes both cards the same height */
}

.video-container {
    flex: 2; /* Takes up slightly more space than the jingle card */
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000000;
    border: 6px solid #FFC107; /* Mango Yellow border */
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 46, 132, 0.2);
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Jingle Card */
.jingle-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 46, 132, 0.1);
    border-top: 6px solid #FFC107;
    display: flex;
    flex-direction: column;
}

.jingle-card h3 {
    color: #FF2E84;
}

.jingle-lyrics {
    background-color: #FFF3E0;
    padding: 15px 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #FF2E84;
}

.jingle-lyrics p {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}

.jingle-lyrics p:last-child {
    margin-bottom: 0;
}

/* Audio Player */
.audio-player-container {
    margin-top: auto; /* Pushes the player to the bottom of the card */
    background-color: #FFFAF0;
    border: 2px dashed #FFB300;
    border-radius: 10px;
    padding: 12px;
}

.audio-player {
    width: 100%;
}

/* ===== Customer Comments Section ===== */
.comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.comment-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 46, 132, 0.08);
    border-left: 6px solid #FFC107;
}

.comment-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.comment-author {
    font-weight: 700;
    color: #FF2E84;
    text-align: right;
}

/* ===== FAQ Section ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.1);
    text-align: left;
}

.faq-item h3 { color: #FF2E84; margin-bottom: 10px; }
.faq-item p { margin-bottom: 0; color: #666; }

/* ===== Contact Us Form ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.15);
    text-align: left;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #FFE0B2;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    background-color: #FFFAF0;
    transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #FFC107;
}

.form-group textarea { resize: vertical; }

/* ===== Final Call To Action (CTA) ===== */
.cta {
    background: linear-gradient(135deg, #FF2E84 0%, #FFC107 100%);
    color: #fff;
    text-align: center;
    padding: 100px 5%;
}

.cta h2 { color: #fff; margin-bottom: 15px; }

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta .btn-primary { background-color: #fff; color: #FF2E84; }
.cta .btn-primary:hover { background-color: #f8f9fa; color: #E6005C; }

/* ===== Footer Section ===== */
.footer {
    background-color: #831843;
    color: #cccccc;
    padding: 50px 5% 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col { flex: 1; min-width: 250px; }

.footer-logo {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.footer-contact { color: #f8bbd0; font-size: 1rem; margin-bottom: 10px; }
.footer-col h4 { color: #ffffff; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: #f8bbd0;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: #FFC107; }

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #e1bee7;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #FF2E84;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 46, 132, 0.4);
    z-index: 99;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
    background-color: #FFC107;
    transform: translateY(-5px);
}

/* ===== Mobile Responsiveness / Hamburger Menu ===== */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 15px rgba(255, 46, 132, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, gap 0.4s ease-in-out;
    }

    .menu-toggle:checked ~ nav .nav-links {
        max-height: 600px;
        padding: 30px 0;
        gap: 15px;
    }

    .menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
    .menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
    }

    .hero-text { margin-right: 0; margin-bottom: 40px; }
    .hero-buttons { justify-content: center; }
    
    .hero-img {
        max-height: 350px;
    }

    /* Stack campaign layout vertically on mobile */
    .campaign-layout {
        flex-direction: column;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .contact-form { padding: 25px; }
}