/* ============================================
   CROWN ELECTRONICS AND MAINTENANCE
   COMPLETE STYLESHEET
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    /* Orange - Primary Brand Color */
    --orange: #F47920;
    --orange-light: #F9A55A;
    --orange-dark: #D4660A;
    --orange-deep: #B8560A;
    --orange-gradient: linear-gradient(135deg, #F47920, #F9A55A, #F47920);
    --orange-glow: 0 0 20px rgba(244, 121, 32, 0.4);

    /* Blue - ONLY for Read More buttons */
    --blue: #1A4FA0;
    --blue-dark: #123A7A;
    --blue-gradient: linear-gradient(135deg, #1A4FA0, #2563C4, #1A4FA0);
    --blue-glow: 0 0 20px rgba(26, 79, 160, 0.3);

    /* Backgrounds - White & Light Orange Tints */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FFF8F3;
    --bg-tertiary: #FFF0E6;
    --bg-card: #FFFFFF;

    /* Text */
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A6A;
    --text-muted: #8A8AA0;

    /* Borders & Shadows */
    --border-color: #FFE0CC;
    --shadow: 0 4px 20px rgba(244, 121, 32, 0.08);
    --shadow-lg: 0 10px 40px rgba(244, 121, 32, 0.12);
    --shadow-hover: 0 8px 30px rgba(244, 121, 32, 0.2);

    /* Navbar */
    --navbar-bg: rgba(255, 255, 255, 0.97);
    --navbar-shadow: 0 2px 20px rgba(244, 121, 32, 0.1);

    /* Hero & Dark Sections - ORANGE GRADIENT (replaces dark navy) */
    --hero-bg: linear-gradient(135deg, #D4660A 0%, #F47920 50%, #F9A55A 100%);
    --dark-section-bg: linear-gradient(135deg, #B8560A 0%, #D4660A 50%, #F47920 100%);

    /* Footer - Deep warm dark */
    --footer-bg: #2A1810;
    --footer-text: #D4C8BE;

    /* Form Inputs */
    --input-bg: #FFF8F3;
    --input-border: #FFD4B3;

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Transitions & Radius */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;

    /* Keep --gold pointing to orange for compatibility */
    --gold: #F47920;
    --gold-light: #F9A55A;
    --gold-dark: #D4660A;
    --gold-gradient: linear-gradient(135deg, #F47920, #F9A55A, #F47920);
    --gold-glow: 0 0 20px rgba(244, 121, 32, 0.4);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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: 80px 0; }
.text-gold { color: var(--orange); }
.text-orange { color: var(--orange); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--orange);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--orange-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 12px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--navbar-bg);
    box-shadow: var(--navbar-shadow);
    padding: 8px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 10001;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: var(--transition);
    object-fit: contain;
}

.navbar.scrolled .logo-img { height: 45px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 10px 18px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: var(--transition);
}

.navbar:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.95);
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
    background: rgba(244, 121, 32, 0.1);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.nav-link i {
    margin-right: 5px;
    font-size: 0.85rem;
}

.nav-cta .btn { margin-left: 10px; }

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 10001;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar:not(.scrolled) .bar { background: #fff; }

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .bar:nth-child(2) { opacity: 0; }

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1rem;
    border-radius: 12px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Orange Button - Main CTA */
.btn-gold {
    background: var(--orange-gradient);
    color: #fff;
    box-shadow: var(--orange-glow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 121, 32, 0.5);
    filter: brightness(1.1);
}

/* Orange Outline Button */
.btn-outline {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
}

.btn-outline:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-3px);
}

/* White Outline Button - used on dark backgrounds */
.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--orange-dark);
    transform: translateY(-3px);
}

.btn-back { margin-top: 20px; }

/* ============================================
   HERO SECTION - WITH BACKGROUND IMAGE
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Orange-tinted overlay - more transparent */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(42, 24, 16, 0.55) 0%,
        rgba(184, 86, 10, 0.45) 50%,
        rgba(212, 102, 10, 0.40) 100%
    );
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.hero-badge i { color: #fff; }

.hero h1 {
    font-family: var(--font-primary);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero h1 .text-gold {
    color: #FFE0CC;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    max-width: 520px;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.hero .btn-outline:hover {
    background: #fff;
    color: var(--orange-dark);
}

.hero-stats { display: flex; gap: 40px; }

.stat-item { text-align: center; }

.stat-item .stat-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.stat-item .stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2px;
}

/* Hero Image */
.hero-image-wrapper { position: relative; }

.hero-img-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.05)
    );
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.hero-logo-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: scroll-bounce 1.5s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(15px); opacity: 0.3; }
}

