@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --primary-blue: #5BB2D0;
    --primary-dark: #0f7396;
    --navy-blue: #042431;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --transition: all 0.3s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

/* Overrides for dark transparent theme */
.bg-light {
    background-color: transparent !important;
}
.bg-white {
    background-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
}
.text-muted {
    color: rgba(255, 255, 255, 0.75) !important;
}

body.boutique-landing {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background: linear-gradient(135deg, rgba(4, 36, 49, 0.9) 0%, rgba(91, 178, 208, 0.8) 100%), url('../images/banner.jpg') center/cover fixed;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    font-weight: 700;
}

/* Navbar */
.navbar-boutique {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-boutique .nav-link {
    color: var(--navy-blue) !important;
    font-weight: 500;
    font-size: 15px;
    margin: 0 10px;
    position: relative;
}

.navbar-boutique .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-blue);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-boutique .nav-link:hover::after {
    width: 100%;
}

.hero-section {
    padding: 160px 0 60px 0;
    display: flex;
    align-items: center;
    background: transparent;
    position: relative;
}

/* Infinite Menu Carousel */
.menu-carousel-section {
    padding: 30px 0;
    margin-top: 40px;
    margin-bottom: 60px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.carousel-track-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: max-content;
    gap: 20px;
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-card {
    position: relative;
    width: 600px;
    height: 360px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    text-decoration: none;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-card:hover img {
    transform: scale(1.1);
}

.carousel-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(4, 36, 49, 0.9) 0%, rgba(4, 36, 49, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: background 0.3s ease;
}

.carousel-card:hover .carousel-card-overlay {
    background: linear-gradient(to top, rgba(91, 178, 208, 0.9) 0%, rgba(91, 178, 208, 0.1) 100%);
}

.carousel-card-overlay h4 {
    color: var(--white);
    margin: 0;
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.carousel-card:hover .carousel-card-overlay h4 {
    transform: translateY(-3px);
    color: var(--white);
}


.hero-content {
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
}

.btn-boutique {
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 10px 20px rgba(91, 178, 208, 0.3);
    transition: var(--transition);
    animation: fadeInUp 1.4s ease;
}

.btn-boutique:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(91, 178, 208, 0.4);
    color: var(--white);
}

/* Sections General */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* About Section */
.about-section {
    background-color: transparent;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(91, 178, 208, 0.1);
    z-index: 1;
}

/* Features/Pillars */
.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0;
    background: linear-gradient(180deg, rgba(91, 178, 208, 0.1) 0%, transparent 100%);
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(91, 178, 208, 0.15);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(91, 178, 208, 0.1);
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-blue);
    color: var(--white);
}

/* Services Detail */
.services-section {
    background-color: transparent;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.service-item i {
    font-size: 24px;
    color: var(--navy-blue);
    margin-right: 20px;
    margin-top: 5px;
}

.service-item h4 {
    margin-bottom: 10px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--navy-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--navy-blue);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Pricing */
.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin: 20px 0;
}

.price span {
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* Contact */
.contact-section {
    background-color: transparent;
    color: var(--white);
}

.contact-section h2 {
    color: var(--white);
}

.contact-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.contact-card i {
    font-size: 40px;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

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

/* Social Icons Popups */
.social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-item {
    position: relative;
}

.social-btn {
    background: transparent;
    border: none;
    outline: none;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.social-popup {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(4, 36, 49, 0.95); /* Darker navy blue */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    width: 220px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1000;
    pointer-events: none;
}

.social-popup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(4, 36, 49, 0.95);
}

.social-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.social-popup-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    text-align: left;
}

.social-popup-icon {
    font-size: 26px;
    margin-right: 12px;
    background: var(--white);
    padding: 6px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-popup-info h6 {
    color: var(--white);
    margin: 0;
    font-size: 0.90rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-shadow: none;
}

.social-popup-info span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
}

.social-popup-btn {
    display: block;
    width: 100%;
    padding: 8px 0;
    background: var(--white);
    color: var(--navy-blue) !important;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.social-popup-btn:hover {
    background: var(--primary-blue);
    color: var(--white) !important;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--navy-blue);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

@media (max-width: 991px) {
    .navbar-boutique {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    .navbar-boutique .nav-link {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        color: var(--navy-blue) !important;
        font-weight: 500;
    }
    .navbar-boutique .nav-link:last-child {
        border-bottom: none;
    }
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 15px;
        width: 250px;
        background: rgba(255, 255, 255, 0.98);
        padding: 10px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .carousel-card {
        width: 300px;
        height: 180px;
    }
    .section-padding {
        padding: 60px 0;
    }
    .section-title {
        margin-bottom: 40px;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .price {
        font-size: 3rem;
    }
    .price span {
        font-size: 1.2rem;
    }
    .pricing-card {
        padding: 40px 20px;
    }
    
    /* Timeline Fixes for Mobile */
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 15px;
    }
    .timeline-item::after {
        left: 21px !important;
    }
    .right {
        left: 0%;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .timeline-content {
        padding: 15px 20px;
    }
}
