/* ===========================
   GENERAL STYLE
   =========================== */
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    background: #ffffff;
}

.btn-wa-nav {
    background-color: #25d366;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-wa-nav:hover {
    background-color: #128c7e;
    color: white !important;
}

/* ===========================
   CAROUSEL / HERO
   =========================== */
.carousel-item {
    height: 90vh;
    min-height: 400px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 20%;
}

.carousel-item.active .carousel-caption h1 {
    animation: slideInDown 0.7s both;
}

@keyframes slideInDown {
    from { transform: translateY(-50px); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

/* ===========================
   WHY CHOOSE US
   =========================== */
.hero1 {
    background-color: #dedede;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #d1fae5;
    color: #059669;
    border-radius: 50%;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   PRODUCT CARD
   =========================== */
.product-card {
    border: none;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* ===========================
   WHATSAPP BUTTON
   =========================== */
.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
}

/* ===========================
   WHATSAPP FLOATING
   =========================== */
.wa-floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    z-index: 9999;
    animation: fadeInUp 0.8s ease-out;
}

.wa-bubble-link {
    text-decoration: none;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.wa-bubble {
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.wa-bubble::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid white;
}

.wa-text-top {
    font-size: 14px;
    color: #333;
    display: block;
}

.wa-text-bottom {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wa-icon-main {
    width: 70px;
    height: 70px;
    background-color: #60d669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.wa-icon-main:hover {
    transform: scale(1.1);
    background-color: #4ade80;
}

.wa-bubble-link:hover {
    transform: translateX(-5px);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0);    }
}

@media (max-width: 480px) {
    .wa-bubble {
        display: none;
    }
}

/* ===========================
   ABOUT US
   =========================== */
.check-icon {
    width: 28px;
    height: 28px;
    background-color: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    margin-top: 4px;
}

/* ===========================
   FOOTER
   =========================== */
.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    background: linear-gradient(135deg, #4988C4, #BDE8F5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(73, 136, 196, 0.4);
}