/* ============================================
   PAGE HEADER - ORANGE BACKGROUND
   ============================================ */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    background: var(--hero-bg);
    text-align: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content { position: relative; z-index: 2; }

.page-header h1 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-header h1 .text-gold {
    color: #FFE0CC;
}

.page-header-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-top: 10px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

.breadcrumb a { color: #fff; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 0.7rem; color: rgba(255, 255, 255, 0.85); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 121, 32, 0.1);
    border: 1px solid rgba(244, 121, 32, 0.2);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--orange);
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   PRODUCTS GRID - HOME PREVIEW
   ============================================ */
.products-preview { background: var(--bg-secondary); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(244, 121, 32, 0.4);
}

/* Product Image */
.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    padding: 15px;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

/* Skeleton loading */
.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--bg-tertiary) 25%,
        var(--border-color) 50%,
        var(--bg-tertiary) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-load 1.5s infinite;
    z-index: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

@keyframes skeleton-load {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Product Badge - Orange */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--orange-gradient);
    color: #fff;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-primary);
    z-index: 2;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(184, 86, 10, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

.product-card:hover .product-overlay { opacity: 1; }

.overlay-content {
    text-align: center;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 600;
}

.overlay-content i {
    font-size: 2rem;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
    line-height: 1.4;
}

.product-info .product-category {
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.product-info .product-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    margin-top: auto;
    transition: var(--transition);
}

.product-link:hover { gap: 10px; }

/* Product CTA */
.product-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    flex-wrap: wrap;
    gap: 10px;
}

.quote-text {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--orange);
}

.quote-text i { margin-right: 5px; }

.product-cta > i {
    color: var(--orange);
    transition: var(--transition);
}

.product-card:hover .product-cta > i {
    transform: translateX(5px);
}

/* Full clickable card */
.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ============================================
   READ MORE BUTTON - BLUE (Only Blue Element)
   ============================================ */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-gradient);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--blue-glow);
    margin-top: 5px;
}

.read-more-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 79, 160, 0.35);
}

.read-more-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.read-more-btn.active i {
    transform: rotate(180deg);
}

/* ============================================
   EXPANDABLE PRODUCT DETAILS
   ============================================ */
.product-details {
    display: none;
    padding: 0 20px 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 5px;
    animation: slideDown 0.35s ease;
}

.product-details.open {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-details p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
    margin-top: 15px;
}

.product-details h4 {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--orange);
    margin: 15px 0 8px;
    padding-bottom: 4px;
    border-bottom: 2px solid rgba(244, 121, 32, 0.2);
}

.product-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 12px;
}

.product-details ul li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.product-details ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.product-details .detail-category {
    display: inline-block;
    background: rgba(244, 121, 32, 0.1);
    color: var(--orange);
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(244, 121, 32, 0.25);
    margin-top: 15px;
    margin-bottom: 5px;
}

/* ============================================
   SHOP GRID
   ============================================ */
.shop-section { background: var(--bg-primary); }

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.shop-product .product-image {
    aspect-ratio: 4 / 3;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content .section-tag { display: inline-flex; }

.why-us-content h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 15px 0;
}

.why-us-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i { font-size: 1.3rem; color: var(--orange); }

.feature-item h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-item p { font-size: 0.9rem; color: var(--text-secondary); }

/* Why Us Image Placeholder */
.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(
        135deg,
        rgba(244, 121, 32, 0.08),
        rgba(244, 121, 32, 0.03)
    );
    border: 2px solid rgba(244, 121, 32, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-logo {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(
        135deg,
        rgba(244, 121, 32, 0.08),
        rgba(244, 121, 32, 0.03)
    );
    border: 2px solid rgba(244, 121, 32, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-logo-img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

/* Experience Badge - Orange */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--orange-gradient);
    color: #fff;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--orange-glow);
}

.exp-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
}

