/* ============================================
   Divine Favour Hardware & Transporters
   Modern Construction Industry Theme
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    /* Primary Colors */
    --color-primary: #1a1a2e;
    --color-primary-light: #16213e;
    --color-accent: #FF6B35;
    --color-accent-hover: #e55a2b;
    --color-accent-red: #DC143C;
    --color-dark: #0f0f1a;
    --color-text: #444444;
    --color-text-light: #777777;
    --color-heading: #1a1a2e;
    --color-white: #ffffff;
    --color-light-bg: #f8f9fa;
    --color-border: #e8e8e8;
    --color-footer: #0f0f1a;
    --color-footer-text: #aaaaaa;
    --color-danger: #DC143C;
    /* Secondary Colors */
    --color-steel: #64748b;
    --color-steel-light: #f1f5f9;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-info: #3b82f6;
    --color-whatsapp: #25D366;
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8A50 100%);
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-orange: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-green: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    /* Fonts */
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-color: 0 10px 30px rgba(255, 107, 53, 0.3);
    --shadow-hover: 0 15px 40px rgba(255, 107, 53, 0.4);
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* Layout */
    --max-width: 1200px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    margin-top: 0;
    line-height: 1.3;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slide Up */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide Down */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bounce */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Glow */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
    }
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Particle Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out backwards;
}

.animate-slide-down {
    animation: slideDown 0.8s ease-out backwards;
}

.stat-bounce {
    animation: bounce 2s ease-in-out infinite;
}

.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.feature-bounce:hover {
    animation: bounce 0.6s ease-in-out;
}

.testimonial-hover {
    transition: var(--transition-slow);
}

.testimonial-hover:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* ============================================
   GRADIENT TEXT & BACKGROUNDS
   ============================================ */

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.text-white {
    color: var(--color-white) !important;
}

.section-gradient {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.section-colored {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/Isuzu FVR.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.section-colored .container {
    position: relative;
    z-index: 1;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.btn-hero {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
    padding: 14px 36px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--color-white);
    color: var(--color-text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-icon:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

/* ---- Top Bar ---- */
.top-bar {
    background: var(--color-dark);
    color: #cccccc;
    font-size: 13px;
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left span,
.top-bar-left a {
    color: #cccccc;
}

.top-bar-left a:hover {
    color: var(--color-accent);
}

.top-bar-right {
    display: flex;
    gap: 14px;
}

.top-bar-right a {
    color: #cccccc;
    font-size: 15px;
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--color-accent);
}

/* ---- Header ---- */
.site-header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
    color: var(--color-accent);
}

.logo-accent {
    color: var(--color-accent);
}

/* ---- Main Navigation ---- */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 24px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

/* Dropdown */
.nav-item.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    list-style: none;
    z-index: 100;
    border: 1px solid var(--color-border);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--color-light-bg);
    color: var(--color-accent);
    padding-left: 24px;
}

/* ---- Header Actions ---- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon {
    font-size: 20px;
    color: var(--color-text);
    position: relative;
    transition: var(--transition);
}

.header-icon:hover {
    color: var(--color-accent);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ---- Hero Slider ---- */
.hero-slider {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(232,168,56,0.15) 0%, transparent 70%);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    padding: 40px 0;
    position: relative;
    z-index: 3;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    margin-bottom: 16px;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.7;
    position: relative;
    z-index: 3;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
}

/* ---- Category Grid ---- */
.category-grid-section {
    padding: 60px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-img {
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-white);
    font-size: 48px;
}

.category-img span {
    font-size: 18px;
    font-weight: 600;
}

.category-label {
    display: block;
    text-align: center;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-heading);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    transition: var(--transition);
}

.category-card:hover .category-label {
    color: var(--color-accent);
}

/* ---- Featured Products ---- */
.featured-section {
    padding: 60px 0;
    background: var(--color-light-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    font-size: 60px;
    color: #cccccc;
}

.sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-danger);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.soldout-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-text);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-name a {
    color: var(--color-heading);
}

.product-name a:hover {
    color: var(--color-accent);
}

.product-desc {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-heading);
}

.price-old {
    font-size: 14px;
    color: var(--color-text-light);
    text-decoration: line-through;
}

/* ---- Features Bar ---- */
.features-bar {
    padding: 50px 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    font-size: 32px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.feature-item h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--color-heading);
}

.feature-item p {
    font-size: 13px;
    color: var(--color-text-light);
    margin: 0;
}

