/* style.css */
:root[data-theme="light"] {
    --bg-main: #FFF6F8;
    --bg-alt: #FFFFFF;
    --bg-card: #FFFFFF;
    --text-main: #4E2A34;
    --text-muted: #8B6D75;
    --primary-color: #FF6B8B;
    --primary-hover: #E04B6D;
    --accent-color: #FFAEC1;
    --dark-brown: #5C1D2E;
    --border-color: #FFE2E7;
    --shadow-sm: 0 2px 10px rgba(255, 107, 139, 0.05);
    --shadow-md: 0 10px 30px rgba(255, 107, 139, 0.08);
    --navbar-bg: rgba(255, 246, 248, 0.95);
    --footer-bg: #FFF0F3;
    --primary-shadow: rgba(255, 107, 139, 0.4);
    --badge-bg: rgba(255, 107, 139, 0.1);
}

:root[data-theme="dark"] {
    --bg-main: #0F172A;
    --bg-alt: #1E293B;
    --bg-card: #1E293B;
    --text-main: #F8F9FA;
    --text-muted: #CBD5E1;
    --primary-color: #FF7597; /* Luminous pink for high dark-contrast legibility */
    --primary-hover: #FF5E89;
    --accent-color: #FFAEC1;
    --dark-brown: #E2E8F0;
    --border-color: #334155;
    --shadow-sm: 0 2px 10px rgba(255, 117, 151, 0.2);
    --shadow-md: 0 10px 30px rgba(255, 117, 151, 0.3);
    --navbar-bg: rgba(15, 23, 42, 0.95);
    --footer-bg: #0B1120;
    --primary-shadow: rgba(255, 117, 151, 0.4);
    --badge-bg: rgba(255, 117, 151, 0.15);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    transition: background-color 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Hero Section and CTA Script Styling */
.navbar-brand,
.font-script {
    font-family: 'Pacifico', cursive;
}

.hero-section h1 {
    font-family: 'Cormorant Garamond', serif;
}

.btn, .button, button {
    font-family: 'Manrope', sans-serif;
}

/* Base Classes */
.text-primary-custom { color: var(--primary-color) !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.bg-alt { background-color: var(--bg-alt); transition: background-color 0.4s ease; }
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.tracking-wide { letter-spacing: 2px; }
.max-w-600 { max-width: 600px; }

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}
.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-shadow);
}
.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}
.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    transition: all 0.4s ease;
    padding: 1.5rem 0;
}
.navbar.scrolled {
    background-color: var(--navbar-bg);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-sm);
}
.navbar-brand {
    font-family: 'Pacifico', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--dark-brown) !important;
}
[data-theme="dark"] .navbar-brand {
    color: var(--text-main) !important;
}
.nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
}

/* Custom Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-content {
    background-color: var(--bg-card);
    width: 90%;
    max-width: 400px;
    border-radius: 1.5rem;
    padding: 2.5rem;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: var(--shadow-md);
}
.mobile-menu-overlay.active .mobile-menu-content {
    transform: scale(1);
    opacity: 1;
}
.close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
.close-btn:hover {
    transform: rotate(90deg);
    color: var(--primary-color);
}
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.mobile-nav-list li {
    margin-bottom: 1.2rem;
}
.mobile-nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}
.mobile-nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}
.badge-custom {
    background-color: var(--badge-bg);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
}
.hero-image-wrapper {
    z-index: 1;
}
.hero-img {
    width: 60%;
    height: 65vh;
    margin-left: 15%;
    object-fit: cover;
    animation: floatImage 6s ease-in-out infinite;
}

@media (max-width: 991.98px) {
    .hero-img {
        width: 80%;
        height: 50vh;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 575.98px) {
    .hero-img {
        width: 100%;
        height: 40vh;
        margin: 0;
    }
}
.floating-element {
    position: absolute;
    background: var(--bg-card);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}
.float-1 { top: 10%; left: -5%; animation: floatItem 4s ease-in-out infinite alternate; }
.float-2 { bottom: 15%; right: -5%; animation: floatItem 5s ease-in-out infinite alternate-reverse; }

/* Product Cards */
.product-card {
    background-color: var(--bg-card);
    border-radius: 1.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid var(--border-color) !important;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md) !important;
}
.product-img-wrapper {
    height: 250px;
    border-radius: 1.5rem 1.5rem 0 0;
}
.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.9);
    color: var(--dark-brown);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
[data-theme="dark"] .product-badge {
    background: rgba(15, 23, 42, 0.9);
    color: var(--primary-color);
}
.card-title {
    color: var(--text-main);
}

/* Modal Custom */
.custom-modal {
    background-color: var(--bg-card);
}
.modal-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    background-color: #fff;
    opacity: 0.8;
    border-radius: 50%;
    padding: 0.8rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.modal-close-btn:hover {
    opacity: 1;
    transform: rotate(90deg);
}
.bg-light-custom {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
}

/* Services */
.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
    border-color: var(--primary-color);
}
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(244, 162, 97, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon-wrapper {
    background-color: var(--primary-color);
}
.service-card:hover .service-icon-wrapper i {
    color: #fff !important;
}

/* FAQ Accordion */
.custom-accordion .accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color) !important;
}
.custom-accordion .accordion-button {
    background-color: transparent;
    color: var(--text-main);
    box-shadow: none !important;
}
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(244, 162, 97, 0.05);
}
.custom-accordion .accordion-button::after {
    filter: invert(0.5);
}
[data-theme="dark"] .custom-accordion .accordion-button::after {
    filter: invert(1);
}

