/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #bbdefb;
    --secondary-black: #64b5f6;
    --primary-red: #1976d2;
    --secondary-red: #1565c0;
    --accent-red: #0d47a1;
    --primary-white: #ffffff;
    --light-gray: #ecf5fb;
    --medium-gray: #bbdefb;
    --text-gray: #263238;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: var(--text-gray);
    overflow-x: hidden;
    background-color: var(--primary-white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Light Blue Animated Strip */
.rainbow-strip {
    width: 100%;
    height: 15px;
    background: linear-gradient(to right, 
        #4fc3f7, 
        #29b6f6,
        #03a9f4,
        #039be5, 
        #0288d1, 
        #4fc3f7
    );
    animation: rainbow 20s linear infinite;
    background-size: 200% 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
}

@keyframes rainbow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 800% 0%;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0; /* No rainbow strip in this version */
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(33, 150, 243, 0.15);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    align-items: center;
    gap: 20px;
}

.nav-left {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-right {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    filter: none; /* Natural logo colors */
}

/* Heartbeat Animation */
.heartbeat {
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.1);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(1);
    }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1565c0;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #37474f;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: #1976d2;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.quote-btn {
    background: linear-gradient(135deg, #2196f3, #1565c0);
    color: white !important;
    border-radius: 4px;
    padding: 0.8rem 1.8rem !important;
    box-shadow: 0 3px 12px rgba(33, 150, 243, 0.25);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.4);
    background: linear-gradient(135deg, #1976d2, #0d47a1);
}

.quote-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1976d2;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - With Background Image */
.hero {
    margin-top: 0;
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    background-image: url('stationary.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Light overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(227, 242, 253, 0.85) 0%, 
        rgba(33, 150, 243, 0.3) 50%,
        rgba(255, 255, 255, 0.85) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.hero-content {
    text-align: center;
    color: var(--primary-white);
    max-width: 850px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(238, 60, 48, 0.4);
    display: inline-block;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(238, 60, 48, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--primary-white);
    padding: 0.9rem 2.3rem;
    border: 2px solid var(--primary-white);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: var(--primary-white);
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Hide the old hero-image div */
.hero-image {
    display: none;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-black);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(238, 60, 48, 0.1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(238, 60, 48, 0.15);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-black);
    margin-bottom: 1rem;
}

.product-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-card ul {
    list-style: none;
    text-align: left;
}

.product-card li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.product-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.company-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.logo-item img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.subdivision-text {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    padding: 0 1rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-black);
    font-weight: 500;
}

.feature i {
    color: var(--primary-red);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3,
.quote-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-black);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-top: 0.2rem;
    width: 24px;
}

