@charset "utf-8";
/* --- RESET & BASICS --- */
:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-green: #76c043; /* Similar to the 'Easier to Peel' underline */
    --accent-orange: #e67e22; /* Button color */
    --accent-yellow: #f1c40f;
    --text-grey: #444;
    --light-bg: #f4f4f4;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-grey);
    background-color: #fff;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* Bold chunky headers */
    color: var(--primary-black);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   AUTH PAGES (Login / Signup)
   ========================================= */

/* Center the card on the screen */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f6f8; /* Light grey background */
    padding: 20px;
}

/* The "Pop Out" Card */
.auth-card {
    background: #fff;
    width: 100%;
    max-width: 420px; /* Nice compact width */
    padding: 40px;
    border-radius: 24px; /* Matches your Product Cards */
    box-shadow: 0 15px 35px -5px rgba(0,0,0,0.1); /* Soft floating shadow */
    text-align: center;
    
    /* ANIMATION: Pop Out Effect */
    animation: popOut 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes popOut {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* Logo in Form */
.auth-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Typography */
.auth-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #000;
}

.auth-card p {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* --- SUCCESS / LOGOUT ICON STYLES --- */
.success-icon {
    font-size: 5rem; /* Makes the icon huge */
    color: #76c043;  /* Lime Green */
    margin-bottom: 20px;
    animation: scaleUp 0.5s ease-out forwards;
}

@keyframes scaleUp {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); }
}

/* =========================================
   AI CHAT WIDGET
   ========================================= */

/* The Floating Button */
.ai-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000; /* Stays on top of everything */
}

