* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #E62E2D;
    --secondary-color: #FAED02;
    --dark-color: #000000;
    --light-color: #f5f5f5;
    --text-color: #111111;
    --border-color: #e6e6e6;
    --spacing: 1rem;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* ===== ENTRANCE ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeftFade {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRightFade {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomInFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleUpFade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Section Animations */
.hero {
    animation: fadeIn 1s ease-out forwards;
}

.hero-content h1 {
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-content p {
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-buttons {
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* Services Hero Animation */
.services-hero {
    animation: fadeIn 1s ease-out forwards;
}

.services-hero .hero-content h1 {
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.services-hero .hero-content p {
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* About Hero Animation */
.about-hero {
    animation: fadeIn 1s ease-out forwards;
}

.about-hero .hero-content h1 {
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.about-hero .hero-content p {
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* Section Header Animations */
.section-header {
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.section-header h2 {
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.mv-header {
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.mv-header h2 {
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

/* Card Animations with Stagger */
.service-overview-card,
.mv-card-premium,
.value-card-showcase,
.why-card,
.why-service-card,
.stat-item,
.shop-card,
.service-card {
    animation: zoomInFade 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.service-overview-card:nth-child(1) { animation-delay: 0.2s; }
.service-overview-card:nth-child(2) { animation-delay: 0.3s; }
.service-overview-card:nth-child(3) { animation-delay: 0.4s; }
.service-overview-card:nth-child(4) { animation-delay: 0.5s; }
.service-overview-card:nth-child(5) { animation-delay: 0.6s; }
.service-overview-card:nth-child(6) { animation-delay: 0.7s; }

.mv-card-premium:nth-child(1) { animation-delay: 0.2s; }
.mv-card-premium:nth-child(2) { animation-delay: 0.4s; }

.value-card-showcase:nth-child(1) { animation-delay: 0.2s; }
.value-card-showcase:nth-child(2) { animation-delay: 0.3s; }
.value-card-showcase:nth-child(3) { animation-delay: 0.4s; }
.value-card-showcase:nth-child(4) { animation-delay: 0.5s; }

.why-card:nth-child(1) { animation-delay: 0.2s; }
.why-card:nth-child(2) { animation-delay: 0.3s; }
.why-card:nth-child(3) { animation-delay: 0.4s; }
.why-card:nth-child(4) { animation-delay: 0.5s; }
.why-card:nth-child(5) { animation-delay: 0.6s; }
.why-card:nth-child(6) { animation-delay: 0.7s; }
.why-card:nth-child(7) { animation-delay: 0.8s; }
.why-card:nth-child(8) { animation-delay: 0.9s; }

.why-service-card:nth-child(1) { animation-delay: 0.2s; }
.why-service-card:nth-child(2) { animation-delay: 0.35s; }
.why-service-card:nth-child(3) { animation-delay: 0.5s; }
.why-service-card:nth-child(4) { animation-delay: 0.65s; }

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.35s; }
.stat-item:nth-child(3) { animation-delay: 0.5s; }
.stat-item:nth-child(4) { animation-delay: 0.65s; }

.shop-card:nth-child(1) { animation-delay: 0.2s; }
.shop-card:nth-child(2) { animation-delay: 0.35s; }
.shop-card:nth-child(3) { animation-delay: 0.5s; }

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.35s; }
.service-card:nth-child(3) { animation-delay: 0.5s; }

/* Image Animations */
.story-image,
.safety-image,
.service-detail-image,
.delivery-card-image,
.gallery-item {
    animation: slideLeftFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.service-detail-reverse .service-detail-image {
    animation: slideRightFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Content Animations */
.story-content,
.safety-content,
.service-detail-content,
.delivery-card-content,
.about-intro {
    animation: slideRightFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.service-detail-reverse .service-detail-content {
    animation: slideLeftFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Feature List Animations */
.service-features li,
.safety-points li {
    animation: slideLeftFade 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.service-features li:nth-child(1) { animation-delay: 0.4s; }
.service-features li:nth-child(2) { animation-delay: 0.5s; }
.service-features li:nth-child(3) { animation-delay: 0.6s; }
.service-features li:nth-child(4) { animation-delay: 0.7s; }

.safety-points li:nth-child(1) { animation-delay: 0.4s; }
.safety-points li:nth-child(2) { animation-delay: 0.5s; }
.safety-points li:nth-child(3) { animation-delay: 0.6s; }
.safety-points li:nth-child(4) { animation-delay: 0.7s; }

/* Delivery Card Grid Animations */
.delivery-card:nth-child(1) { animation: zoomInFade 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; animation-delay: 0.2s; opacity: 0; }
.delivery-card:nth-child(2) { animation: zoomInFade 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; animation-delay: 0.35s; opacity: 0; }
.delivery-card:nth-child(3) { animation: zoomInFade 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; animation-delay: 0.5s; opacity: 0; }

/* Inspection Card Animations */
.inspection-card:nth-child(1) { animation: slideUpFade 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; animation-delay: 0.2s; opacity: 0; }
.inspection-card:nth-child(2) { animation: slideUpFade 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; animation-delay: 0.35s; opacity: 0; }
.inspection-card:nth-child(3) { animation: slideUpFade 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; animation-delay: 0.5s; opacity: 0; }
.inspection-card:nth-child(4) { animation: slideUpFade 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; animation-delay: 0.65s; opacity: 0; }

/* CTA Section Animations */
.cta-section h2 {
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.cta-section p {
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.35s;
    opacity: 0;
}

.cta-section .btn {
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Testimonial Card Animations */
.testimonial-card {
    animation: zoomInFade 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.35s; }
.testimonial-card:nth-child(3) { animation-delay: 0.5s; }

/* Highlight Stat Animations */
.highlight-stat {
    animation: slideUpFade 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.highlight-stat:nth-child(1) { animation-delay: 0.5s; }
.highlight-stat:nth-child(2) { animation-delay: 0.6s; }
.highlight-stat:nth-child(3) { animation-delay: 0.7s; }

/* Mobile Animation Adjustments */
@media (max-width: 768px) {
    .hero-content h1,
    .hero-content p,
    .hero-buttons,
    .services-hero .hero-content h1,
    .services-hero .hero-content p,
    .about-hero .hero-content h1,
    .about-hero .hero-content p {
        animation-duration: 0.6s;
    }

    .service-overview-card,
    .mv-card-premium,
    .value-card-showcase,
    .why-card,
    .why-service-card,
    .stat-item,
    .delivery-card,
    .inspection-card {
        animation-duration: 0.6s;
    }

    .story-image,
    .safety-image,
    .service-detail-image,
    .service-detail-content,
    .story-content,
    .safety-content {
        animation-duration: 0.6s;
    }

    .service-features li,
    .safety-points li {
        animation-duration: 0.5s;
    }
}

@media (max-width: 480px) {
    .hero-content h1,
    .services-hero .hero-content h1,
    .about-hero .hero-content h1 {
        animation-duration: 0.5s;
        animation-delay: 0.1s;
    }

    .service-overview-card,
    .mv-card-premium,
    .value-card-showcase,
    .why-card,
    .delivery-card {
        animation-duration: 0.5s;
    }

    .service-overview-card:nth-child(1),
    .delivery-card:nth-child(1) { animation-delay: 0.1s; }

    .service-overview-card:nth-child(2),
    .delivery-card:nth-child(2) { animation-delay: 0.2s; }

    .service-overview-card:nth-child(3),
    .delivery-card:nth-child(3) { animation-delay: 0.3s; }
}

/* ===== SCROLL-TRIGGERED ANIMATIONS ===== */

/* Scroll animation classes - will be added by JavaScript */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered scroll animations for child elements */
.scroll-animate-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate-stagger.animate-in > *:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.scroll-animate-stagger.animate-in > *:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.scroll-animate-stagger.animate-in > *:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.scroll-animate-stagger.animate-in > *:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.scroll-animate-stagger.animate-in > *:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.scroll-animate-stagger.animate-in > *:nth-child(6) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.scroll-animate-stagger.animate-in > *:nth-child(7) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.scroll-animate-stagger.animate-in > *:nth-child(8) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Slide animations for alternating layouts */
.scroll-animate-slide-left {
    opacity: 10;
    transform: translateX(-40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-animate-slide-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-slide-right {
    opacity: 10;
    transform: translateX(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-animate-slide-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Zoom animation for cards */
.scroll-animate-zoom {
    opacity: 10;
    transform: scale(0.95);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-animate-zoom.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Header & Navigation */
header {
    background: #ed1b24;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar {
    background: var(--dark-color);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 30px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    width: 80px;
    align-items: center;
    gap: 10px;
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 3px;
}

nav a:hover {
    color: #f7c40c;
}

nav a.active {
    color: #f7c40c;
    font-weight: 700;
    border-bottom: 3px solid #f7c40c;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

/* 4-line hamburger open state: transform outer lines into X and hide middle lines */
header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
header.nav-open .nav-toggle span:nth-child(3) { opacity: 0; transform: translateX(10px); }
header.nav-open .nav-toggle span:nth-child(4) { transform: translateY(-9px) rotate(-45deg); }

/* Small screen: hide nav by default and show toggle */
@media (max-width: 768px) {
    .nav-toggle { display: flex; margin-left: auto; }
    nav {
        position: relative;
    }
    nav ul {
        display: none;
        flex-direction: column;
        gap: 0;
        background: white;
        padding: 0;
        position: fixed;
        left: 0;
        right: 0;
        top: 72px;
        border-radius: 0;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        z-index: 200;
        width: 100%;
        box-sizing: border-box;
        align-items: center;
    }
    header.nav-open nav ul { display: flex; }
    nav a { color: var(--dark-color); }
    nav ul li { width: 100%; }
    nav ul li a { display: block; width: 100%; padding: 14px 0 14px 20px; text-align: left; }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('Images/banner.jpg') center/cover;
    color: white;
    padding: 150px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230,46,45,0.18);
    color: #000;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styling */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 10px;
}

/* Feature sections (Mission / Vision / Goal) */
.feature-section {
    background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
    padding: 60px 0;
    margin: 20px 0;
}

.feature-row {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1 1 50%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-text {
    flex: 1 1 50%;
    text-align: left;
}

.feature-text.full {
    flex-basis: 100%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.feature-text h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-text p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
}

.feature-accent {
    width: 64px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 6px;
    margin: 12px auto 18px auto;
    opacity: 0.95;
}

@media (max-width: 880px) {
    .feature-row {
        flex-direction: column;
        gap: 20px;
    }

    .feature-text {
        text-align: center;
    }
}

/* Creative card grid (inspired by attachment) */
.creative-section {
    padding: 60px 0;
    background: #f7f9fb;
}

.creative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.creative-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(17,24,39,0.06);
    display: flex;
    gap: 0;
    align-items: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.creative-card.alt {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: #fff;
}

.creative-media {
    flex: 0 0 140px;
    height: 140px;
    display: block;
    overflow: hidden;
}

.creative-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.creative-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    flex: 1 1 auto;
}

.creative-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: inherit;
}

.creative-cta {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.creative-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(17,24,39,0.12);
}

.creative-card.alt .creative-cta {
    color: var(--secondary-color);
}

@media (max-width: 520px) {
    .creative-media { flex-basis: 120px; height: 120px; }
    .creative-body { padding: 14px; }
}

/* Shop Section */
.shop-section {
    background: var(--light-color);
}

.shop-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.shop-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.shop-card-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    overflow: hidden;
}

.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-card-content {
    padding: 25px;
    text-align: center;
}

.shop-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.shop-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* About Section */
.about-section {
    background: white;
}

span.feature-icon {
    color: #fff !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
    width: 100%;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h4 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Gallery Section */
.gallery-section {
    background: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    font-weight: bold;
    color: var(--dark-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid #c7c7c7;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 20px 20px;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #bbb;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .top-bar-left, .top-bar-right {
        flex-direction: column;
        gap: 10px;
    }

    section {
        padding: 40px 0;
    }
    .hero {
        padding: 100px 15px;
    }
    .feature-section {
        padding: 36px 0;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-image { height: 240px; }
    .creative-grid { grid-template-columns: 1fr; gap: 18px; }
    .creative-card { flex-direction: column; }
    .creative-media { width: 100%; height: 160px; flex-basis: auto; }
    .creative-body { padding: 16px; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        padding: 100px 15px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .footer-content { grid-template-columns: 1fr; }
}

/* ===== PREMIUM CORPORATE ABOUT US PAGE STYLING ===== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('Images/about-us-banner.jpg') bottom/cover;
    color: white;
    padding: 0 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-hero .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-hero .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 0;
    opacity: 0.95;
    font-weight: 500;
}

/* Company Story Section */
.company-story-section {
    padding: 100px 0;
    background: white;
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-image {
    position: relative;
    height: 100%;
    min-height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 46, 45, 0.1) 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.story-content h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: left;
}

.story-subtitle {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 20px;
}

.story-highlight {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 2px solid #f0f0f0;
}

.highlight-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.highlight-stat strong {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.highlight-stat p {
    font-size: 0.95rem;
    color: #888;
    margin: 0;
}

/* Mission & Vision Premium */
.mission-vision-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fb 0%, #f0f2f5 100%);
}

.mv-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mv-header h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.mv-header p {
    font-size: 1.05rem;
    color: #888;
    margin: 0;
}

.mv-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 45px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card-premium {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
}

.mv-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.mv-card-premium:hover {
    box-shadow: 0 16px 45px rgba(230, 46, 45, 0.15);
    transform: translateY(-8px);
}

.mv-card-premium:hover::before {
    transform: scaleX(1);
}

.mv-icon-premium {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.mv-card-premium h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 18px;
    font-weight: 700;
    text-align: center;
}

.mv-card-premium p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

/* Values Showcase Section */
.values-showcase {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.05rem;
    color: #888;
    margin: 0;
}

.values-grid-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card-showcase {
    background: linear-gradient(135deg, #ffffff 0%, #fbfcfd 100%);
    padding: 45px 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.35s ease;
    position: relative;
}

.value-card-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary-color);
    transition: width 0.35s ease;
    border-radius: 2px;
}

.value-card-showcase:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    border-color: #e6e6e6;
}

.value-card-showcase:hover::after {
    width: 60%;
}

.value-icon-showcase {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card-showcase h4 {
    font-size: 1.35rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card-showcase p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* Why Choose Premium Section */
.why-choose-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px 10px 0 0;
}

.why-card:hover {
    box-shadow: 0 12px 35px rgba(230, 46, 45, 0.12);
    transform: translateY(-6px);
}

.why-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.why-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.why-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Safety & Quality Section */
.safety-quality-section {
    padding: 100px 0;
    background: white;
}

.safety-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.safety-content h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: left;
}

.safety-subtitle {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.safety-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 30px;
}

.safety-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.safety-points li {
    display: flex;
    gap: 15px;
}

.safety-points strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.safety-points p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.safety-points li::before {
    content: '✓';
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-top: 3px;
}

.safety-image {
    position: relative;
    height: 75%;
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.safety-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.safety-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 46, 45, 0.1) 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f7f9fb 0%, #f0f0f0 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-wrapper,
    .safety-wrapper {
        gap: 40px;
    }

    .mv-grid-premium {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .story-wrapper,
    .safety-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image,
    .safety-image {
        height: 280px;
    }

    .mv-grid-premium {
        gap: 35px;
    }

    .story-highlight {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 20px;
        min-height: 350px;
    }

    .about-hero .hero-content h1 {
        font-size: 2rem;
    }

    .about-hero .hero-content p {
        font-size: 1rem;
    }

    .company-story-section,
    .mission-vision-premium,
    .values-showcase,
    .why-choose-premium,
    .safety-quality-section {
        padding: 60px 0;
    }

    .story-wrapper,
    .safety-wrapper {
        padding: 0 20px;
        gap: 30px;
    }

    .story-image,
    .safety-image {
        height: 280px;
        min-height: auto;
    }

    .story-content h2,
    .safety-content h2,
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .mv-header h2 {
        font-size: 2rem;
    }

    .story-subtitle,
    .safety-subtitle {
        font-size: 1.05rem;
        margin-bottom: 15px;
    }

    .story-content p,
    .safety-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .mv-grid-premium,
    .values-grid-showcase,
    .why-grid {
        gap: 20px;
    }

    .mv-card-premium {
        padding: 30px 25px;
    }

    .value-card-showcase {
        padding: 25px 20px;
    }

    .why-card {
        padding: 25px 20px;
    }

    .mv-icon-premium {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .value-icon-showcase {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .why-icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .mv-card-premium h3 {
        font-size: 1.3rem;
    }

    .value-card-showcase h4 {
        font-size: 1.2rem;
    }

    .why-card h4 {
        font-size: 1.1rem;
    }

    .story-highlight {
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
        border-top: none;
        padding-top: 0;
        margin-top: 20px;
    }

    .highlight-stat {
        flex: 1 1 calc(33.333% - 15px);
        min-width: 100px;
    }

    .highlight-stat strong {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 80px 15px;
        min-height: 300px;
    }

    .about-hero .hero-content h1 {
        font-size: 1.6rem;
    }

    .about-hero .hero-content p {
        font-size: 0.95rem;
    }

    .company-story-section,
    .mission-vision-premium,
    .values-showcase,
    .why-choose-premium,
    .safety-quality-section {
        padding: 45px 0;
    }

    .story-wrapper,
    .safety-wrapper {
        padding: 0 15px;
        gap: 25px;
    }

    .story-image,
    .safety-image {
        height: 240px;
    }

    .story-content h2,
    .safety-content h2,
    .section-header h2,
    .mv-header h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .story-subtitle,
    .safety-subtitle {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .story-content p,
    .safety-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .mv-grid-premium,
    .values-grid-showcase,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }

    .mv-card-premium {
        padding: 25px 20px;
    }

    .value-card-showcase {
        padding: 20px 15px;
    }

    .why-card {
        padding: 20px 15px;
    }

    .mv-icon-premium {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .value-icon-showcase {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .why-icon {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .mv-card-premium h3 {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }

    .value-card-showcase h4 {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .why-card h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .mv-card-premium p,
    .value-card-showcase p,
    .why-card p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .highlight-stat {
        flex: 1 1 calc(50% - 10px);
    }

    .highlight-stat strong {
        font-size: 1.3rem;
    }

    .highlight-stat p {
        font-size: 0.8rem;
    }

    .cta-section {
        padding: 40px 15px;
    }

    .cta-section h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-content h1 {
        font-size: 1.4rem;
    }

    .about-hero .hero-content p {
        font-size: 0.9rem;
    }

    .company-story-section,
    .mission-vision-premium,
    .values-showcase,
    .why-choose-premium,
    .safety-quality-section {
        padding: 35px 0;
    }

    .story-wrapper,
    .safety-wrapper {
        padding: 0 12px;
        gap: 20px;
    }

    .story-image,
    .safety-image {
        height: 200px;
    }

    .story-content h2,
    .safety-content h2,
    .section-header h2,
    .mv-header h2 {
        font-size: 1.35rem;
        margin-bottom: 5px;
    }

    .story-subtitle,
    .safety-subtitle {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .story-content p,
    .safety-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .mv-grid-premium,
    .values-grid-showcase,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 12px;
    }

    .mv-card-premium {
        padding: 20px 15px;
    }

    .value-card-showcase {
        padding: 18px 12px;
    }

    .why-card {
        padding: 18px 12px;
    }

    .mv-icon-premium {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .value-icon-showcase {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .why-icon {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    .mv-card-premium h3 {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .value-card-showcase h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .why-card h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .mv-card-premium p,
    .value-card-showcase p,
    .why-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .highlight-stat {
        flex: 1 1 100%;
    }

    .highlight-stat strong {
        font-size: 1.2rem;
    }

    .highlight-stat p {
        font-size: 0.75rem;
    }

    .cta-section {
        padding: 30px 12px;
    }

    .cta-section h2 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .cta-section p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* ===== SERVICES PAGE STYLING ===== */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('Images/service-banner.webp') center/cover;
    color: white;
    padding: 0 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-hero .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.services-hero .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 0;
    opacity: 0.95;
    font-weight: 500;
}

/* Core Services Section */
.core-services-section {
    padding: 100px 0;
    background: white;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-overview-card {
    background: linear-gradient(135deg, #ffffff 0%, #fbfcfd 100%);
    padding: 45px 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.35s ease;
    position: relative;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    border-radius: 12px 12px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-overview-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    border-color: #e6e6e6;
}

.service-overview-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-overview-card h3 {
    font-size: 1.35rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-overview-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* Service Detail Section */
.service-detail-section {
    padding: 100px 0;
    background: white;
}

.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-detail-reverse {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.service-detail-reverse .service-detail-wrapper {
    grid-template-columns: 1fr 1fr;
}

.service-detail-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 46, 45, 0.1) 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.service-detail-content h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: left;
}

.service-intro {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-features li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-top: 2px;
}

.service-features strong {
    font-weight: 700;
    color: var(--dark-color);
}

.service-features span {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Delivery & Installation Section */
.delivery-installation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.delivery-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.delivery-card:hover {
    box-shadow: 0 16px 45px rgba(230, 46, 45, 0.15);
    transform: translateY(-8px);
}

.delivery-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.delivery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.delivery-card:hover .delivery-card-image img {
    transform: scale(1.05);
}

.delivery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 46, 45, 0.1) 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.delivery-card-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.delivery-card-content h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-card-content h3 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.delivery-card-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Safety Inspection Section */
.safety-inspection-section {
    padding: 100px 0;
    background: white;
}

.safety-inspection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.inspection-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.inspection-card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    text-align: center;
}

.inspection-card:hover {
    box-shadow: 0 12px 35px rgba(230, 46, 45, 0.12);
    transform: translateY(-6px);
}

.inspection-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
}

.inspection-card h4 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.inspection-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Why Services Section */
.why-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7f9fb 0%, #f0f0f0 100%);
}

.why-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.why-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px 10px 0 0;
}

.why-service-card:hover {
    box-shadow: 0 12px 35px rgba(230, 46, 45, 0.12);
    transform: translateY(-6px);
}

.why-service-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.why-service-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.why-service-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .service-detail-wrapper {
        gap: 40px;
    }

    .safety-inspection-content {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .service-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .service-detail-reverse .service-detail-wrapper {
        direction: ltr;
    }

    .service-detail-reverse .service-detail-content,
    .service-detail-reverse .service-detail-image {
        direction: ltr;
    }

    .service-detail-image {
        min-height: 300px;
    }

    .safety-inspection-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 0 20px;
        min-height: 350px;
    }

    .services-hero .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .services-hero .hero-content p {
        font-size: 1rem;
    }

    .core-services-section,
    .service-detail-section,
    .delivery-installation-section,
    .safety-inspection-section,
    .why-services-section {
        padding: 60px 0;
    }

    .service-detail-wrapper,
    .safety-inspection-content {
        padding: 0 20px;
        gap: 30px;
    }

    .services-overview-grid,
    .delivery-grid,
    .why-services-grid {
        gap: 20px;
    }

    .service-overview-card,
    .why-service-card {
        padding: 30px 25px;
    }

    .service-detail-content h2 {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .service-detail-image {
        min-height: 280px;
    }

    .delivery-card-image {
        height: 200px;
    }

    .delivery-card-content {
        padding: 25px;
    }

    .inspection-card {
        padding: 30px 25px;
    }

    .service-card-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .inspection-icon {
        font-size: 2.3rem;
        margin-bottom: 12px;
    }

    .why-service-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .delivery-card-content h3 {
        font-size: 1.15rem;
    }
}

@media (max-width: 600px) {
    .services-hero {
        padding: 80px 15px;
        min-height: 300px;
    }

    .services-hero .hero-content h1 {
        font-size: 1.5rem;
    }

    .services-hero .hero-content p {
        font-size: 0.95rem;
    }

    .core-services-section,
    .service-detail-section,
    .delivery-installation-section,
    .safety-inspection-section,
    .why-services-section {
        padding: 45px 0;
    }

    .services-overview-grid,
    .delivery-grid,
    .safety-inspection-content,
    .why-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-detail-wrapper {
        padding: 0 15px;
        gap: 25px;
    }

    .service-overview-card,
    .why-service-card {
        padding: 25px 20px;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .service-intro {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .service-detail-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .service-detail-image {
        min-height: 240px;
    }

    .delivery-card-image {
        height: 180px;
    }

    .delivery-card-content {
        padding: 20px;
    }

    .inspection-card {
        padding: 25px 20px;
    }

    .service-card-icon,
    .inspection-icon,
    .why-service-icon {
        font-size: 2.2rem;
    }

    .service-overview-card h3,
    .inspection-card h4,
    .why-service-card h4 {
        font-size: 1.1rem;
    }

    .service-features li {
        gap: 12px;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 70px 12px;
        min-height: 250px;
    }

    .services-hero .hero-content h1 {
        font-size: 1.3rem;
    }

    .services-hero .hero-content p {
        font-size: 0.9rem;
    }

    .core-services-section,
    .service-detail-section,
    .delivery-installation-section,
    .safety-inspection-section,
    .why-services-section {
        padding: 35px 0;
    }

    .services-overview-grid,
    .delivery-grid,
    .safety-inspection-content,
    .why-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 12px;
    }

    .service-detail-wrapper {
        padding: 0 12px;
        gap: 20px;
    }

    .service-overview-card,
    .why-service-card {
        padding: 20px 15px;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }

    .service-intro {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .service-detail-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .service-detail-image {
        min-height: 200px;
    }

    .delivery-card-image {
        height: 160px;
    }

    .delivery-card-content {
        padding: 18px;
    }

    .delivery-card-content h3 {
        font-size: 1rem;
    }

    .inspection-card {
        padding: 20px 15px;
    }

    .service-card-icon,
    .inspection-icon,
    .why-service-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .service-overview-card h3,
    .service-overview-card p,
    .inspection-card h4,
    .inspection-card p,
    .why-service-card h4,
    .why-service-card p {
        font-size: 0.9rem;
    }

    .service-features {
        gap: 12px;
    }

    .service-features li {
        gap: 10px;
    }

    .feature-icon {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
        margin-top: 1px;
    }

    .cta-section {
        padding: 40px 12px;
    }

    .cta-section h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .cta-section p {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }
}

/* ===== DISTRIBUTION & MARKETING PAGE STYLING ===== */

/* Distribution Hero Section */
.distribution-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('Images/distribution-banner.jpeg') center/cover;
    color: white;
    padding: 0 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.distribution-hero .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.distribution-hero .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 0;
    opacity: 0.95;
    font-weight: 500;
}

/* Distribution Network Section */
.distribution-network-section {
    padding: 100px 0;
    background: white;
}

.distribution-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.distribution-image {
    position: relative;
    height: 100%;
    min-height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.distribution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.distribution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 46, 45, 0.1) 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.distribution-content h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: left;
}

.distribution-subtitle {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.distribution-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 30px;
}

.distribution-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.distribution-highlights li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.distribution-highlights li::before {
    content: '';
    display: none;
}

.distribution-highlights strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.distribution-highlights p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Fleet Cards Section */
.fleet-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-card {
    background: white;
    border-radius: 12px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    border-radius: 12px 12px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.fleet-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.fleet-card:hover::before {
    transform: scaleX(1);
}

.fleet-icon {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.fleet-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.fleet-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* Marketing Strategies Section */
.strategies-section {
    padding: 100px 0;
    background: white;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-card {
    background: linear-gradient(135deg, #ffffff 0%, #fbfcfd 100%);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.35s ease;
    text-align: center;
    position: relative;
}

.strategy-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary-color);
    transition: width 0.35s ease;
    border-radius: 2px;
}

.strategy-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    border-color: #e6e6e6;
}

.strategy-card:hover::after {
    width: 60%;
}

.strategy-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.strategy-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.strategy-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Distribution Channels Section */
.channels-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.channel-card {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    cursor: pointer;
}

.channel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.channel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(230,46,45,0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    text-align: center;
    transition: background 0.35s ease;
}

.channel-card:hover {
    box-shadow: 0 16px 45px rgba(230, 46, 45, 0.15);
    transform: translateY(-8px);
}

.channel-card:hover img {
    transform: scale(1.08);
}

.channel-card:hover .channel-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(230,46,45,0.95) 100%);
}

.channel-name {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Safety & Quality Section */
.safety-quality-dist {
    padding: 100px 0;
    background: white;
}

.safety-dist-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.safety-dist-content h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: left;
}

.safety-dist-subtitle {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.safety-dist-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 30px;
}

.safety-dist-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.safety-dist-points li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.safety-dist-points li::before {
    content: '';
    display: none;
}

.safety-dist-points strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.safety-dist-points p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.safety-dist-image {
    position: relative;
    height: 100%;
    min-height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.safety-dist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.safety-dist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 46, 45, 0.1) 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

/* Why Choose Noor Section */
.why-noor-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.why-noor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-noor-card {
    background: white;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.why-noor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px 10px 0 0;
}

.why-noor-card:hover {
    box-shadow: 0 12px 35px rgba(230, 46, 45, 0.12);
    transform: translateY(-6px);
}

.why-noor-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.why-noor-card h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.why-noor-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section Distribution */
.cta-dist-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-dist-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-dist-section p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-dist-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Distribution Page */
@media (max-width: 1024px) {
    .distribution-wrapper {
        gap: 40px;
    }

    .safety-dist-wrapper {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .distribution-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .safety-dist-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .distribution-image,
    .safety-dist-image {
        height: 280px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .distribution-hero {
        padding: 100px 20px;
        min-height: 350px;
    }

    .distribution-hero .hero-content h1 {
        font-size: 2rem;
    }

    .distribution-hero .hero-content p {
        font-size: 1rem;
    }

    .distribution-network-section,
    .fleet-section,
    .strategies-section,
    .channels-section,
    .safety-quality-dist,
    .why-noor-section {
        padding: 60px 0;
    }

    .distribution-wrapper,
    .safety-dist-wrapper {
        padding: 0 20px;
        gap: 30px;
    }

    .distribution-image,
    .safety-dist-image {
        height: 280px;
        min-height: auto;
    }

    .distribution-content h2,
    .safety-dist-content h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .fleet-grid,
    .strategies-grid,
    .channels-grid,
    .why-noor-grid {
        gap: 20px;
    }

    .fleet-card,
    .strategy-card,
    .why-noor-card {
        padding: 30px 25px;
    }

    .fleet-icon {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .strategy-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .why-noor-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .fleet-card h3 {
        font-size: 1.3rem;
    }

    .strategy-card h4 {
        font-size: 1.1rem;
    }

    .channel-card {
        height: 240px;
    }

    .channel-name {
        font-size: 1.15rem;
    }

    .cta-dist-section h2 {
        font-size: 2rem;
    }

    .cta-dist-section p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .distribution-hero {
        padding: 80px 15px;
        min-height: 300px;
    }

    .distribution-hero .hero-content h1 {
        font-size: 1.5rem;
    }

    .distribution-hero .hero-content p {
        font-size: 0.95rem;
    }

    .distribution-network-section,
    .fleet-section,
    .strategies-section,
    .channels-section,
    .safety-quality-dist,
    .why-noor-section {
        padding: 45px 0;
    }

    .distribution-wrapper,
    .safety-dist-wrapper {
        padding: 0 15px;
        gap: 25px;
    }

    .distribution-image,
    .safety-dist-image {
        height: 240px;
    }

    .distribution-content h2,
    .safety-dist-content h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .distribution-subtitle,
    .safety-dist-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .distribution-content p,
    .safety-dist-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .fleet-grid,
    .strategies-grid,
    .channels-grid,
    .why-noor-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }

    .fleet-card,
    .strategy-card,
    .why-noor-card {
        padding: 25px 20px;
    }

    .fleet-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .strategy-icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .why-noor-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .fleet-card h3 {
        font-size: 1.2rem;
    }

    .strategy-card h4 {
        font-size: 1rem;
    }

    .why-noor-card h4 {
        font-size: 0.95rem;
    }

    .channel-card {
        height: 200px;
    }

    .channel-name {
        font-size: 1.05rem;
    }

    .distribution-highlights {
        gap: 15px;
    }

    .distribution-highlights p,
    .safety-dist-points p {
        font-size: 0.9rem;
    }

    .cta-dist-section {
        padding: 50px 15px;
    }

    .cta-dist-section h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .cta-dist-section p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .cta-dist-buttons {
        gap: 12px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .distribution-hero {
        padding: 70px 12px;
        min-height: 250px;
    }

    .distribution-hero .hero-content h1 {
        font-size: 1.3rem;
    }

    .distribution-hero .hero-content p {
        font-size: 0.9rem;
    }

    .distribution-network-section,
    .fleet-section,
    .strategies-section,
    .channels-section,
    .safety-quality-dist,
    .why-noor-section {
        padding: 35px 0;
    }

    .distribution-wrapper,
    .safety-dist-wrapper {
        padding: 0 12px;
        gap: 20px;
    }

    .distribution-image,
    .safety-dist-image {
        height: 200px;
    }

    .distribution-content h2,
    .safety-dist-content h2 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }

    .distribution-subtitle,
    .safety-dist-subtitle {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .distribution-content p,
    .safety-dist-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .fleet-grid,
    .strategies-grid,
    .channels-grid,
    .why-noor-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 12px;
    }

    .fleet-card,
    .strategy-card,
    .why-noor-card {
        padding: 20px 15px;
    }

    .fleet-icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .strategy-icon {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .why-noor-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .fleet-card h3 {
        font-size: 1.1rem;
    }

    .fleet-card p,
    .strategy-card h4,
    .strategy-card p,
    .why-noor-card h4,
    .why-noor-card p {
        font-size: 0.85rem;
    }

    .channel-card {
        height: 180px;
    }

    .channel-name {
        font-size: 0.95rem;
    }

    .distribution-highlights {
        gap: 12px;
    }

    .distribution-highlights li::before,
    .safety-dist-points li::before {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }

    .distribution-highlights strong,
    .safety-dist-points strong {
        font-size: 0.95rem;
    }

    .distribution-highlights p,
    .safety-dist-points p {
        font-size: 0.8rem;
    }

    .cta-dist-section {
        padding: 40px 12px;
    }

    .cta-dist-section h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .cta-dist-section p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .cta-dist-buttons {
        gap: 10px;
        flex-wrap: wrap;
    }

    .btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* ===== SHOP PAGE STYLES ===== */

/* Shop Hero Section */
.shop-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('Images/banner.jpg') center/cover;
    color: white;
    padding: 0 20px;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(250, 237, 2, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.shop-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.shop-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.shop-hero .hero-content p {
    font-size: 1.4rem;
    opacity: 0.98;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* Product Navigation/Filter Section */
.product-nav-section {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.product-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.product-filter-btn {
    background: var(--light-color);
    border: 2px solid transparent;
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-filter-btn:hover,
.product-filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Products Grid */
.products-section {
    background: white;
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Product Card Styles */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.product-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(230, 46, 45, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08) rotate(1deg);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.badge-commercial {
    background: #007bff;
}

.product-badge.badge-industrial {
    background: #28a745;
}

.product-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.product-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #555;
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.product-view-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.product-view-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

.product-view-link i {
    transition: transform 0.3s ease;
}

.product-view-link:hover i {
    transform: translateX(3px);
}

/* Why Choose Section */
.why-products-section {
    background: var(--light-color);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== PRODUCT DETAIL PAGE STYLES ===== */

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--light-color);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

.breadcrumb span {
    color: #999;
}

.breadcrumb-current {
    color: var(--text-color);
    font-weight: 600;
}

/* Product Detail Section */
.product-detail-section {
    background: white;
    padding: 80px 0;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-image {
    position: sticky;
    top: 100px;
}

.product-image-container {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(230, 46, 45, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.product-image-container:hover img {
    transform: scale(1.03);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
}

.product-detail-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    width: fit-content;
}

.product-detail-info h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.product-detail-description {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.product-detail-description p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Product Specs Section */
.product-specs-section {
    margin-bottom: 40px;
}

.product-specs-section h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--light-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.spec-row:hover {
    background: #efefef;
}

.spec-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.spec-label i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.spec-value {
    color: #555;
    font-size: 1rem;
    font-weight: 500;
}

/* Features Section */
.product-features-section {
    margin-bottom: 40px;
}

.product-features-section h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.features-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.features-list li span {
    flex: 1;
}

/* Usage Section */
.product-usage-section {
    margin-bottom: 40px;
}

.product-usage-section h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.usage-info-box {
    background: linear-gradient(135deg, rgba(230, 46, 45, 0.1) 0%, rgba(250, 237, 2, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.usage-info-box strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.product-actions .btn {
    flex: 1;
    padding: 15px 20px;
    font-size: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Technical Information Section */
.product-tech-section {
    background: var(--light-color);
    padding: 80px 0;
}

.tech-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.tech-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.tech-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tech-card li {
    color: #666;
    font-size: 0.95rem;
    padding-left: 25px;
    position: relative;
}

.tech-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Related Products Section */
.related-products-section {
    background: white;
    padding: 80px 0;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.related-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.related-product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: relative;
}

.related-product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(230, 46, 45, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.05);
}

.related-product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-product-content h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.related-product-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-link:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

/* Safety Guidelines Section */
.safety-guidelines-section {
    background: var(--light-color);
    padding: 80px 0;
}

.guidelines-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.guideline-block {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.guideline-block h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.guideline-block h4 i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.guideline-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guideline-block li {
    color: #666;
    font-size: 0.95rem;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.guideline-block li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* CTA Section */
/* .cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b81c1c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
} */

/* .cta-section h2 {
    color: white;
    margin-bottom: 20px;
} */

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1rem;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-detail-image {
        position: static;
    }

    .product-image-container {
        height: 400px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }

    .guidelines-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .shop-hero {
        padding: 100px 20px;
        min-height: 420px;
        background-attachment: scroll;
    }

    .shop-hero .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .shop-hero .hero-content p {
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .product-card-image {
        height: 200px;
    }

    .product-card-content {
        padding: 15px;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    .product-specs {
        flex-direction: column;
        gap: 8px;
    }

    .spec-item {
        font-size: 0.85rem;
    }

    .product-nav-wrapper {
        gap: 8px;
    }

    .product-filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .product-detail-info h1 {
        font-size: 1.8rem;
    }

    .product-specs-section h3,
    .product-features-section h3,
    .product-usage-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .product-actions {
        flex-direction: column;
    }

    .tech-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tech-card {
        padding: 20px;
    }

    .tech-icon {
        font-size: 2rem;
    }

    .related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .related-product-image {
        height: 150px;
    }

    .related-product-content {
        padding: 12px;
    }

    .related-product-content h4 {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .shop-hero {
        padding: 80px 15px;
        min-height: 380px;
        background-attachment: scroll;
    }

    .shop-hero .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .shop-hero .hero-content p {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-card-image {
        height: 180px;
    }

    .product-badge {
        top: 10px;
        right: 10px;
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .product-detail-section {
        padding: 40px 0;
    }

    .product-detail-info h1 {
        font-size: 1.5rem;
    }

    .product-image-container {
        height: 280px;
    }

    .breadcrumb {
        font-size: 0.85rem;
        gap: 8px;
    }

    .spec-row {
        padding: 10px;
        font-size: 0.9rem;
    }

    .product-nav-section {
        padding: 20px 0;
    }

    .product-nav-wrapper {
        gap: 5px;
    }

    .product-filter-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .product-filter-btn i {
        display: none;
    }

    .tech-card {
        padding: 15px;
    }

    .tech-icon {
        font-size: 1.8rem;
    }

    .tech-card h4 {
        font-size: 1.1rem;
    }

    .tech-card li {
        font-size: 0.85rem;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .footer-content {
        gap: 25px;
    }
}

/* ===== CONTACT PAGE STYLING ===== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('Images/about-us-banner.jpg') center/cover;
    color: white;
    padding: 0 20px;
    text-align: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="white" opacity="0.1"/><circle cx="60" cy="30" r="1.5" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.contact-hero p {
    font-size: 1.3rem;
    margin-bottom: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    animation-delay: 0.4s;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
    overflow-x: hidden;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.contact-info-card {
    background: white;
    padding: 35px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: zoomInFade 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.contact-info-card:nth-child(1) { animation-delay: 0.2s; }
.contact-info-card:nth-child(2) { animation-delay: 0.35s; }
.contact-info-card:nth-child(3) { animation-delay: 0.5s; }
.contact-info-card:nth-child(4) { animation-delay: 0.65s; }

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(230, 46, 45, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #c91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 20px;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--secondary-color);
}

.contact-details {
    font-weight: 500;
    color: var(--text-color);
}

.contact-detail-small {
    font-size: 0.9rem;
    color: #888;
}

/* ===== MAIN TWO-COLUMN CONTACT SECTION ===== */

.contact-main-section {
    padding: 80px 0;
    background: white;
    animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    animation-delay: 0.2s;
    overflow-x: hidden;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Map Column */
.contact-map-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8e8e8;
}

.map-card iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px;
}

.map-placeholder {
    text-align: center;
    color: #999;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9f9f9 0%, #f3f3f3 100%);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.8;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.map-text {
    display: block;
    color: #888;
    font-size: 0.95rem;
}

/* Coverage Highlights */
.coverage-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 18px rgba(230, 46, 45, 0.12);
}

.highlight-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 0.95rem;
    color: var(--dark-color);
    margin-bottom: 2px;
    font-weight: 600;
}

.highlight-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Form Column */
.contact-form-column {
    display: flex;
    flex-direction: column;
}

.form-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.form-header {
    margin-bottom: 30px;
    text-align: left;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all 0.3s;
    background: white;
    height: auto;
}

.form-group input {
    height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 46, 45, 0.1);
    background: rgba(250, 237, 2, 0.02);
}

.form-group input::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E62E2D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

/* Form Actions */
.form-actions {
    margin-top: 10px;
}

.form-actions .btn {
    padding: 13px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    width: 100%;
}

.form-note {
    color: #888;
    font-size: 0.9rem;
    margin-top: 12px;
    text-align: center;
}

/* ===== RESPONSIVE DESIGN FOR CONTACT PAGE ===== */

@media (max-width: 1024px) {
    .contact-layout {
        gap: 40px;
    }

    .form-card {
        padding: 35px;
    }

    .map-card {
        min-height: 350px;
    }

    .contact-main-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .contact-hero {
        padding: 60px 20px;
        min-height: 350px;
    }

    .contact-hero h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .contact-hero p {
        font-size: 1.05rem;
    }

    /* Info Section */
    .contact-info-section {
        padding: 60px 20px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-info-card {
        padding: 30px 25px;
    }

    .contact-info-card h3 {
        font-size: 1.1rem;
    }

    .contact-info-card p {
        font-size: 0.9rem;
    }

    /* Main Section */
    .contact-main-section {
        padding: 60px 20px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: stretch;
    }

    .map-card {
        min-height: 300px;
    }

    .map-card iframe {
        min-height: 300px;
    }

    .map-placeholder i {
        font-size: 3rem;
    }

    .map-placeholder p {
        font-size: 1.1rem;
    }

    .coverage-highlights {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 18px;
        border-left: none;
        border-top: 3px solid var(--primary-color);
    }

    .highlight-item:hover {
        transform: translateY(-5px);
    }

    .form-card {
        padding: 30px;
    }

    .form-header h3 {
        font-size: 1.3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 13px;
        font-size: 0.95rem;
        width: 100%;
    }

    .form-group input {
        height: 44px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .form-actions .btn {
        padding: 14px 30px;
        font-size: 0.95rem;
        min-height: 48px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .contact-hero {
        padding: 50px 15px;
        min-height: 300px;
    }

    .contact-hero h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .contact-hero p {
        font-size: 0.95rem;
    }

    /* Info Section */
    .contact-info-section {
        padding: 45px 15px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-info-card {
        padding: 25px 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .contact-info-card h3 {
        font-size: 1rem;
    }

    .contact-info-card p {
        font-size: 0.85rem;
    }

    /* Main Section */
    .contact-main-section {
        padding: 45px 15px;
    }

    .contact-layout {
        gap: 20px;
    }

    .map-card {
        min-height: 250px;
        border-radius: 8px;
    }

    .map-card iframe {
        min-height: 250px;
    }

    .map-placeholder i {
        font-size: 2.5rem;
    }

    .map-placeholder p {
        font-size: 1rem;
    }

    .coverage-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .highlight-item {
        padding: 15px;
        flex-direction: row;
        text-align: left;
        border-left: 3px solid var(--primary-color);
        border-top: none;
    }

    .highlight-item:hover {
        transform: translateX(3px);
    }

    .highlight-item i {
        font-size: 1.5rem;
        min-width: 24px;
    }

    .highlight-item h4 {
        font-size: 0.9rem;
    }

    .highlight-item p {
        font-size: 0.85rem;
    }

    .form-card {
        padding: 20px 15px;
        border-radius: 8px;
    }

    .form-header h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .form-header p {
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 7px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 12px;
        font-size: 0.95rem;
        width: 100%;
        border-radius: 5px;
    }

    .form-group input {
        height: 44px;
    }

    .form-group textarea {
        min-height: 110px;
    }

    .form-row {
        gap: 15px;
    }

    .form-actions {
        margin-top: 8px;
    }

    .form-actions .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
        min-height: 48px;
        width: 100%;
        border-radius: 5px;
    }

    .form-note {
        font-size: 0.85rem;
        margin-top: 10px;
    }
}

/* Ultra-small screens (320px and below) */
@media (max-width: 360px) {
    .contact-hero {
        padding: 40px 12px;
        min-height: 280px;
    }

    .contact-hero h1 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .contact-hero p {
        font-size: 0.9rem;
    }

    .contact-info-section {
        padding: 40px 12px;
    }

    .contact-info-grid {
        gap: 12px;
    }

    .contact-info-card {
        padding: 20px 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .contact-info-card h3 {
        font-size: 0.95rem;
    }

    .contact-info-card p {
        font-size: 0.8rem;
    }

    .contact-main-section {
        padding: 40px 12px;
    }

    .contact-layout {
        gap: 15px;
    }

    .map-card {
        min-height: 220px;
    }

    .map-card iframe {
        min-height: 220px;
    }

    .map-placeholder i {
        font-size: 2rem;
    }

    .map-placeholder p {
        font-size: 0.9rem;
    }

    .coverage-highlights {
        gap: 10px;
    }

    .highlight-item {
        padding: 12px;
        gap: 10px;
    }

    .highlight-item i {
        font-size: 1.25rem;
        min-width: 20px;
    }

    .highlight-item h4 {
        font-size: 0.85rem;
    }

    .highlight-item p {
        font-size: 0.8rem;
    }

    .form-card {
        padding: 15px 12px;
    }

    .form-header h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .form-header p {
        font-size: 0.85rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 11px;
        font-size: 0.9rem;
    }

    .form-group input {
        height: 42px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .form-row {
        gap: 12px;
    }

    .form-actions .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .form-note {
        font-size: 0.8rem;
        margin-top: 8px;
    }
}