.contact-item h4 {
    font-weight: 600;
    color: var(--secondary-black);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

/* Form Styles */
.quote-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(238, 60, 48, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(238, 60, 48, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Trusted Brands Section */
.brands-section {
    background: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid rgba(33, 150, 243, 0.1);
}

.brands-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 0.5rem;
}

.brands-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 3rem;
    font-weight: 500;
}

.brands-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: white;
    padding: 40px 0;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.brands-carousel::before,
.brands-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brands-carousel::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.brands-carousel::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.brands-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: scale(1.05);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Brands Section */
@media (max-width: 768px) {
    .brands-section {
        padding: 40px 0;
    }

    .brands-title {
        font-size: 1.6rem;
    }

    .brands-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .brands-track {
        gap: 40px;
        animation: scroll 20s linear infinite;
    }

    .brand-item {
        width: 140px;
        height: 80px;
        padding: 15px;
    }

    .brands-carousel::before,
    .brands-carousel::after {
        width: 50px;
    }
}

/* Footer */
.footer {
    background: #0d47a1;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(144, 202, 249, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #42a5f5;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--primary-black);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        color: white !important;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover {
        color: var(--primary-red) !important;
        background: rgba(238, 60, 48, 0.1);
        padding-left: 1rem;
    }
    
    .quote-btn {
        background: var(--primary-red);
        color: white !important;
        padding: 1rem !important;
        border-radius: 8px;
        margin-top: 1rem;
        border-bottom: none !important;
    }
    
    .quote-btn:hover {
        background: var(--accent-red);
        padding-left: 1rem !important;
    }
    
    .hero {
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero-container {
        padding: 80px 20px;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* About Page Mobile */
    .about {
        padding: 60px 0;
    }
    
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: left;
        line-height: 1.8;
    }
    
    .company-logos {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .logo-item img {
        max-width: 100%;
        max-height: 200px;
    }
    
    .subdivision-text {
        font-size: 0.95rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 450px;
    }

    .hero-container {
        padding: 60px 15px;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .quote-form {
        padding: 1.5rem;
    }
    
    /* About Page Small Mobile */
    .about {
        padding: 40px 0;
    }
    
    .about-text h2 {
        font-size: 1.75rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .logo-item img {
        max-width: 100%;
        max-height: 150px;
    }
    
    .subdivision-text {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}

/* Loading Animation for Logo */
.logo.loading {
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-red), var(--primary-red));
}

/* Coming Soon Overlay removed (rules deleted) */

/* ===============================================
   NEW SECTIONS - CROXLEY-STYLE DESIGN
   =============================================== */

/* Intro Section */
.intro-section {
    background: var(--primary-black);
    padding: 75px 30px;
    text-align: left;
}

.intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.intro-section h4 {
    color: var(--primary-white);
    font-size: 1.125rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    flex: 1;
}

/* Products Section Title */
.products-header {
    text-align: center;
    padding: 100px 20px 20px;
    background: var(--primary-white);
}

.products-header h2 {
    font-size: 2.5rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-weight: 700;
}

.products-header p {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Product Category Grid */
.product-category-grid {
    padding: 50px 20px 94px;
    background: var(--primary-white);
}

.product-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4%;
    margin-bottom: 40px;
}

.product-category-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-category-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-category-card:hover img {
    transform: scale(1.05);
}

.product-category-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Secondary Grid Row */
.product-grid-secondary {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4%;
}

/* Best Sellers Section */
.best-sellers-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.best-sellers-title h6 {
    color: var(--primary-red);
    font-size: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.best-sellers-title h3 {
    color: var(--text-gray);
    font-size: 3.75rem;
    font-weight: 700;
    margin: 0;
}

.view-all-btn {
    padding: 15px 25px;
    background: var(--primary-red);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-all-btn:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 60, 48, 0.4);
}

/* Why Choose Section */
.why-choose-section {
    background: var(--primary-black);
    padding: 6% 30px 8%;
    text-align: center;
    margin-bottom: -80px;
    position: relative;
    z-index: 1;
}

.why-choose-section h2 {
    color: var(--primary-white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.35;
}

.why-choose-section p {
    color: var(--primary-white);
    max-width: 900px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Search Location Section */
.location-search-section {
    background: var(--light-gray);
    padding: 30px 20px;
    margin-bottom: 90px;
}

.location-search-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
    gap: 20px;
}

.location-search-title h4 {
    color: var(--primary-red);
    font-size: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.location-search-title p {
    color: var(--text-gray);
    margin: 0;
}

.search-box-wrapper {
    position: relative;
}

.search-box-wrapper input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    font-size: 1rem;
    background: var(--primary-white);
}

.search-box-wrapper button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 20px;
    background: var(--primary-red);
    border: none;
    border-radius: 0 6px 6px 0;
    color: var(--primary-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box-wrapper button:hover {
    background: var(--accent-red);
}

/* Feature Sections */
.feature-section-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: -80px;
}

.feature-box {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15% 9%;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 100%);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-overlay h5 {
    color: var(--primary-white);
    font-size: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 4%;
    font-weight: 400;
}

.feature-overlay h2 {
    color: var(--primary-white);
    font-size: 2.5rem;
    text-transform: capitalize;
    margin: 0 0 20px;
    line-height: 1.8;
    font-weight: 700;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-white);
    color: var(--secondary-black);
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    background: var(--primary-red);
    color: var(--primary-white);
}

/* Footer */
.footer {
    background: #0d47a1;
    color: var(--primary-white);
    padding: 80px 20px 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 4%;
}

.footer-column h5 {
    color: var(--primary-white);
    font-size: 1.125rem;
    margin-bottom: 22px;
    font-weight: 400;
}

.footer-logo img {
    max-width: 250px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #90caf9;
}

/* Footer Bottom */
.footer-bottom {
    background: #0d47a1;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 20px 5px;
    text-align: center;
}

.footer-bottom p {
    color: var(--primary-white);
    margin: 0;
    font-size: 0.875rem;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 1024px) {
    .product-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-search-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: 1fr auto;
        padding: 1rem 20px;
    }
    
    .nav-left,
    .nav-right {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        background: var(--primary-black);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-left.active,
    .nav-right.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .product-grid-container,
    .product-grid-secondary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-section-duo {
        grid-template-columns: 1fr;
    }
    
    .best-sellers-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .best-sellers-title h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .intro-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-section h2 {
        font-size: 1.8rem;
    }
}

/* ===============================================
   FINAL OVERRIDES (ensure red/black/white theme)
   =============================================== */

/* Buttons */
.btn-primary {
    background: var(--primary-red);
    color: var(--primary-white);
    padding: 0.9rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(238, 60, 48, 0.28);
}

.btn-primary:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(238, 60, 48, 0.4);
}

/* Hero text colors - scoped overrides removed to keep readability on light sections */

/* Active nav link as a fallback (JS also sets) */
.nav-link.active { color: var(--primary-red) !important; }

/* Scrollbar in red theme */
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
}

/* ===============================================
   NEW PAGE STYLES - Quote, Contact, Catalog
   =============================================== */

/* Page Header Styles */
.page-header {
    text-align: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-black) 0%, #2a2a2a 100%);
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Quote Page Styles */
.quote-page {
    padding: 60px 0;
    background: #f8f8f8;
}

.quote-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.quote-form-full {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.quote-form-full .form-group {
    margin-bottom: 1.5rem;
}

.quote-form-full label {
    display: block;
    font-weight: 600;
    color: var(--secondary-black);
    margin-bottom: 0.5rem;
}

.quote-form-full input,
.quote-form-full select,
.quote-form-full textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quote-form-full input:focus,
.quote-form-full select:focus,
.quote-form-full textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(238, 60, 48, 0.1);
}

/* File Upload Styles */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed #ccc;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.file-upload-label:hover,
.file-upload-wrapper.dragover .file-upload-label {
    border-color: var(--primary-red);
    background: rgba(238, 60, 48, 0.05);
}

.file-upload-label i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.file-upload-label span {
    display: block;
    font-weight: 600;
    color: var(--secondary-black);
    margin-bottom: 0.25rem;
}

.file-upload-label small {
    color: #999;
    font-size: 0.875rem;
}

.file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.file-info i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.file-name {
    font-weight: 500;
    color: var(--secondary-black);
}

.file-size {
    color: #999;
    font-size: 0.875rem;
}

.remove-file {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.remove-file:hover {
    color: var(--primary-red);
}

.form-actions {
    margin-top: 2rem;
}

.form-actions .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    display: none;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: #4caf50;
    color: white;
    border: 2px solid #45a049;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.form-message.success::before {
    content: '✓ ';
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.form-message.error {
    background: var(--primary-red);
    color: white;
    border: 2px solid var(--accent-red);
    box-shadow: 0 4px 15px rgba(238, 60, 48, 0.3);
}

.form-message.error::before {
    content: '✕ ';
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Quote Info Cards */
.quote-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-black);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-page {
    padding: 60px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-black);
    margin-bottom: 1rem;
}

.contact-intro {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.social-connect {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-radius: 15px;
}

.social-connect h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-black);
    margin-bottom: 1.5rem;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    color: var(--secondary-black);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(238, 60, 48, 0.2);
}

