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

:root {
    --brand-dark: #0e1a24;
    --brand-accent: #e09f3e;
    --brand-light: #f5f2ee;
}

body {
    font-family: "Poppins", "Segoe UI", sans-serif;
    color: var(--brand-dark);
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    min-height: 100vh;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s ease;
}

.top-social-bar {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 85vh;
    min-height: 600px;
}

.hero-carousel .carousel-item {
    height: 85vh;
    min-height: 600px;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65); /* Darken slightly for readability */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.hero-glass-card .text-accent {
    color: #ffda75; /* Brighter accent for dark overlay */
}

.text-accent {
    color: var(--brand-accent);
}

.section-padding {
    padding: 70px 0;
}

.product-card {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 16px 30px rgba(14, 26, 36, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(14, 26, 36, 0.16);
}

.product-card img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 22px;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.product-card:hover img {
    transform: scale(1.04);
    filter: brightness(1.05);
}

.placeholder-image {
    height: 220px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8c8c8c;
    font-weight: 600;
}

.contact-card,
.info-panel {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 14px 26px rgba(14, 26, 36, 0.05);
}

.contact-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand-dark);
    text-decoration: none;
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-link-sm {
    font-size: 0.98rem;
    line-height: 1.25;
}

.contact-card-link {
    color: inherit;
    cursor: pointer;
}

.contact-card-link:hover .contact-link {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .hero {
        padding: 60px 0;
    }
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    color: white;
}

.floating-wa svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.subpage-hero {
    height: 45vh;
    min-height: 350px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/625348048_26298620416412853_2141726884427684252_n.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.subpage-hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 0;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.subpage-hero .lead {
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 10px;
}

.header-social-link,
.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    font-size: 1.1rem;
    opacity: 0.95;
    transition: transform 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
}

.header-social-link:hover,
.footer-social-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.12);
}

.header-social-link:hover {
    background: rgba(0, 0, 0, 0.06);
}

.footer-links a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

.reviews-auto-scroll {
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.reviews-auto-scroll::-webkit-scrollbar {
    display: none;
}

.reviews-auto-scroll .review-item {
    width: min(420px, 85vw);
}