/* ---- About Section ---- */
.about-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    position: relative;
    z-index: 3;
}

.about-image {
    position: relative;
}

.about-img-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-main-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.about-img-container:hover .about-main-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, transparent 100%);
    padding: 30px;
    z-index: 2;
}

.overlay-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
}

.overlay-badge i {
    font-size: 32px;
    color: var(--color-accent);
}

.overlay-badge span {
    font-size: 18px;
    font-weight: 700;
}

.about-img-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,0.2);
}

.about-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text {
    font-size: 15px;
    color: #2f2f2f;
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-feature {
    color: var(--color-primary);
    font-weight: 600;
}

.about-feature i {
    color: var(--color-accent);
}

/* ---- Design/Colors Section ---- */
.design-section {
    padding: 80px 0;
    background: var(--color-light-bg);
}

.color-swatches {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.swatch {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: 4px solid var(--color-white);
    box-shadow: var(--shadow-sm);
}

.swatch:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-md);
}

/* ---- Testimonials ---- */
.testimonials-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition-slow);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 80px;
    color: var(--color-accent);
    opacity: 0.15;
    line-height: 1;
    font-weight: 900;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #ffc107;
}

.testimonial-text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--color-heading);
}

.author-role {
    font-size: 13px;
    color: var(--color-text-light);
}

/* ---- Newsletter ---- */
.newsletter-section {
    padding: 80px 0;
}

.newsletter-inner {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,168,56,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.newsletter-text {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-input:focus {
    border-color: var(--color-accent);
    background: rgba(255,255,255,0.15);
}

/* ---- Instagram Section ---- */
.instagram-section {
    padding: 60px 0 80px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.insta-item {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.insta-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.insta-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #aaaaaa;
    transition: var(--transition);
}

.insta-item:hover .insta-placeholder {
    background: linear-gradient(135deg, var(--color-accent), #d4951f);
    color: var(--color-white);
}

/* ---- Footer ---- */
.site-footer {
    background: var(--color-footer);
    color: var(--color-footer-text);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h5 {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--color-footer-text);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.payment-icons {
    display: flex;
    gap: 12px;
    font-size: 28px;
    color: rgba(255,255,255,0.3);
}

/* ---- Blazor Error UI ---- */
#blazor-error-ui {
    background: var(--color-danger);
    color: var(--color-white);
    padding: 12px 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: none;
    z-index: 9999;
}

#blazor-error-ui .reload {
    color: var(--color-white);
    font-weight: 600;
    text-decoration: underline;
    margin-left: 10px;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    margin-left: 16px;
    font-size: 18px;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-slider {
        height: 480px;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-slider {
        height: 400px;
    }
    .section-title {
        font-size: 26px;
    }
    .newsletter-inner {
        padding: 40px 24px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .top-bar-inner {
        flex-direction: column;
        text-align: center;
    }
    .header-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 0;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 26px;
    }
}

/* ============================================
   DIVINE FAVOUR HARDWARE - NEW COMPONENT STYLES
   ============================================ */

/* ---- Hero Section (Updated) ---- */
.hero-section {
    position: relative;
    height: calc(100vh - 72px);
    min-height: 650px;
    background: url('/images/loaded-dump-truck-driving-on-a-dirt-road-in-the-mountains-free-photo.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(22, 33, 62, 0.88) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(255,107,53,0.2) 0%, transparent 60%);
    z-index: 1;
}

/* Animated Particles for Hero */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.hero-particles::before {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.hero-particles::after {
    bottom: 15%;
    right: 15%;
    width: 400px;
    height: 400px;
    animation-delay: 5s;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-overlay .container {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    color: var(--color-white);
    border: 2px solid var(--color-accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    position: relative;
    z-index: 3;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 3;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

/* ---- WhatsApp & Call Buttons ---- */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: #25D366;
    color: #fff;
    border: 2px solid #25D366;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: #fff;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-call:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.btn-quote:hover {
    background: var(--color-accent-hover);
}

/* ---- Floating WhatsApp ---- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
}

.whatsapp-float:hover {
    animation: none;
    width: 185px;
    border-radius: 30px;
    padding: 0 20px;
    justify-content: flex-start;
    gap: 10px;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}

.whatsapp-text {
    display: none;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
}

.whatsapp-float:hover .whatsapp-text {
    display: inline;
}

/* ---- Category Filter ---- */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-text);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

/* ---- Products Home Section ---- */
.products-home-section {
    padding: 80px 0;
    background: var(--color-light-bg);
}

/* ---- Product Card (Updated) ---- */
.product-card.featured {
    border-color: var(--color-accent);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8ecf1, #d5dbe3);
    font-size: 56px;
    color: var(--color-steel);
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 10px;
}

.spec-tag {
    font-size: 10px;
    background: var(--color-steel-light);
    color: var(--color-steel);
    padding: 2px 8px;
    border-radius: 10px;
}

.price-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-heading);
}

.price-unit {
    font-size: 13px;
    color: var(--color-text-light);
}

.bulk-price {
    font-size: 12px;
    color: var(--color-success);
    font-weight: 600;
    margin-top: 2px;
}

/* ---- Fleet / Transport Section ---- */
.transport-section {
    padding: 80px 0;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fleet-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.fleet-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--color-accent);
}

.fleet-icon {
    font-size: 48px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.fleet-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    display: block;
}

.fleet-type {
    display: inline-block;
    background: var(--color-steel-light);
    color: var(--color-steel);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin: 8px 0;
}

.fleet-specs {
    margin: 16px 0;
    line-height: 1.8;
    font-size: 14px;
}

.fleet-card p {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

/* ---- How It Works ---- */
.how-it-works-section {
    padding: 80px 0;
    background: var(--color-light-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--color-white);
    padding: 40px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin: 0 auto 12px;
}

.step-icon {
    font-size: 36px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 12px;
}

.step-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--color-text-light);
    margin: 0;
}

/* ---- Calculator Teaser ---- */
.calc-teaser-section {
    padding: 80px 0;
}

.calc-teaser-inner {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
}

.calc-teaser-content h2 {
    color: var(--color-white);
    font-size: 30px;
    margin-bottom: 16px;
}

.calc-teaser-content p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 30px;
}

/* ---- Why Choose Us ---- */
.why-us-section {
    padding: 80px 0;
    background: var(--color-light-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--color-white);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.why-card i {
    font-size: 40px;
    color: var(--color-accent);
    margin-bottom: 16px;
    display: block;
}

.why-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

/* ---- CTA Section ---- */
.cta-section {
    padding: 80px 0;
    background: var(--color-light-bg);
}

.cta-inner {
    background: url('/images/bolts tools.jpg') center/cover no-repeat;
    position: relative;
    border-radius: var(--radius-xl);
    padding: 70px;
    text-align: center;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.92));
    z-index: 1;
}

.cta-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.cta-inner h2 {
    color: var(--color-white);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-inner p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ---- Page Hero (Sub-pages) ---- */
.page-hero {
    background: url('/images/metal sheet roll.jpg') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.85));
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--color-white);
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    margin: 0;
}

