/* CSS Variables - Your Color Scheme */
:root {
    --black: #0a0a0a;
    --navy: #1a1a2e;
    --dark-navy: #16213e;
    --gray: #2d3748;
    --light-gray: #4a5568;
    --white: #ffffff;
    --off-white: #e2e8f0;
    --border: #2d3748;
    --accent: #3182ce;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--black);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation with Animation */
nav {
    background-color: var(--black);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--light-gray);
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

/* Buttons with Animation */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--dark-navy);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-navy);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--off-white);
}

.btn-outline:hover {
    background-color: var(--off-white);
    color: var(--black);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Hero Section with Background Image - FIXED FOR MOBILE */
.hero {
    background-image: url('../images/hero_banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 8rem 2rem;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.7);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundMove 20s linear infinite;
    z-index: 0;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    padding: 0 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.25rem;
    color: var(--off-white);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-dark {
    background-color: var(--navy);
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 3rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Services Grid with Animation - UPDATED WITH IMAGES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Service Card with Image - UPDATED */
.service-card {
    background-color: var(--navy);
    padding: 0;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    overflow: hidden;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--light-gray);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Service Image - NEW */
.service-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

/* Service Icon - Overlapping Image - UPDATED */
.service-card .service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--dark-navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 1.5rem;
    color: var(--white);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    border: 2px solid var(--navy);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    padding: 0 2rem;
}

.service-card p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    padding: 0 2rem;
}

.service-card .link-arrow {
    margin: 0 2rem 2rem;
    display: inline-flex;
    color: var(--off-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    align-items: center;
    gap: 0.5rem;
}

.service-card .link-arrow:hover {
    color: var(--white);
    gap: 1rem;
}

/* Products Preview with Animation */
.products-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.preview-card {
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.preview-card.visible {
    opacity: 1;
    transform: scale(1);
}

.preview-img {
    height: 200px;
    background-color: var(--dark-navy);
    border-radius: 8px;
    display: block;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.preview-card:hover .preview-img img {
    transform: scale(1.05);
}

.preview-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.preview-card:hover .preview-img::before {
    left: 100%;
}

.preview-card:hover .preview-img {
    border-color: var(--light-gray);
}

.preview-card h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.preview-card:hover h4 {
    color: var(--off-white);
}

.preview-card p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* CTA Box with Animation */
.cta-box {
    background-color: var(--navy);
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.cta-box.visible {
    opacity: 1;
    transform: scale(1);
}

.cta-box:hover {
    border-color: var(--light-gray);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.cta-box h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Page Header - Base Styles */
.page-header {
    background-color: var(--navy);
    padding: 6rem 2rem 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease;
}

.page-header p {
    color: var(--light-gray);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Products Page Header with Background Image */
.products-page .page-header,
.page-header {
    background-image: url('../images/products-header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 8rem 2rem 4rem;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-page .page-header::before,
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.7);
    z-index: 0;
}

.products-page .page-header .container,
.page-header .container {
    position: relative;
    z-index: 1;
}

.products-page .page-header h1,
.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.products-page .page-header p,
.page-header p {
    font-size: 1.2rem;
    color: var(--off-white);
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Contact Page Header with Unique Background */
.contact-page .page-header {
    background-image: url('../images/contact-header.jpg');
}

/* Quote Page Header with Unique Background - NEW */
.quote-page .page-header {
    background-image: url('../images/quote-header.jpg');
}

/* About Page Header with Background Image */
.about-header {
    background-image: url('../images/about_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 8rem 2rem 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    animation: fadeIn 0.8s ease;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.65);
    z-index: 0;
}

.about-header .container {
    position: relative;
    z-index: 1;
}

.about-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-header p {
    font-size: 1.2rem;
    color: var(--off-white);
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* About Page with Animations */
.about-grid {
    display: grid;
    grid-template-columns: 0.7fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
    max-height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    border-color: var(--light-gray);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.image-placeholder {
    aspect-ratio: 3/4;
    background-color: var(--navy);
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--light-gray);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.image-placeholder:hover {
    transform: scale(1.02);
    border-color: var(--light-gray);
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease 0.2s forwards;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.mission-statement {
    background-color: var(--navy);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--dark-navy);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.mission-statement:hover {
    border-left-color: var(--white);
    transform: translateX(5px);
}

.mission-statement h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.values h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.value-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: default;
}

.tag:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.feature-item:hover h4 {
    color: var(--off-white);
}

.feature-item p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* Products Page - FIXED IMAGE STYLES */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-item {
    background-color: var(--navy);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.product-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-item:hover {
    transform: translateY(-10px);
    border-color: var(--light-gray);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.product-img {
    width: 100%;
    height: 220px;
    display: block;
    border-bottom: 1px solid var(--border);
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
}

.product-item:hover .product-img {
    filter: brightness(0.8);
    transform: scale(1.05);
}

.product-details {
    padding: 1.5rem;
}

.product-details h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.product-item:hover .product-details h3 {
    color: var(--off-white);
}

.product-details p {
    color: var(--light-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Service List - FIXED IMAGE STYLES */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background-color: var(--black);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.service-row.visible {
    opacity: 1;
    transform: translateX(0);
}

.service-row:hover {
    border-color: var(--light-gray);
    transform: translateX(10px);
}

.service-row-img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
}

.service-row:hover .service-row-img {
    transform: scale(1.05);
}

.service-row-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-row-content h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.service-row:hover .service-row-content h3 {
    color: var(--off-white);
}

.service-row-content p {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

/* Contact Page - Enhanced and Fully Working */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background-color: var(--navy);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease 0.3s forwards;
}

.contact-card {
    background-color: var(--navy);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--light-gray);
}

.contact-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-card p {
    color: var(--light-gray);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.email-link {
    color: var(--off-white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.email-link:hover {
    color: var(--white);
}

.email-link:hover::after {
    width: 100%;
}

.emergency-phone {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Forms */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.form-group:focus-within label {
    color: var(--off-white);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--black);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-gray);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: var(--gray);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e53e3e;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #38a169;
}

button[type="submit"] {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

button[type="submit"]:active {
    transform: translateY(0);
}

button[type="submit"].loading {
    color: transparent;
}

button[type="submit"].loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid var(--white);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

.success-message {
    background-color: #38a169;
    color: var(--white);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    display: none;
    animation: slideDown 0.3s ease;
}

.success-message.show {
    display: block;
}

/* Quote Page */
.quote-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.quote-form {
    background-color: var(--navy);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.form-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.quote-info {
    background-color: var(--dark-navy);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.quote-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.quote-info ol {
    color: var(--light-gray);
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.quote-info li {
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.quote-info li:hover {
    color: var(--off-white);
}

.quote-note {
    color: var(--off-white);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #050505;
    border-top: 1px solid var(--border);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.footer-brand:hover h3 {
    color: var(--off-white);
}

.footer-brand p {
    color: var(--light-gray);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact p {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-contact p:hover {
    color: var(--off-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==================== RESPONSIVE FIXES ==================== */

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--black);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border);
        gap: 1.5rem;
        animation: slideDown 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        background-attachment: scroll;
        min-height: 60vh;
        padding: 6rem 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .page-header {
        min-height: 30vh;
        padding: 6rem 1.5rem 3rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }

    .about-header {
        min-height: 30vh;
        padding: 6rem 1.5rem 3rem;
    }
    
    .about-header h1 {
        font-size: 2rem;
    }
    
    .about-header p {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        position: relative;
        top: 0;
        max-width: 280px;
        max-height: 350px;
        margin: 0 auto;
        order: -1;
    }

    .about-image img {
        max-height: 350px;
    }

    .about-text h2 {
        text-align: center;
    }

    .subtitle {
        text-align: center;
    }

    .service-row {
        grid-template-columns: 1fr;
    }

    .service-row-img {
        height: 180px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-links a:hover {
        transform: translateX(0);
    }

    .cta-box {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 50vh;
        padding: 4rem 1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .page-header {
        min-height: 25vh;
    }

    .about-header {
        min-height: 25vh;
    }

    .about-image {
        max-width: 100%;
        max-height: 300px;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }
    
    .product-img {
        height: 180px;
    }
    
    .service-row-img {
        height: 150px;
    }
    
    .service-img {
        height: 150px;
    }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 400px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.5;
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification.success {
    background-color: #38a169;
    border: 1px solid #2f855a;
    border-left: 4px solid #2f855a;
}

.toast-notification.error {
    background-color: #e53e3e;
    border: 1px solid #c53030;
    border-left: 4px solid #c53030;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
}

.toast-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    background-color: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .toast-notification {
        top: auto;
        bottom: 20px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(150%);
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
}

/* View All Products Button - FIXED */
.view-all-container {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.btn-view-all {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--dark-navy);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--dark-navy);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-all:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}