/* ============================================
   SHARP LIGHT - MAIN STYLESHEET
   ============================================ */

/* CSS Variables - Brand Colors */
:root {
    --primary: #6b7280;        /* Medium grey (main brand grey) */
    --secondary: #4b5563;      /* Dark grey */
    --accent: #f97316;         /* Sharp Light orange */
    --gold: #9ca3af;           /* Light grey (replacing gold) */
    --light-gold: #d1d5db;     /* Lighter grey */
    --white: #ffffff;
    --gray: #f3f4f6;           /* Light background grey */
    --dark-gray: #1f2937;      /* Very dark grey (near black) */
    --text: #374151;           /* Dark grey text */
    --transition: all 0.3s ease;
}
/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0 !important;
    left: 0;
    width: 100%;
    background: rgb(0, 0, 0);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgb(0, 0, 0);
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0; /* Reduced from 15px */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-text span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent);
}

.cta-button {
    background: var(--accent);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px; /* Increased to push content safely below header */
    padding-bottom: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-gray);
    z-index: 1;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;  
    position: absolute;
    top: 0;
    left: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-pattern.png') center/cover;
    opacity: 0.1;
    z-index: 2;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    margin-top: -60px; /* Slight lift to balance whitespace */
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--gold);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
    color: white;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--accent);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    background: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 25px;
}

.product-category {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.product-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.product-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-specs i {
    color: var(--accent);
}

.product-link {
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-link:hover {
    gap: 10px;
}

/* ============================================
   HOMEPAGE - BRAND PARTNERS SECTION
   ============================================ */

.partners-section {
    background: var(--gray);
}

.partners-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.partner-logo-item {
    background: white;
    padding: 25px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    min-width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.partner-logo-item img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo-item span {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .partners-logo-row {
        gap: 20px;
    }
    
    .partner-logo-item {
        padding: 20px 30px;
        min-width: 120px;
        height: 80px;
    }
    
    .partner-logo-item img {
        max-width: 100px;
        max-height: 50px;
    }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') center/cover;
    opacity: 0.05;
}

.why-us .section-title {
    color: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.why-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    background-color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.footer-brand .logo img {
    width: 100px;
    height: auto;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px; /* Adjusted to match compact header height */
        flex-direction: column;
        background: rgb(0, 0, 0);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero Adjustments for Tablet/Mobile */
    .hero {
        height: auto;
        min-height: auto;
        padding: 110px 0 50px;  /* Increased to prevent overlap with navbar */
        display: block;
    }

    .hero-content {
        margin-top: 0;          /* Remove the negative margin */
        padding-bottom: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        position: relative;     /* Reset absolute positioning */
        bottom: auto;
        left: auto;
        transform: none;
        flex-direction: row;    /* Keep row if possible, or wrap */
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-top: 20px;
        gap: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column; /* Stacked up and down */
        gap: 15px;
        width: 100%;
        padding: 0 20px;        /* Side margins */
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;            /* Full width */
        min-height: 55px;       /* Unified height */
        padding: 12px 20px;
        font-size: 1rem;
        line-height: 1.2;
    }

    /* Stack stats on very small screens if needed, or keep row */
    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;       /* Smaller numbers */
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* ============================================
   PAGE HEADER (Common for all pages)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    margin-top: 0 !important;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') center/cover;
    opacity: 0.1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    position: relative;
    z-index: 1;
    opacity: 0.8;
}

.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: white; }

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text-full { margin-bottom: 30px; }

.about-text-full p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.9;
    font-size: 1.05rem;
}

.lead-text {
    font-size: 1.2rem !important;
    color: var(--primary) !important;
    font-weight: 500;
}

.tagline-box {
    background: linear-gradient(135deg, var(--accent) 0%, #d35400 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.tagline-box i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.tagline-box h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.tagline-box p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.about-detail-image {
    position: relative;
}

.about-detail-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    width: 100%;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    text-align: center;
}

.floating-card .big-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.floating-card span:last-child {
    font-size: 0.9rem;
    color: #666;
}

/* Mission Vision */
.mission-vision { background: var(--gray); }

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: white;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.mv-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent) 0%, #d35400 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
}