/* ---- About Page ---- */
.about-page-section {
    padding: 80px 0;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-page-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.about-page-content h3 {
    font-size: 20px;
    margin: 24px 0 8px;
    color: var(--color-accent);
}

.about-page-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-heading);
}

.about-feature i {
    color: var(--color-success);
    font-size: 18px;
}

/* ---- Values Grid ---- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}

.value-card i {
    font-size: 36px;
    color: var(--color-accent);
    margin-bottom: 12px;
    display: block;
}

.value-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--color-text-light);
    margin: 0;
}

/* ---- Contact Section ---- */
.contact-section {
    padding: 80px 0;
    background: var(--color-light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    gap: 16px;
    background: var(--color-white);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    align-items: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--color-accent);
}

.contact-icon {
    font-size: 28px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.contact-card p {
    font-size: 13px;
    color: var(--color-text-light);
    margin: 0;
}

.contact-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
}

.contact-map {
    min-height: 300px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #e8ecf1, #d5dbe3);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--color-steel);
}

.map-placeholder p {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0 0;
    color: var(--color-text);
}

.map-placeholder small {
    color: var(--color-text-light);
}

/* ---- Services Page ---- */
.services-section {
    padding: 60px 0 80px;
}

.fleet-detailed {
    text-align: left;
}

.fleet-detailed .fleet-icon {
    text-align: center;
}

.spec-row {
    font-size: 14px;
    padding: 4px 0;
}

.service-info {
    margin-top: 60px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.area-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.area-card:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.area-card i {
    color: var(--color-accent);
}

/* ---- Calculator Section ---- */
.calculator-section {
    padding: 60px 0 80px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.calc-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px;
}

.calc-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

.form-input {
    padding: 10px 14px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-primary);
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-input:focus {
    border-color: var(--color-accent);
}

select.form-input {
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23444' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
    padding-right: 36px;
}

.calc-results {
    margin-top: 20px;
    padding: 16px;
    background: var(--color-light-bg);
    border-radius: var(--radius-sm);
}

.result-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 4px 0;
}