/* Gallery Masonry */
.masonry-grid {
    column-count: 1;
    column-gap: 1.5rem;
}
@media (min-width: 768px) { .masonry-grid { column-count: 2; } }
@media (min-width: 1024px) { .masonry-grid { column-count: 3; } }
.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border-color);
}
.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}
.masonry-item:hover .masonry-overlay {
    opacity: 1;
}
.masonry-item:hover img {
    transform: scale(1.05);
}
.masonry-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.masonry-item:hover .masonry-overlay i {
    transform: translateY(0);
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--text-main);
    border-top: 1px solid var(--border-color);
}
.footer-title {
    color: var(--dark-brown);
}
[data-theme="dark"] .footer-title {
    color: var(--primary-color);
}
.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}
.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-card);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}
.social-icons a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Floating Actions */
.fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}
.fab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}
.fab-theme {
    background-color: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}
.fab-theme:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.fab-scroll {
    background-color: var(--text-main);
    color: var(--bg-main);
    width: 50px;
    height: 0;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    padding: 0;
    border: none;
    transform: scale(0);
    transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                opacity 0.4s ease, 
                transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                margin 0.4s ease;
    overflow: hidden;
}
.fab-scroll.visible {
    height: 50px;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    margin: 0.2rem 0;
}
.fab-scroll:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.fab-wa {
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    animation: pulseWA 2s infinite;
}
.fab-wa:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #fff;
}

/* SweetAlert2 Close Button custom positioning */
.swal2-close {
    position: fixed !important;
    top: 2rem !important;
    right: 3rem !important;
    font-size: 2.5rem !important;
    color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    z-index: 2000 !important;
}
.swal2-close:hover {
    color: var(--primary-color) !important;
    transform: rotate(90deg) scale(1.1) !important;
}

/* Netflix CC Captions style */
.netflix-cc-gallery {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
    max-width: 85%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}
.netflix-cc-gallery .cc-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}
.netflix-cc-gallery .cc-desc {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: #e5e5e5;
}

.lightbox-container {
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.netflix-cc-modal {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    text-align: center;
    min-width: 250px;
    max-width: 80%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    pointer-events: none;
    z-index: 10;
}
.netflix-cc-modal .cc-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}
.netflix-cc-modal .cc-desc {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: #f1f1f1;
}

/* Animations */
@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
@keyframes floatItem {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, -15px); }
}
@keyframes pulseWA {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease-out;
}
.fade-in {
    transform: translateY(0);
}
.slide-up {
    transform: translateY(40px);
}
.zoom-in {
    transform: scale(0.9);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- Dropdown Menu & Form Auth --- */
.custom-dropdown-menu {
    border-radius: 1rem !important;
    padding: 0.5rem 0 !important;
    min-width: 280px !important;
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    transition: all 0.3s ease;
}
.custom-dropdown-menu .dropdown-item {
    transition: background-color 0.2s ease, color 0.2s ease;
}
.custom-dropdown-menu .dropdown-item:hover {
    background-color: var(--bg-main) !important;
}
[data-theme="dark"] .custom-dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
}
.dropdown-icon-wrapper {
    transition: transform 0.3s ease;
}
.dropdown-item:hover .dropdown-icon-wrapper {
    transform: scale(1.1);
}
.font-manrope {
    font-family: 'Manrope', sans-serif !important;
}
.text-xs {
    font-size: 0.75rem !important;
}
.text-main {
    color: var(--text-main) !important;
}

/* Auth Modal Tabs Styling */
#authTabs .nav-link {
    color: var(--text-muted);
    font-weight: 600;
    transition: all 0.3s ease;
}
#authTabs .nav-link.active {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}
#authTabsContent form .form-control {
    background-color: var(--bg-main);
    color: var(--text-main);
}
#authTabsContent form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem var(--primary-shadow);
}

/* Lightbox Navigation Buttons */
.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 15;
}
.lightbox-nav-btn:hover:not(:disabled) {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}
.lightbox-nav-btn.prev-btn {
    left: 20px;
}
.lightbox-nav-btn.next-btn {
    right: 20px;
}
.lightbox-nav-btn.disabled-nav,
.lightbox-nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

/* Instagram Highlights Style Thumbnails */
#lightbox-thumbnails::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}
.lightbox-highlight-item {
    transition: transform 0.2s ease;
}
.lightbox-highlight-item:hover {
    transform: scale(1.1);
}
.lightbox-highlight-item .highlight-ring {
    background: rgba(255, 255, 255, 0.25);
    padding: 3px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.lightbox-highlight-item.active .highlight-ring {
    background: linear-gradient(45deg, #FF6B8B, #FFAEC1, #FFD166);
    box-shadow: 0 0 12px rgba(255, 107, 139, 0.5);
}
[data-theme="dark"] .lightbox-highlight-item .highlight-ring {
    background: rgba(255, 255, 255, 0.1);
}
.lightbox-highlight-item.active img {
    border: 2px solid var(--bg-card) !important;
}

@media (max-width: 576px) {
    .lightbox-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    .lightbox-nav-btn.prev-btn {
        left: 10px;
    }
    .lightbox-nav-btn.next-btn {
        right: 10px;
    }
}
