/* ========================= */
/* HERO IMAGE (OVERRIDE) */
/* ========================= */
.hero {
    position: relative;
    height: 80vh;
    background: url("hero6.jpg.jpg") center/cover no-repeat !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

/* DARK OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}

/* KEEP TEXT ABOVE */
.hero h1,
.hero p {
    position: relative;
    z-index: 2;
}

/* ========================= */
/* PRODUCT SECTION */
/* ========================= */
.product-section {
    padding: 80px 10%;
    background: #f8fafc;
}

.product-section h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

/* GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */
.product-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    transform: translateY(40px);
    opacity: 0;
}

/* IMAGE PLACEHOLDER */
.product-img {
    height: 160px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: 0.4s;
}

/* TEXT */
.product-card h3 {
    margin-bottom: 10px;
    color: #0f172a;
}

.product-card p {
    font-size: 14px;
    color: #555;
}

/* HOVER EFFECT */
.product-card:hover {
    transform: translateY(-14px) scale(1.04);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* IMAGE GLOW */
.product-card:hover .product-img {
    filter: brightness(1.15);
}

/* GLOW BORDER EFFECT */
.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

.product-card:hover::before {
    opacity: 0.07;
}

/* KEEP CONTENT ABOVE */
.product-card * {
    position: relative;
    z-index: 1;
}

/* SCROLL ANIMATION */
.product-card.show {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.6s ease;
}

/* ========================= */
/* DETAIL PAGE */
/* ========================= */
.product-detail {
    padding: 80px 10%;
    background: #ffffff;
}

.detail-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* KEEP IMAGE SPACE */
.detail-img {
    flex: 1;
    min-width: 300px;
    min-height: 300px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* REAL IMAGE INSIDE THE SPACE */
.detail-img img {
    width: 100%;
    max-width: 500px;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.detail-info {
    flex: 1;
    min-width: 300px;
}

.detail-info h2,
.detail-info h3 {
    color: #0f172a;
    margin-bottom: 15px;
}

.detail-info p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 18px;
}

.detail-info ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: #444;
    line-height: 1.7;
}

/* TABLE */
.spec-table {
    margin-top: 20px;
    margin-bottom: 30px;
    width: 100%;
    border-collapse: collapse;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.spec-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

/* PRODUCT INFO BUTTON */
.inquiry-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.inquiry-btn:hover {
    transform: scale(1.05);
}

/* ========================= */
/* ENQUIRY */
/* ========================= */
.enquiry {
    padding: 80px 10%;
    text-align: center;
    background: #f8fafc;
}

.enquiry form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.enquiry input,
.enquiry textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.enquiry textarea {
    min-height: 120px;
    resize: vertical;
}

.enquiry input:focus,
.enquiry textarea:focus {
    outline: none;
    border: 1px solid #2563eb;
}

/* BUTTON */
.enquiry button {
    padding: 12px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.enquiry button:hover {
    transform: scale(1.05);
}

