/* ================= RESET ================= */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #eef2f6;
}

/* ================= HEADER ================= */
.gg-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}
.gg-top-inner,
.gg-bottom-inner {
    max-width: 1400px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.gg-logo img {
    width: 300px;
    display: block;
}
.gg-right-group {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 16px;
    color: #2c4a64;
}
.gg-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #2c4a64;
    font-weight: 600;
}
.gg-divider {
    color: #b8c6d3;
}

/* ===== ICON BASE ===== */
.gg-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: #2c4a64;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

/* PHONE ICON */
.gg-icon.phone {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M22 16.92V21a2 2 0 0 1-2.18 2A19.8 19.8 0 0 1 3 5.18 2 2 0 0 1 5 3h4.09a2 2 0 0 1 2 1.72c.12.81.31 1.6.57 2.36a2 2 0 0 1-.45 2.11L9.91 10.91a16 16 0 0 0 6.18 6.18l1.72-1.72a2 2 0 0 1 2.11-.45c.76.26 1.55.45 2.36.57a2 2 0 0 1 1.72 2z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M22 16.92V21a2 2 0 0 1-2.18 2A19.8 19.8 0 0 1 3 5.18 2 2 0 0 1 5 3h4.09a2 2 0 0 1 2 1.72c.12.81.31 1.6.57 2.36a2 2 0 0 1-.45 2.11L9.91 10.91a16 16 0 0 0 6.18 6.18l1.72-1.72a2 2 0 0 1 2.11-.45c.76.26 1.55.45 2.36.57a2 2 0 0 1 1.72 2z'/%3E%3C/svg%3E");
}

/* CART ICON */
.gg-icon.cart {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 4h-2l-3 7v2h2l1.6 3.2c.2.4.6.8 1.1.8h10.6c.5 0 .9-.3 1.1-.8l2.2-4.4c.2-.4.1-.9-.1-1.3-.2-.4-.6-.6-1.1-.6H6.4L7 4z'/%3E%3Ccircle cx='9' cy='21' r='1.5' fill='black'/%3E%3Ccircle cx='19' cy='21' r='1.5' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 4h-2l-3 7v2h2l1.6 3.2c.2.4.6.8 1.1.8h10.6c.5 0 .9-.3 1.1-.8l2.2-4.4c.2-.4.1-.9-.1-1.3-.2-.4-.6-.6-1.1-.6H6.4L7 4z'/%3E%3Ccircle cx='9' cy='21' r='1.5' fill='black'/%3E%3Ccircle cx='19' cy='21' r='1.5' fill='black'/%3E%3C/svg%3E");
}

/* LOGIN ICON */
.gg-icon.login {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8V22h19.2v-2.8c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8V22h19.2v-2.8c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");
}

/* ================= NAV ================= */
.gg-nav {
    display: flex;
    gap: 30px;
}
.gg-nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #0b3c5d;
}
.gg-search {
    display: flex;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
}
.gg-search input {
    border: none;
    padding: 8px 12px;
    outline: none;
}

/* ================= TOP BACKGROUND ================= */
.home-top-bg {
    background: url("../images/top-bg-texture.png") center / cover no-repeat;
    padding: 25px 0 15px;
}
.home-top-inner {
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 20px;
}

/* ================= LEFT CATEGORY ================= */
.home-sidebar {
    width: 270px;
    background: linear-gradient(180deg, #0a3a63, #1f6fa8);
    border-radius: 6px;
    overflow: hidden;
}
.sidebar-title {
    background: #123f67;
    color: #fff;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 700;
}
.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.category-list li {
    display: flex;
    justify-content: space-between;
    padding: 14px 16px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.15);
    cursor: pointer;
}
.category-list li::after {
    content: "›";
    opacity: .6;
}
.category-list li.active,
.category-list li:hover {
    background: #fff;
    color: #0b3c5d;
    font-weight: 600;
}

/* ================= HERO SLIDER ================= */
.home-hero-card {
    flex: 1;
}
.hero-card-inner {
    position: relative;
    height: 100%;
    min-height: 420px;
    padding: 0;              /* 🔥 remove inner padding */
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
}

/* FULL WIDTH IMAGE */
.hero-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* 🔥 fills entire area */
    border-radius: 14px;
    display: block;
}

/* TEXT */
.hero-text h1 {
    font-size: 38px;
    color: #0b3c5d;
    margin-bottom: 8px;
}
.hero-text p {
    font-size: 18px;
    color: #4c5f6d;
    max-width: 480px;
}


/* ===== HERO SLIDER ARROWS â€“ PERFECT CENTER ===== */

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    color: #1f6fa8;
    cursor: pointer;
    user-select: none;
    z-index: 20;
}

/* LEFT ARROW */
.hero-arrow.left {
    left: 50%;
    transform: translate(-120%, -50%);
}

/* RIGHT ARROW */
.hero-arrow.right {
    left: 50%;
    transform: translate(20%, -50%);
}

/* DOTS */
/* .hero-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}*/
.hero-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5dc;
    cursor: pointer;
}
.hero-dots .dot.active {
    background: #7ac943;
}

/* ================= NEWS ================= */
.news-strip {
    max-width: 1400px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, #0b3c5d, #1f6fa8);
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
}
.news-label {
    background: #062c4a;
    padding: 4px 8px;
    margin-right: 10px;
    border-radius: 4px;
    font-weight: 700;
}