.social-link i {
    font-size: 1.5rem;
}

.contact-map-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-black);
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.quick-quote-cta {
    background: linear-gradient(135deg, var(--primary-black) 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.quick-quote-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.quick-quote-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.quick-quote-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Catalog Hero Section */
.catalog-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-black) 0%, #2a2a2a 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.catalog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('stationary.jpg') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.catalog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(238, 60, 48, 0.1) 0%, 
        rgba(26, 26, 26, 0.95) 50%, 
        rgba(238, 60, 48, 0.1) 100%);
    z-index: 2;
}

.catalog-hero .container {
    position: relative;
    z-index: 3;
}

.catalog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.catalog-badge {
    display: inline-block;
    background: rgba(238, 60, 48, 0.15);
    color: var(--primary-red);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(238, 60, 48, 0.3);
    animation: fadeInDown 0.8s ease;
}

.catalog-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.catalog-hero-title .highlight {
    color: var(--primary-red);
    position: relative;
}

.catalog-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.catalog-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.catalog-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Catalog Page Styles */
.catalog-page {
    padding: 60px 0;
    background: #f8f8f8;
}

.catalog-controls {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.search-box {
    flex: 2;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid #e8e8e8;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(238, 60, 48, 0.1);
}

.filter-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-box label {
    font-weight: 600;
    color: var(--secondary-black);
    white-space: nowrap;
}

.filter-box select {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-box select:focus {
    outline: none;
    border-color: var(--primary-red);
}

.catalog-page .products-grid {
    background: transparent;
}

.catalog-page .product-card {
    background: white;
}

.catalog-page .product-card .btn-secondary {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
}

.catalog-cta {
    margin-top: 4rem;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.catalog-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-black);
    margin-bottom: 1rem;
}

.catalog-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .catalog-hero {
        padding: 80px 0 60px;
    }

    .catalog-hero-title {
        font-size: 2.2rem;
    }

    .catalog-hero-subtitle {
        font-size: 1.1rem;
    }

    .catalog-hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .quote-form-container,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .catalog-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-box {
        flex-direction: column;
        align-items: stretch;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* ===============================================
   CATALOG GALLERY STYLES
   =============================================== */

/* Gallery Grid Layout */
.catalog-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Gallery Item */
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: white;
    display: flex;
    flex-direction: column;
}

/* Gallery Image Container */
.gallery-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8f8f8;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gallery Info Section - Below Image */
.gallery-info {
    background: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gallery-info h3 {
    color: var(--primary-black);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.gallery-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Small Button for Gallery */
.btn-small {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 6px;
    display: inline-block;
    text-align: center;
    margin-top: 0.5rem;
}

/* Category Badge (Optional - add to HTML if needed) */
.gallery-item .category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(238, 60, 48, 0.4);
}

/* Loading State for Images */
.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

.gallery-image img[src] + .gallery-image::before {
    display: none;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Alternative Gallery Layout - Masonry Style (Optional) */
.catalog-gallery.masonry {
    column-count: 3;
    column-gap: 2rem;
}

.catalog-gallery.masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .catalog-gallery {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .catalog-gallery.masonry {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .catalog-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-info {
        padding: 1.2rem;
    }
    
    .gallery-info h3 {
        font-size: 1.1rem;
    }
    
    .gallery-info p {
        font-size: 0.85rem;
    }

    .btn-small {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .catalog-gallery.masonry {
        column-count: 1;
    }
}

@media (max-width: 480px) {
    .catalog-gallery {
        grid-template-columns: 1fr;
    }
}

/* Lightbox/Modal Styles (Optional - for full-size image viewing) */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--accent-red);
    transform: rotate(90deg);
}

/* Empty State */
.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
}

.gallery-empty i {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.gallery-empty h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-empty p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Success Message Styles */
.success-message {
    display: none;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
}

.success-content {
    max-width: 500px;
    margin: 0 auto;
}

.success-message i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: successBounce 0.6s ease;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

@keyframes successBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Form transition styles */
.quote-form {
    transition: all 0.3s ease;
}

/* Mobile responsiveness for success message */
@media (max-width: 768px) {
    .success-message {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
    }
    
    .success-message i {
        font-size: 3rem;
    }
    
    .success-message h3 {
        font-size: 1.5rem;
    }
    
    .success-message p {
        font-size: 1rem;
    }
}