.mv-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.mv-card p {
    color: #666;
    line-height: 1.7;
}

/* Why Detail */
.why-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}

.why-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.why-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section { padding: 0 0 100px; }

.cta-box {
    background: linear-gradient(135deg, var(--accent) 0%, #d35400 100%);
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-box .btn-primary {
    background: white;
    color: var(--accent);
    border-color: white;
}

.cta-box .btn-primary:hover {
    background: transparent;
    color: white;
}

/* ============================================
   PRODUCTS PAGE STYLES
   ============================================ */

/* Page Header */
/* Page Header Styles optimized */

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    margin-top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') center/cover;
    opacity: 0.1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    position: relative;
    z-index: 1;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: white;
}

/* Products Filter */
.products-filter {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.filter-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Products List */
.products-list {
    background: #f5f5f5;
    padding: 80px 0;
}

.products-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-full-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.product-full-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Product Image */
.product-image-wrap {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: all 0.3s ease;
}

.product-full-card:hover .product-image-wrap img {
    transform: scale(1.05);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.product-full-card:hover .product-overlay {
    opacity: 1;
}

.view-btn {
    background: var(--accent);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-full-card:hover .view-btn {
    transform: translateY(0);
}

.view-btn:hover {
    background: #d35400;
}

/* Product Info */
.product-info {
    padding: 30px;
}

.product-cat {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 1.4rem;
    margin: 0 0 5px 0;
    color: var(--primary);
}

.product-model {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Product Specs */
.product-specs-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-specs-row span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
}

.product-specs-row i {
    color: var(--accent);
}

/* Product Badges */
.product-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: #f0f0f0;
    color: #555;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-warranty {
    background: var(--accent);
    color: white;
}

/* No Products */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 20px;
}

.no-products p {
    color: #666;
    font-size: 1.2rem;
}

/* Enquiry CTA */
.enquiry-cta {
    padding: 80px 0;
    background: #f5f5f5;
}

.enquiry-box {
    background: white;
    padding: 40px 60px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.enquiry-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.enquiry-text p {
    color: #666;
}

/* Button Styles */
.btn-primary {
    background: var(--accent);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--accent);
    text-decoration: none;
}

.btn-primary:hover {
    background: #d35400;
    border-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .enquiry-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .products-full-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
    
    .products-full-grid {
        grid-template-columns: 1fr;
    }
    
    .enquiry-box {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .products-list {
        padding: 60px 0;
    }
    
    .product-image-wrap {
        height: 240px;
    }
}

/* Catalog Switcher */
.catalog-switcher {
    padding: 40px 0;
    background: var(--gray);
}

.catalog-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.catalog-tab {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.catalog-tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.catalog-tab.active {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--white) 0%, rgba(249,115,22,0.05) 100%);
}

.catalog-tab.active .tab-icon {
    background: var(--accent);
    color: var(--white);
}

.tab-icon {
    width: 80px;
    height: 80px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.tab-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.tab-content p {
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .catalog-tabs {
        grid-template-columns: 1fr;
    }
}

/* Chandelier Specific Styles */
.chandelier-card {
    position: relative;
}

.chandelier-image {
    height: 350px;
}

.chandelier-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.chandelier-overlay {
    flex-direction: column;
    gap: 10px;
}

.download-btn {
    padding: 10px 20px;
    background: var(--white);
    color: var(--accent);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.download-btn:hover {
    background: var(--accent);
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.chandelier-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.chandelier-size, .chandelier-material {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chandelier-size i, .chandelier-material i {
    color: var(--accent);
    width: 20px;
}

.chandelier-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.btn-inquire {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-inquire:hover {
    background: var(--accent);
}


/* Catalog Section */
.catalog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.catalog-showcase {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.catalog-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    background: #e5e7eb;
}

.catalog-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-icon-overlay i {
    font-size: 5rem;
    color: white;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.catalog-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.catalog-actions {
    display: flex;
    gap: 15px;
}

.btn-catalog {
    padding: 14px 28px;
    background: #f97316;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-catalog:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.btn-catalog-outline {
    padding: 14px 28px;
    background: transparent;
    color: #f97316;
    border: 2px solid #f97316;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-catalog-outline:hover {
    background: #f97316;
    color: white;
}

/* Chandeliers Hero */
.chandeliers-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.chandeliers-intro {
    text-align: center;
    margin-bottom: 60px;
}

.chandeliers-intro .section-tag {
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.chandeliers-intro h2 {
    font-size: 2.8rem;
    margin: 15px 0;
}

.chandeliers-intro p {
    color: #9ca3af;
    font-size: 1.2rem;
}

/* Featured Chandeliers */
.featured-chandeliers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.chandelier-showcase-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s;
}

.chandelier-showcase-card:hover {
    transform: translateY(-10px);
}

.chandelier-images {
    position: relative;
}

.chandelier-images .main-image {
    height: 280px;
    overflow: hidden;
}

.chandelier-images .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.chandelier-showcase-card:hover .main-image img {
    transform: scale(1.05);
}

.image-thumbs {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: rgba(0,0,0,0.3);
}

.image-thumbs img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s;
}

.image-thumbs img:hover {
    opacity: 1;
}

.chandelier-details {
    padding: 30px;
}

.chandelier-details h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.chandelier-desc {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.chandelier-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
    font-size: 0.9rem;
}

.spec-item i {
    color: #f97316;
    width: 20px;
}

.btn-inquire {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: #f97316;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-inquire:hover {
    background: #ea580c;
}

.btn-inquire-small {
    display: inline-block;
    padding: 10px 20px;
    background: #f97316;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Catalog CTA Section */
.catalog-cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.catalog-cta-box {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 50px;
    border-radius: 20px;
    color: white;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #f97316;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cta-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-features span {
    color: #d1d5db;
    font-size: 0.95rem;
}

.cta-features i {
    color: #10b981;
    margin-right: 5px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-primary {
    padding: 14px 28px;
    background: #f97316;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-secondary {
    padding: 14px 28px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Custom Design CTA */
.custom-design-cta {
    padding: 80px 0;
}

.cta-box-light {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box-light h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.cta-box-light p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 968px) {
    .catalog-showcase {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .catalog-image {
        height: 250px;
        width: 100%;
    }

    .catalog-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-catalog, .btn-catalog-outline {
        width: 100%;
        justify-content: center;
    }

    .catalog-cta-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-icon {
        margin: 0 auto;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Custom Chandelier CTA */
.custom-chandelier-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
}

.custom-chandelier-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.custom-chandelier-cta p {
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.cta-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cta-features i {
    font-size: 2.5rem;
    color: var(--accent);
}

.cta-features span {
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cta-features {
        flex-direction: column;
        gap: 30px;
    }
}


/* ============================================
   PRODUCT DETAIL - MODERN UX DESIGN
   ============================================ */

/* Breadcrumb */
.breadcrumb-section {
    background: #f8f8f8;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #666;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--accent);
}

.breadcrumb-nav .separator {
    color: #ccc;
    font-size: 0.7rem;
}

.breadcrumb-nav .current {
    color: var(--primary);
    font-weight: 500;
}

/* Product Detail Modern */
.product-detail-modern {
    padding: 60px 0;
    background: white;
}

.product-detail-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    background: transparent;
    border-radius: 0;
    padding: 0;
    position: relative;
    margin-bottom: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.thumb {
    width: 80px;
    height: 80px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.thumb.active {
    border-color: #f97316;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 10px;
    text-align: center;
    padding: 2px;
}
/* Product Info Modern */
.product-info-modern {
    padding: 20px 0;
}

.product-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 126, 34, 0.1);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-title-modern {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-model-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.model-label {
    color: #888;
}

.model-value {
    color: var(--primary);
    font-weight: 600;
}

.warranty-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-short-desc-modern {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

/* Key Features */
.key-features {
    margin-bottom: 30px;
}

.key-features h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-tag-modern {
    background: #f5f5f5;
    color: #555;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.feature-tag-modern:hover {
    background: #e8e8e8;
}

.feature-tag-modern.highlight {
    background: var(--accent);
    color: white;
}

/* Quick Specs */
.quick-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f8f8;
    border-radius: 15px;
}

.spec-item-quick {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-item-quick i {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.spec-item-quick .spec-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 3px;
}

.spec-item-quick .spec-value {
    display: block;
    font-weight: 600;
    color: var(--primary);
}

/* Action Buttons */
.product-actions-modern {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-enquire {
    flex: 1;
    background: var(--accent);
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.3);
}

.btn-enquire:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.4);
}

.btn-enquire i {
    font-size: 1.5rem;
}

.btn-enquire span {
    display: flex;
    flex-direction: column;
}

.btn-enquire strong {
    font-size: 1.1rem;
}

.btn-enquire small {
    font-size: 0.85rem;
    opacity: 0.9;
}

.btn-whatsapp-modern {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s;
}

.btn-whatsapp-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-share {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    color: #555;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-share:hover {
    background: var(--primary);
    color: white;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Detailed Specs */
.detailed-specs {
    padding: 80px 0;
    background: #f8f8f8;
}

.specs-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: all 0.3s;
}

.tab-btn.active {
    color: var(--accent);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

.tab-content.hidden {
    display: none;
}

/* Specs Grid Modern */
.specs-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.spec-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.spec-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 126, 34, 0.1);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.spec-info {
    display: flex;
    flex-direction: column;
}

.spec-title {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

.spec-detail {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

/* Features List */
.features-list-modern {
    background: white;
    padding: 40px;
    border-radius: 20px;
}

.feature-item-large {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.feature-item-large:last-child {
    border-bottom: none;
}

.feature-item-large i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 5px;
}

.feature-item-large h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.feature-item-large p {
    color: #666;
    line-height: 1.6;
}

/* Applications */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.app-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.app-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.app-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.app-item h4 {
    color: var(--primary);
    font-size: 1rem;
}

/* Related Products Modern */
.related-products-modern {
    padding: 80px 0;
    background: white;
}

.related-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.related-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.related-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.related-image {
    height: 200px;
    background: #f8f8f8;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.related-info {
    padding: 25px;
}

.related-info h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.related-info p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.view-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Product CTA */
.product-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px; /* Unified width for better alignment */
    transition: all 0.3s;
}

.cta-buttons .btn-primary {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}

.cta-buttons .btn-primary:hover {
    background: #ea580c;
    border-color: #ea580c;
    transform: translateY(-3px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1200px) {
    .specs-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .applications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .related-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .product-detail-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
    }
    
    .quick-specs {
        grid-template-columns: 1fr;
    }
    
    .specs-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-title-modern {
        font-size: 1.8rem;
    }
    
    .specs-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .specs-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
/* Projects Page Styles */

/* Projects Page Header */

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

/* Filter Section */
.projects-filter-section {
    padding: 40px 0;
    background: var(--gray);
    position: relative;
    z-index: 100;
}

.filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* Projects Gallery */
.projects-gallery-section {
    padding: 60px 0;
    background: var(--white);
}

.projects-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.project-item {
    transition: opacity 0.3s ease;
}

.project-item.featured {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .project-item.featured {
        grid-column: span 1;
    }
    .projects-masonry {
        grid-template-columns: 1fr;
    }
}

/* Project Cards */
.project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.project-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image-wrapper img {
    transform: scale(1.08);
}

/* Double Image Effect */
.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-stack .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .hover-img {
    opacity: 1;
}

.image-count-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Project Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-btn {
    width: auto;
    /* height: 60px; */
    background: var(--accent);
    border-radius: 50px ;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.project-card:hover .view-btn {
    transform: scale(1);
}

/* Project Info */
.project-info {
    padding: 25px;
}

.project-category-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.project-info h3 {
    font-size: 1.4rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-weight: 600;
}

.project-info .location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-info .location i {
    color: var(--accent);
}

.project-info .desc {
    color: var(--text);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* Existing vendor prefix */
    line-clamp: 3;         /* Added standard property */
    overflow: hidden;
}

/* Project Footer */
.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.year {
    color: #999;
    font-size: 0.9rem;
    font-weight: 600;
}

.view-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.view-link:hover {
    gap: 12px;
}

/* Featured Project Card Large */
.project-card-large {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

@media (max-width: 968px) {
    .project-card-large {
        grid-template-columns: 1fr;
    }
}

/* Project Slider */
.project-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slides {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0,0,0,0.6);
    padding: 10px 20px;
    border-radius: 30px;
}

.slider-controls button {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.project-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Project Details Side */
.project-details {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: fit-content;
}

.project-details .project-title {
    font-size: 2.2rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.2;
}

.project-details .project-location {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-details .project-location i {
    color: var(--accent);
}

.project-details .project-description {
    color: var(--text);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.project-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project-specs span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
    padding: 12px 20px;
    background: var(--gray);
    border-radius: 8px;
}

.project-specs i {
    color: var(--accent);
}

/* CTA Section */
.project-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray) 0%, var(--white) 100%);
}

.cta-box {
    background: var(--primary);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.btn-primary {
    padding: 15px 40px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px;
    }
    .cta-content h2 {
        font-size: 1.8rem;
    }
}
/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--accent);
}
/* ============================================
   BRAND PARTNERS PAGE - PROFESSIONAL
   ============================================ */

/* Page Header */
/* Global Header Override Removed */

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.breadcrumb {
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb span {
    color: white;
}

/* Partners Intro */
.partners-intro {
    background: white;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 20px;
}

/* Partners Section */
.bg-dark {
    background: var(--primary);
    color: white;
}

.section-header.light .section-subtitle {
    color: var(--accent);
}

.section-header.light .section-title {
    color: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.partner-card {
    background: var(--gray);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.partner-logo-box {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: var(--gray);
}

.partner-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.fallback-text {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.partner-info {
    padding: 25px;
    text-align: center;
}

.partner-info h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.partner-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Why Partners */
.why-partners {
    background: var(--gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Partners Page Fixes */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.partner-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-logo-box {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.partner-info h4 {
    color: #fff;
    margin-bottom: 10px;
}

.partner-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Loading state */
.partner-logo-box.loading {
    position: relative;
}

.partner-logo-box.loading::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: #f97316;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Certifications */
.bg-primary {
    background: var(--primary);
    color: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.cert-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.cert-item i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.cert-item h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cert-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: white;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent) 0%, #d35400 100%);
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-box .btn-primary {
    background: white;
    color: var(--accent);
}

.cta-box .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .partners-grid,
    .benefits-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .cta-box {
        padding: 40px 30px;
    }
}
/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--gray); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-side { padding: 20px 0; }

.contact-desc {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details { margin-bottom: 40px; }

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

.whatsapp-link {
    color: #25d366;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.social-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form-side {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.alert {
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.alert-success i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
}

.contact-form { 
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group input.readonly {
    background: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

/* Map */
.map-section { line-height: 0; }
.map-section iframe { width: 100%; border: none; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .about-detail-grid,
    .contact-grid,
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mv-grid,
    .stats-row,
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-detail-grid,
    .projects-masonry,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .enquiry-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .product-images {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .page-header h1 { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .hero-title { font-size: 2.8rem; }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-side {
        padding: 30px;
    }
    
    .mv-grid,
    .stats-row,
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
        position: relative;
        margin-top: 50px;
    }
    
    .floating-card {
        right: 20px;
        bottom: -10px;
    }
}

@media (max-width: 480px) {
    .section-padding { padding: 60px 0; }
    .page-header { padding: 120px 0 60px; }
    
    .products-full-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-whatsapp,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}
/* ============================================
   IMAGE MANAGEMENT SYSTEM CSS
   ============================================ */

/* Image Container */
.image-container {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* Placeholder */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    padding: 20px;
    text-align: center;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.image-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Loading State */
.image-loading {
    position: relative;
    background: #f0f0f0;
    overflow: hidden;
}

.image-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

/* Upload Button (for admin) */
.upload-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.image-container:hover .upload-btn {
    opacity: 1;
}

/* Responsive Images */
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Object Fit Classes */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-fill { object-fit: fill; }