/* ================= PRODUCTS ================= */
.page-wrapper {
    max-width: 1400px;
    margin: auto;
    display: flex;
}
.main-content {
    flex: 1;
    padding: 20px;
}
.product-section {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 8px rgba(0,0,0,.12);
}
.product-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}
.product-title {
    margin-top: 12px;
    padding: 8px;
    background: linear-gradient(90deg,#0b3c5d,#1f6fa8);
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

/* ================= FOOTER ================= */
.site-footer {
    background: #0b3c5d;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

/* ================= PRODUCT GRID ENHANCEMENT (COMPACT & PREMIUM) ================= */

.product-section {
    margin-top: 30px;
}

/* ================= CARD BASE ================= */
.product-card {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 14px 16px; /* â¬‡ compact */
    box-shadow:
        0 8px 20px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.6);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    overflow: hidden;
}

/* ================= LEFT ACCENT LINE ================= */
.product-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 4px;
    background: linear-gradient(
        180deg,
        #7ac943,
        #1f6fa8
    );
    border-radius: 4px;
    opacity: 0.55;
}

/* ================= HOVER EFFECT ================= */
.product-card:hover {
    transform: translateY(-6px); /* â¬‡ reduced lift */
    box-shadow:
        0 14px 30px rgba(0,0,0,0.14),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

/* ================= IMAGE ================= */
.product-card img {
    width: 100%;
    height: 130px; /* â¬‡ reduced from 160 */
    object-fit: contain;
    transition: transform 0.35s ease;
}

/* IMAGE ZOOM */
.product-card:hover img {
    transform: scale(1.05);
}

/* ================= TITLE BUTTON ================= */
.product-title {
    margin-top: 14px;
    padding: 10px 12px; /* â¬‡ slimmer */
    background: linear-gradient(
        135deg,
        #0b3c5d,
        #1f6fa8
    );
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
    letter-spacing: 0.25px;
    transition:
        background 0.3s ease,
        transform 0.25s ease;
}

/* TITLE HOVER */
.product-card:hover .product-title {
    background: linear-gradient(
        135deg,
        #1f6fa8,
        #0b3c5d
    );
    transform: translateY(-1px);
}

/* ================= ABOUT US ================= */

.about-section {
    background: linear-gradient(180deg, #f6fbff, #eef5fb);
    padding: 80px 20px;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 40px;
    color: #0b3c5d;
    margin-bottom: 10px;
}

.about-tagline {
    font-size: 18px;
    color: #1f6fa8;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 16px;
    color: #4c5f6d;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* RIGHT STATS */
.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.stat-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.14);
}

.stat-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #0b3c5d;
}

.stat-label {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #607d8b;
    font-weight: 600;
}

/* SCROLL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* ================= CUSTOMER REVIEWS ================= */

.reviews-section {
    background: linear-gradient(180deg, #eef5fb, #f9fcff);
    padding: 90px 20px;
}

.reviews-container {
    max-width: 1400px;
    margin: auto;
}

/* HEADER */
.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-header h2 {
    font-size: 38px;
    color: #0b3c5d;
    margin-bottom: 10px;
}

.reviews-header p {
    font-size: 17px;
    color: #607d8b;
}

/* GRID */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

/* CARD */
.review-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

/* LEFT ACCENT */
.review-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 4px;
    background: linear-gradient(180deg, #7ac943, #1f6fa8);
    border-radius: 4px;
}

/* HOVER */
.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.14);
}

/* STARS */
.review-stars {
    font-size: 18px;
    color: #f4b400;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

/* TEXT */
.review-text {
    font-size: 15px;
    color: #4c5f6d;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* AUTHOR */
.review-author strong {
    display: block;
    color: #0b3c5d;
    font-size: 15px;
}

.review-author span {
    font-size: 13px;
    color: #7a8b98;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-header h2 {
        font-size: 32px;
    }
}

/* ================= FOOTER ================= */

.gg-footer {
    background: linear-gradient(
        180deg,
        #0b3c5d 0%,
        #082e48 100%
    );
    color: #dbe8f2;
    margin-top: 60px;
}

/* MAIN GRID */
.gg-footer-inner {
    max-width: 1400px;
    margin: auto;
    padding: 50px 20px 35px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
}

/* BRAND */
.footer-brand img {
    width: 220px;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #c8d9e6;
    max-width: 420px;
}

/* HEADINGS */
.gg-footer h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    position: relative;
}

.gg-footer h4::after {
    content: "";
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #7ac943, #1f6fa8);
    display: block;
    margin-top: 6px;
    border-radius: 3px;
}

/* LINKS */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #cfe0ed;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #7ac943;
    padding-left: 6px;
}

/* CONTACT */
.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #cfe0ed;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    padding: 14px 20px;
    font-size: 13px;
    background: rgba(0,0,0,0.2);
    color: #bcd0df;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .gg-footer-inner {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-brand p {
        margin: auto;
    }

    .gg-footer h4::after {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ================= SUBTLE GLOW ================= */
.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(122,201,67,0.10),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 1;
}

/* ================= WHATSAPP FLOAT BUTTON ================= */

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* Mobile safe spacing */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
    }
}