.ai-button {
    background-color: #76c043; /* Lime Green */
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-button:hover {
    transform: scale(1.1);
    background-color: #65a638;
}

/* The Chat Box Window */
.chat-box {
    display: none; /* Hidden initially */
    flex-direction: column;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    animation: popUp 0.3s ease-out;
}

@keyframes popUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header */
.chat-header {
    background: #000;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* Body (Messages Area) */
.chat-body {
    flex: 1;
    padding: 15px;
    background-color: #f4f6f8;
    overflow-y: auto; /* Allows scrolling */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Message Bubbles */
.bot-message {
    align-self: flex-start;
    background-color: #e0e0e0;
    color: #333;
    padding: 10px 15px;
    border-radius: 15px 15px 15px 0;
    max-width: 80%;
    font-size: 0.9rem;
    line-height: 1.4;
}

.user-message {
    align-self: flex-end;
    background-color: #76c043; /* Lime Green */
    color: white;
    padding: 10px 15px;
    border-radius: 15px 15px 0 15px;
    max-width: 80%;
    font-size: 0.9rem;
}

/* Input Area */
.chat-input-area {
    padding: 10px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    background: white;
}

.chat-input-area input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-input-area button {
    background: #000;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

/* Input Fields */
.form-group { margin-bottom: 20px; text-align: left; }

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 12px; /* Rounded inputs */
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: 0.3s;
    background-color: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: #76c043; /* Lime Green Focus */
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(118, 192, 67, 0.1);
}

/* Buttons */
.btn-auth {
    width: 100%;
    padding: 14px;
    background-color: #000; /* Black Primary */
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-auth:hover {
    background-color: #76c043; /* Lime Green Hover */
    color: #fff;
    transform: translateY(-2px);
}

/* Links */
.auth-link {
    display: block;
    margin-top: 20px;
    color: #888;
    font-size: 0.9rem;
}

.auth-link a {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #76c043; /* Lime Green underline */
}

.auth-link a:hover { color: #76c043; }

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.3s;
    font-size: 1rem;
}

.btn-black {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.btn-orange {
    background-color: var(--accent-orange);
    color: var(--primary-white);
}

.btn:hover { opacity: 0.9; }

/* --- TOP BAR & HEADER --- */
.top-bar {
    background-color: var(--primary-white);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

.user-actions a {
    margin-left: 20px;
    font-weight: 700;
}

header {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    color: var(--primary-white);
    font-size: 1.8rem;
    margin: 0;
}

.logo .highlight { color: var(--accent-green); } /* Custom branding touch */

header nav ul {
    display: flex;
    gap: 25px;
}

header nav a {
    color: var(--primary-white);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
}

header nav a:hover { color: var(--accent-green); }

/* =========================================
   PRINTZ SHOP SLIDER (4 SLIDES)
   ========================================= */

/* Main Container - Boxed, Rounded, with Border */
.slider-container {
    width: 100%;
    max-width: 1400px; /* <--- INCREASE THIS NUMBER */
    height: 400px; 
    margin: 40px auto;
    border-radius: 20px;
    border: 1px solid #000;
    overflow: hidden;
    position: relative;
    background: #f4f4f4;
}

/* Flex wrapper for FOUR slides */
.slides {
    display: flex;
    width: 400%; /* 4 slides = 400% width */
    transition: transform 0.8s ease-in-out; 
}

/* Individual Slide Structure */
.slide {
    width: 25%; /* 100% divided by 4 slides */
    height: 400px; 
    position: relative; 
}

/* Banner Image */
.slide img {
    width: 100%;
    height: 100%; 
    display: block;
    object-fit: cover; /* Keeps it looking perfect inside the box */
}

/* --- Slider Logic for 4 Slides --- */
input[type="radio"] { display: none; } 

#slide1:checked ~ .slides { transform: translateX(0); }
#slide2:checked ~ .slides { transform: translateX(-25%); }
#slide3:checked ~ .slides { transform: translateX(-50%); }
#slide4:checked ~ .slides { transform: translateX(-75%); }

/* --- Navigation Squares Styling --- */
.slider-nav {
    position: absolute;
    bottom: 20px; 
    right: 40px; 
    display: flex;
    gap: 12px; 
    z-index: 20;
}

.slider-nav label {
    display: block;
    width: 25px; 
    height: 25px;
    background: #fff; /* White background so it shows up on dark images */
    border: 2px solid #000; /* Black border so it shows up on light images */
    border-radius: 4px; /* Slightly rounded squares */
    cursor: pointer;
    transition: 0.3s;
}

.slider-nav label:hover {
    background: #8DC63F; 
}

/* Highlight active square */
#slide1:checked ~ .slider-nav label:nth-child(1),
#slide2:checked ~ .slider-nav label:nth-child(2),
#slide3:checked ~ .slider-nav label:nth-child(3),
#slide4:checked ~ .slider-nav label:nth-child(4) {
    background: #8DC63F; 
    border-color: #8DC63F;
}
/* --- HERO SECTION --- */
.hero {
    padding: 60px 0;
    background-color: var(--primary-white);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- PRODUCT GRID --- */
.products {
    padding: 40px 0;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    text-align: center;
    padding: 10px;
}

/* FIX 1: Change background to white and center it */
.prod-header {
    background-color: #ffffff; /* White background */
    padding: 12px;
    margin-bottom: 10px;
    text-align: center;
}

.product-card img {
    width: 100%;
    max-width: 200px;
    transition: transform 0.3s;
}


.product-card:hover img { transform: scale(1.05); }

/* --- FEATURES BAR --- */
.features-bar {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 50px 0;
    margin-top: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: var(--primary-white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-item p {


    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
}

/* --- INFO / VIDEO SECTION --- */
.info-section {
    padding: 60px 0;
    background-color: var(--primary-white);
    text-align: center;
}

.video-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 30px;
    cursor: pointer;
}

.video-wrapper img { width: 100%; border-radius: 5px; }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,0,0,0.8);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    font-size: 20px;
}

/* --- NEW CODE STARTS HERE --- */
.info-text {
    text-align: center;
    max-width: 700px;
    margin: 30px auto;
    padding: 0 15px;
    color: #333;
}
/* --- NEW CODE ENDS HERE --- */

.info-text h2 { margin-bottom: 15px; font-size: 2rem; }
.info-text p { max-width: 600px; margin: 0 auto 10px; }
.ready-text { margin-bottom: 30px !important; font-weight: 600; }


/* --- TESTIMONIALS --- */
.testimonials {
    padding: 60px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.testimonials h2 { margin-bottom: 40px; }

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.review-card {
    background: white;
    padding: 25px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #ddd;
}

.reviewer-name { font-weight: 700; margin-bottom: 5px; color: var(--primary-black); }
.stars { color: var(--accent-yellow); margin-bottom: 10px; font-size: 0.8rem; }
.review-card p { font-size: 0.9rem; color: #555; }

/* Page Wrapper */
.page-wrapper {
    padding: 50px 0;
    background-color: #f4f6f8; /* Slightly cooler, lighter grey */
    min-height: 80vh;
}

/* Header Text */
.listing-header { margin-bottom: 40px; }
.listing-header h2 { font-size: 2.2rem; margin-bottom: 10px; }
.listing-count {
    font-weight: 400; color: #777; font-size: 1.5rem;
    margin-left: 10px; text-transform: uppercase;
}

/* The Grid Layout */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); /* Slightly wider cards */
    gap: 30px;
}

/* The Card Itself - ROUNDER & SOFTER */
.modern-card {
    background: #fff;
    /* MUCH rounder corners to match reference */
    border-radius: 24px;
    overflow: hidden;
    /* Ultra-soft, diffused shadow for a "floating" effect */
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02); /* Very subtle border */
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -5px rgba(0,0,0,0.1);
}

/* Page Wrapper */
.page-wrapper {
    padding: 50px 0;
    min-height: 80vh;
}

/* Header Text */
.listing-header { margin-bottom: 40px; }
.listing-header h2 { font-size: 2.2rem; margin-bottom: 10px; }
.listing-count {
    font-weight: 400; color: #777; font-size: 1.5rem;
    margin-left: 10px; text-transform: uppercase;
}

/* --- FIXED GRID LAYOUT (3 Columns / 3x3) --- */

.modern-grid {
    display: grid;
    /* 1. Mobile Phones: 1 Column (Stacked) */
    grid-template-columns: 1fr; 
    gap: 30px;
    padding-bottom: 40px;
}

/* 2. Tablets & Small Laptops (min-width: 700px) */
/* This will show 2 columns if the screen is a bit narrow */
@media (min-width: 700px) {
    .modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3. Standard Laptops & Desktops (min-width: 990px) */
/* This forces the 3x3 layout you want */
@media (min-width: 990px) {
    .modern-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}

/* --- FIXED GRID LAYOUT (Ends here) --- */

/* The Card Itself - Rounded & Shadowed */
.modern-card {
    background: #fff;
    border-radius: 24px; /* Big rounded corners */
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.06); /* Soft floating shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column; /* Ensures buttons stick to bottom */
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -5px rgba(0,0,0,0.1);
}

/* Colored Top Section */
.card-top {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.card-top img {
    max-height: 140px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
    transition: transform 0.3s;
}
.modern-card:hover .card-top img { transform: scale(1.03); }

/* Pastel Theme Backgrounds */
.bg-yellow { background-color: #fff7d1; }
.bg-pink   { background-color: #ffe4e9; }
.bg-purple { background-color: #f0e7ff; }
.bg-blue   { background-color: #e3efff; }

/* Card Body */
.card-body { 
    padding: 28px; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-title-row h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #222;
    font-weight: 700;
}

.tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-body p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* =========================================
   4. APP BUTTONS (TikTok & Shopee)
   ========================================= */
.button-group {
    display: flex;
    gap: 10px;
    margin-top: auto; /* Pushes buttons to the bottom */
}

.btn-app {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    color: white;
}

.btn-app:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-tiktok { background-color: #000000; }
.btn-shopee { background-color: #ee4d2d; }

/* =========================================
   ABOUT US - TIMELINE STYLES
   ========================================= */

/* 1. The Main Container */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* 2. The Vertical Grey Line */
.timeline::before {
    content: '';
    position: absolute;
    left: 20px; /* Mobile: Line is on the left */
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e0e0e0;
    border-radius: 2px;
}

/* 3. The Individual Items (2010, 2015, etc.) */
.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 60px; /* Space for the line/dots on mobile */
}

/* 4. The Green Dot */
.timeline-dot {
    position: absolute;
    left: 11px; /* Centered on the line (20px left + 4px width) */
    top: 25px;
    width: 22px;
    height: 22px;
    background: #76c043; /* Lime Green */
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #76c043; /* Extra green ring */
    z-index: 2;
}

/* 5. The Content Card */
.timeline-content {
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px); /* Float up slightly on hover */
}

/* The Black Date Bubble */
.timeline-date {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #000;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* 6. Image Styling */
.timeline-img {
    width: 100%;
    height: 250px; /* Fixed height for neatness */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f0f0f0;
    border: 1px solid #eee;
}

.timeline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures photo covers the box */
    transition: transform 0.5s;
}

.timeline-content:hover .timeline-img img {
    transform: scale(1.05); /* Slow zoom on hover */
}


/* =========================================
   DESKTOP VIEW (The Zig-Zag Logic)
   ========================================= */
@media (min-width: 900px) {
    
    /* 1. Center the vertical line */
    .timeline::before {
        left: 50%;
        margin-left: -2px;
    }

    /* 2. Each item takes 50% width */
    .timeline-item {
        padding-left: 0;
        width: 50%; 
    }

    /* --- LEFT SIDE ITEMS (Odd) --- */
    .timeline-item:nth-child(odd) {
        left: 0;
        padding-right: 50px; /* Gap to center line */
        text-align: right;   /* Text aligns to center */
    }

    /* Fix the Date Bubble: Pin it to top-right */
    .timeline-item:nth-child(odd) .timeline-date {
        position: absolute;
        top: 40px;   /* Move down slightly to sit on image */
        right: 40px; /* Sit inside the card */
        z-index: 10; /* Ensure it stays on top of image */
        margin: 0;   /* Remove old broken margins */
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    /* Move green dot to right edge */
    .timeline-item:nth-child(odd) .timeline-dot {
        left: auto;
        right: -11px;
    }


    /* --- RIGHT SIDE ITEMS (Even) --- */
    .timeline-item:nth-child(even) {
        left: 50%;
        padding-left: 50px; /* Gap to center line */
        text-align: left;
    }

    /* Fix the Date Bubble: Pin it to top-left */
    .timeline-item:nth-child(even) .timeline-date {
        position: absolute;
        top: 40px;
        left: 40px;
        z-index: 10;
        margin: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    /* Move green dot to left edge */
    .timeline-item:nth-child(even) .timeline-dot {
        left: -11px;
    }

    /* --- ARROWS --- */
    .timeline-content::after {
        content: '';
        position: absolute;
        top: 30px;
        width: 0; 
        height: 0; 
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent; 
    }

    /* Left Arrow (Points Right) */
    .timeline-item:nth-child(odd) .timeline-content::after {
        right: -10px;
        border-left: 10px solid #fff;
    }

    /* Right Arrow (Points Left) */
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -10px;
        border-right: 10px solid #fff;
    }
}
/* =========================================
   SERVICES PAGE: PRODUCT-STYLE GRID
   ========================================= */

/* Sets the background of the entire Services page to pure white */
.services-section {
    background-color: #ffffff !important;
    padding: 60px 0; 
}

/* Merged Grid Layout (3x3 setup) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Forces 3 even columns */
    gap: 40px;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto; /* Centers the grid on the screen */
}

/* The Card Wrapper */
.service-card {
    background: #fff;
    border-radius: 8px; 
    overflow: hidden; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px); 
}

/* 1. Top Section: The Black Header Box */
.service-card .prod-header {
    background-color: #000; 
    color: #fff; 
    padding: 15px 12px;
    margin: 0;
}

.service-card .prod-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
	color: #fff;  
    text-transform: uppercase;
}

/* 2. Middle Section: The Image */
.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* 3. Bottom Section: The Quote Button */
.quote-box {
    padding: 15px;
    margin-top: auto; 
    background: #f9f9f9; 
}

.quote-btn {
    display: block; 
    background: #000; 
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.quote-btn i {
    color: #25D366; 
    margin-right: 8px;
}

.quote-btn:hover {
    background: #333;
}

/* --- Mobile Responsiveness for the Grid --- */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   CONTACT US PAGE
   ========================================= */

/* The Split Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: Stacked */
    gap: 30px;
    margin-bottom: 50px;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr; /* Desktop: Info (Narrow) | Form (Wide) */
    }
}

/* Contact Info Cards (Small Horizontal Cards) */
.contact-card {
    display: flex;
    align-items: center;
    padding: 25px;
    margin-bottom: 20px;
    flex-direction: row; /* Keeps icon next to text */
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #f0f7e6; /* Very light green bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0; /* Prevents icon from squishing */
}

.icon-box i {
    font-size: 1.5rem;
    color: #76c043; /* Lime Green Icon */
}

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #000;
}

.info-text p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

/* Form Styles */
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #333;
}

.form-group textarea.form-control {
    resize: vertical; /* Allows user to stretch box downwards only */
}

/* Map Section */
.map-section {
    margin-bottom: 50px;
}
/* =========================================
   FAQ PAGE (Split Card Design)
   ========================================= */

/* Background with subtle pattern */
.faq-bg {
    background-color: #f0f2f5;
    background-image: radial-gradient(#76c043 1px, transparent 1px);
    background-size: 20px 20px; /* Tiny dots pattern */
}

/* The Main Container for the Split Look */
.split-card-container {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* --- 1. LEFT PANEL (Black Info Card) --- */
.info-panel {
    background-color: #000; /* Black Brand Color */
    color: #fff;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Decorative Circle in background (like reference) */
.info-panel::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(118, 192, 67, 0.2); /* Transparent Lime */
    border-radius: 50%;
}

.info-panel h3 { color: #fff; font-size: 1.8rem; margin-bottom: 10px; }
.info-panel p { color: #aaa; margin-bottom: 30px; }

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: #76c043; /* Lime Green Icon BG */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    margin-right: 15px;
}

.info-text h4 { font-size: 0.95rem; margin-bottom: 2px; color: #fff; }
.info-text p { font-size: 0.85rem; color: #ccc; margin: 0; }

/* --- 2. RIGHT PANEL (Content) --- */
.content-panel {
    background: #fff;
    padding: 40px;
    flex: 1;
}

.panel-header { margin-bottom: 30px; }
.panel-header h2 { font-size: 2rem; color: #333; margin-bottom: 5px; }

/* FAQ Accordion Styles */
.faq-item { margin-bottom: 15px; border-bottom: 1px solid #eee; }

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover { color: #76c043; }
.faq-question.active { color: #76c043; }
.faq-question.active i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

/* Mini Contact Form Styles */
.mini-contact-form {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px dashed #eee;
}

.mini-contact-form h4 { margin-bottom: 20px; font-size: 1.2rem; }

.form-row { display: flex; gap: 15px; margin-bottom: 15px; }

.mini-input {
    width: 100%;
    padding: 12px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
}

.mini-input:focus { border-color: #76c043; background: #fff; }

.btn-submit {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.btn-submit:hover { background: #76c043; transform: translateY(-2px); }

/* DESKTOP LAYOUT (Side by Side) */
@media (min-width: 850px) {
    .split-card-container {
        flex-direction: row;
        min-height: 600px;
    }
    
    .info-panel {
        width: 35%; /* Left side width */
        padding: 50px;
    }
    
    .content-panel {
        width: 65%; /* Right side width */
        padding: 50px;
    }
}

/* =========================================
   SHOPEE VOUCHER STYLES
   ========================================= */

/* The Grid Layout */
.coupon-section {
    padding: 60px 0;
    background-color: #fff;
}

.voucher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

/* The Coupon Card Container */
.shopee-card {
    display: flex;
    background: #fff;
    border: 1px solid #fbc9c9; /* Light reddish border */
    background-color: #fffaf9; /* Very faint orange bg */
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    position: relative;
}

.shopee-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(238, 77, 45, 0.15);
    border-color: #ee4d2d;
}

/* --- Left Side: Info --- */
.shopee-left {
    flex: 1;
    padding: 20px;
    padding-left: 25px; /* Space for the jagged edge */
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px dashed #e8e8e8; /* The dashed separator line */
    position: relative;
    background: #fff;
}

/* The "Jagged Edge" / Holes Effect on the Left */
.shopee-left::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 0;
    bottom: 0;
    width: 12px;
    /* Creates the circle cutouts */
    background-image: radial-gradient(circle, #fff 4px, transparent 5px);
    background-size: 10px 14px; /* Size and spacing of holes */
    background-position: -6px 0;
    background-repeat: repeat-y;
    z-index: 1;
}

.shopee-left h3 {
    color: #ee4d2d; /* Shopee Orange */
    font-size: 1.3rem;
    margin: 0 0 5px 0;
    font-weight: 800;
}

.voucher-sub {
    color: #ee4d2d;
    font-size: 0.9rem;
    margin: 0 0 8px 0;
    font-weight: 500;
}

.voucher-tag {
    display: inline-block;
    border: 1px solid #ee4d2d;
    color: #ee4d2d;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 2px;
    margin-bottom: 8px;
    background: #fff5f4;
    width: fit-content;
}

.voucher-validity {
    color: #757575;
    font-size: 0.75rem;
    margin: 0;
}

/* --- Right Side: Button --- */
.shopee-right {
    width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    background: #fff;
}

/* The "x5" Badge */
.voucher-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ffe9e6;
    color: #ee4d2d;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-bottom-left-radius: 6px;
}

/* The Claim Button */
.btn-claim {
    background-color: #ee4d2d; /* Shopee Orange */
    color: #fff;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: capitalize;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-claim:hover {
    background-color: #d73211; /* Darker Orange */
    color: #fff;
}
/* --- FOOTER --- */
footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer h4 {
    color: var(--primary-white);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 1rem;
}

footer ul li { margin-bottom: 10px; }
footer ul li a { color: #aaa; font-size: 0.9rem; transition: 0.3s; }
footer ul li a:hover { color: var(--primary-white); }

.newsletter {
    display: flex;
    margin-bottom: 20px;
}

.newsletter input {
    padding: 10px;
    border: none;
    width: 100%;
}

.newsletter button {
    background: var(--accent-orange);
    border: none;
    color: white;
    padding: 0 15px;
    cursor: pointer;
}

.socials i {
    font-size: 1.5rem;
    margin-right: 15px;
    cursor: pointer;
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #666;
    font-size: 0.8rem;
}

/* --- RESPONSIVE TWEAKS --- */
@media (max-width: 768px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    header nav { display: none; } /* Simplified for mobile */
}/* CSS Document */