.exp-text { font-size: 0.8rem; font-weight: 600; }

.about-content .section-tag { display: inline-flex; }

.about-content h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 15px 0 20px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(244, 121, 32, 0.07);
    border: 1px solid rgba(244, 121, 32, 0.15);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(244, 121, 32, 0.14);
    border-color: rgba(244, 121, 32, 0.3);
}

.highlight-item i { color: var(--orange); font-size: 1.1rem; }

/* ============================================
   MISSION & VISION
   ============================================ */
.mission-vision { background: var(--bg-secondary); }

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(244, 121, 32, 0.35);
}

.mv-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: rgba(244, 121, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange);
    transition: var(--transition);
}

.mv-card:hover .mv-icon {
    background: var(--orange);
    color: #fff;
}

.mv-card h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.mv-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   STATS SECTION - ORANGE GRADIENT
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: var(--hero-bg);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card { text-align: center; padding: 30px; }

.stat-card .stat-icon {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.stat-card .stat-number {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 5px;
}

/* ============================================
   SUPPLY GRID
   ============================================ */
.supply-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.supply-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.supply-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(244, 121, 32, 0.35);
}

.supply-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(244, 121, 32, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange);
    transition: var(--transition);
}

.supply-card:hover .supply-icon {
    background: var(--orange);
    color: #fff;
}

.supply-card h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.supply-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section { background: var(--bg-secondary); }

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.process-step { text-align: center; max-width: 200px; }

.step-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(244, 121, 32, 0.15);
    line-height: 1;
    margin-bottom: 10px;
}

/* Step Icons - Orange */
.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--orange-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: var(--orange-glow);
}

.process-step h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.process-step p { font-size: 0.85rem; color: var(--text-secondary); }

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--orange);
    font-size: 1.2rem;
}

/* ============================================
   QUOTE PAGE
   ============================================ */
.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.quote-product-info .section-tag {
    display: inline-flex;
    margin-bottom: 20px;
}

.selected-product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 25px;
}

.selected-product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selected-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 20px;
}

.selected-product-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    padding: 20px 20px 5px;
}

.selected-product-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* Quote Info Cards - Orange accents */
.quote-info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote-info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(244, 121, 32, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(244, 121, 32, 0.15);
    transition: var(--transition);
}

.quote-info-card:hover {
    background: rgba(244, 121, 32, 0.1);
    border-color: rgba(244, 121, 32, 0.3);
}

.quote-info-card i {
    font-size: 1.3rem;
    color: var(--orange);
    flex-shrink: 0;
}

.quote-info-card h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.quote-info-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info .section-tag { display: inline-flex; }

.contact-info h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 15px 0 20px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-cards { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(244, 121, 32, 0.35);
    box-shadow: var(--shadow);
}

/* Contact Card Icon - Orange */
.contact-card-icon {
    width: 45px;
    height: 45px;
    background: rgba(244, 121, 32, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--orange);
    color: #fff;
}

.contact-card h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-card p,
.contact-card a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-card a:hover { color: var(--orange); }

/* ============================================
   FORMS
   ============================================ */
.form-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    font-weight: 500;
}

.form-alert i { font-size: 1.2rem; flex-shrink: 0; }

.form-alert-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-card h3 i { color: var(--orange); margin-right: 8px; }

.form-card > p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    z-index: 1;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 12px 15px 12px 42px;
    background: var(--input-bg);
    border: 2px solid var(--input-border);
    border-radius: 10px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
}

/* Readonly product field - orange tint */
.input-wrapper input[readonly] {
    background: rgba(244, 121, 32, 0.07);
    border-color: rgba(244, 121, 32, 0.3);
    color: var(--orange);
    font-weight: 600;
    cursor: default;
}

.textarea-wrapper { align-items: flex-start; }
.textarea-wrapper i { top: 15px; }

/* Focus - orange border */
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(244, 121, 32, 0.12);
}

.input-wrapper select { appearance: none; cursor: pointer; }

.form-success {
    text-align: center;
    padding: 30px;
}

.form-success i {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 15px;
}

.form-success h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-success p { color: var(--text-secondary); }

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