.result-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid var(--color-border);
    color: var(--color-accent);
}

.text-center { text-align: center; }
.mt-4 { margin-top: 24px; }
.text-muted { color: var(--color-text-light); }

/* ---- Projects Section ---- */
.projects-section {
    padding: 80px 0;
    background: var(--color-light-bg);
}

.project-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.project-card:hover {
    box-shadow: var(--shadow-md);
}

.project-img-placeholder {
    height: 180px;
    background: linear-gradient(135deg, #e8ecf1, #d5dbe3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--color-steel);
}

.project-info {
    padding: 20px;
}

.project-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-info h4 {
    font-size: 16px;
    margin: 4px 0 8px;
}

.project-info p {
    font-size: 13px;
    color: var(--color-text-light);
    margin: 0;
}

/* ---- Testimonials Updated ---- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-stars {
    color: var(--color-warning);
    margin-bottom: 12px;
}

.testimonial-stars i {
    font-size: 14px;
}

/* ---- Responsive Updates ---- */
@media (max-width: 992px) {
    .hero-stats { gap: 24px; }
    .stat-number { font-size: 28px; }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .calculator-grid { grid-template-columns: 1fr 1fr; }
    .project-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-section { height: auto; padding: 80px 0 60px; }
    .hero-title { font-size: 30px; }
    .hero-stats { flex-wrap: wrap; justify-content: center; gap: 20px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-whatsapp, .btn-call { justify-content: center; }
    .fleet-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .calculator-grid { grid-template-columns: 1fr; }
    .about-page-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .area-grid { grid-template-columns: repeat(2, 1fr); }
    .project-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: stretch; }
}

@media (max-width: 576px) {
    .steps-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .area-grid { grid-template-columns: 1fr; }
    .cta-inner { padding: 40px 24px; }
    .calc-teaser-inner { padding: 40px 24px; }
}

/* ============================================
   MOBILE MENU, ANIMATIONS, LOADING SPINNER
   ============================================ */

/* ---- Mobile Menu Toggle ---- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ---- Header Scroll Shadow ---- */
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

/* ---- Mobile Navigation ---- */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 24px 24px;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: 14px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-item.dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 16px;
        display: none;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-item.dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 0;
        font-size: 13px;
    }

    .header-actions {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
    }
}

/* ---- Scroll Animations ---- */
.animate-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Back to Top Button ---- */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}

/* ---- Loading Spinner ---- */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.loading-spinner.inline {
    padding: 16px;
    flex-direction: row;
    gap: 12px;
}

.spinner-ring {
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-border);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner-message {
    margin-top: 12px;
    font-size: 14px;
    color: var(--color-text-light);
}

.loading-spinner.inline .spinner-message {
    margin-top: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---- Quote Form Styles ---- */
.quote-form-container {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    position: fixed;
    bottom: 0;
    right: 24px;
    width: 420px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 997;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.quote-form-header {
    padding: 16px 20px;
    background: var(--color-accent);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.quote-form-header h3 {
    font-size: 16px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
}

.quote-form-body {
    padding: 20px;
}

.selected-items {
    margin-bottom: 20px;
}

.quote-item-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 13px;
}

.item-name { flex: 1; font-weight: 600; }
.item-qty { display: flex; align-items: center; gap: 6px; }
.qty-btn {
    width: 24px; height: 24px; border: 1px solid var(--color-border);
    background: var(--color-light-bg); border-radius: 4px; cursor: pointer;
    font-size: 14px; line-height: 1;
}
.item-price { font-weight: 600; min-width: 70px; text-align: right; }
.btn-icon-sm {
    background: none; border: none; color: var(--color-danger); cursor: pointer;
    font-size: 10px; padding: 2px;
}

.quote-total {
    padding: 12px 0;
    text-align: right;
    font-size: 15px;
    color: var(--color-accent);
}

.customer-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quote-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.quote-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 13px;
    padding: 10px 16px;
}

.quote-success {
    margin-top: 12px;
    padding: 12px;
    background: #d4edda;
    color: #155724;
    border-radius: var(--radius-sm);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 576px) {
    .quote-form-container {
        right: 0;
        width: 100%;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}