/* ============================================
   CTA SECTION - ORANGE GRADIENT
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: var(--hero-bg);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-content h2 .text-gold {
    color: #FFE0CC;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* CTA Buttons - White on orange background */
.cta-section .btn-gold {
    background: #fff;
    color: var(--orange-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-gold:hover {
    background: #FFE0CC;
    color: var(--orange-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
}

.footer-top { padding: 60px 0 40px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
}

.footer-logo { margin-bottom: 15px; }

.footer-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

/* Footer heading underline - Orange */
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--footer-text);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--orange-light);
    padding-left: 5px;
}

/* Footer link arrows - Orange */
.footer-col ul li a i {
    font-size: 0.7rem;
    color: var(--orange);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 15px !important;
}

/* Footer contact icons - Orange */
.footer-contact li i {
    color: var(--orange);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li span,
.footer-contact li a {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact li a:hover { color: var(--orange-light); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

/* ============================================
   IMAGE LOADING & BROKEN IMAGE HANDLER
   ============================================ */
.product-image img.loaded {
    animation: img-fade-in 0.4s ease;
}

@keyframes img-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.img-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: var(--font-primary);
    z-index: 2;
}

.img-placeholder i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 8px;
    opacity: 0.4;
    color: var(--orange);
}

/* ============================================
   RESPONSIVE - 1024px
   ============================================ */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.5rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .supply-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .mv-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE - 768px
   ============================================ */
@media (max-width: 768px) {

    /* Nav Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 5px;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 10000;
        border-left: 3px solid var(--orange);
    }

    .nav-menu.active { right: 0; }
    .hamburger { display: flex; }
    .nav-link { width: 100%; padding: 12px 15px; color: var(--text-secondary); }
    .nav-cta { width: 100%; margin-top: 10px; }
    .nav-cta .btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .hero h1 { font-size: 2rem; }
    .hero-description { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; gap: 25px; }
    .hero-image { display: none; }

    .section-header h2 { font-size: 1.8rem; }

    /* Grids */
    .products-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .shop-grid { grid-template-columns: 1fr 1fr; gap: 15px; }

    /* Two col to one col */
    .why-us-wrapper,
    .about-wrapper,
    .contact-wrapper,
    .quote-wrapper { grid-template-columns: 1fr; }

    .why-us-image { order: -1; }

    /* Cards */
    .mv-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .supply-grid { grid-template-columns: 1fr 1fr; }

    /* Process */
    .process-grid { flex-direction: column; align-items: center; }
    .process-connector { transform: rotate(90deg); padding-top: 0; }

    /* Form */
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 25px; }

    /* CTA */
    .cta-wrapper { flex-direction: column; text-align: center; }
    .cta-content h2 { font-size: 1.6rem; }
    .cta-buttons { justify-content: center; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Fixed Buttons */
    .back-to-top {
        bottom: 20px;
        right: 15px;
        width: 42px;
        height: 42px;
    }

    /* Page Header */
    .page-header h1 { font-size: 2rem; }

    /* About */
    .about-content h2,
    .why-us-content h2,
    .contact-info h2 { font-size: 1.6rem; }

    .about-highlights { grid-template-columns: 1fr; }
    .experience-badge {
        bottom: -15px;
        right: 15px;
        padding: 15px;
    }
}

/* ============================================
   RESPONSIVE - 480px
   ============================================ */
@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-stats { flex-direction: column; gap: 15px; }
    .stat-item .stat-number { font-size: 1.5rem; }

    .products-grid,
    .shop-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

    .product-image { aspect-ratio: 1 / 1; }

    .product-info { padding: 12px; }
    .product-info h3 { font-size: 0.9rem; }

    .stats-grid { grid-template-columns: 1fr; }
    .supply-grid { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }

    .stat-card .stat-number { font-size: 2rem; }

    .btn-lg { padding: 12px 25px; font-size: 0.9rem; }
    .cta-content h2 { font-size: 1.4rem; }

    .read-more-btn { font-size: 0.78rem; padding: 7px 14px; }

    .form-card { padding: 20px; }
}

/* ============================================
   SCROLLBAR & SELECTION
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--orange-dark); }

::selection {
    background: rgba(244, 121, 32, 0.25);
    color: var(--text-primary);
}