/* Nile Waynes Group - Main Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --green-accent: #34a853;
    --green-dark: #22c55e;
    --secondary-color: #f9fafb;
    --text-color: #f9fafb;
    --text-light: #9ca3af;
    --text-dark: #374151;
    --bg-dark: #232629;
    --bg-darker: #111827;
    --bg-card: #1f2937;
    --bg-light: #374151;
    --white: #ffffff;
    --border-color: #374151;
}

body {
    font-family: 'Sen', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-dark);
}

/* Header Styles */
.header {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 2rem;
    align-items: center;
    background-color: var(--bg-dark);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green-accent);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-quote {
    font-style: italic;
    color: var(--text-light);
    border-left: 4px solid var(--green-accent);
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--bg-dark);
    padding: 5rem 2rem;
}

.why-choose-us-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-us-content h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--blue-accent);
    font-weight: 800;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

.why-item h3 {
    font-size: 1.3rem;
    color: var(--green-accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Products Gallery Section */
.products-gallery {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 5rem 2rem;
}

.products-gallery-header {
    max-width: 1440px;
    margin: 0 auto 3rem;
    text-align: center;
}

.products-gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.products-gallery-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Products Carousel */
.products-carousel-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.products-carousel {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.products-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.products-carousel-track .product-card {
    flex: 0 0 100%;
    min-width: 100%;
    aspect-ratio: 16/9;
    border-radius: 0;
}

.products-carousel-track .product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-carousel-track .product-overlay {
    padding: 4rem 2rem 2rem;
}

.products-carousel-track .product-overlay span {
    font-size: 1.5rem;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-btn-prev {
    left: 1rem;
}

.carousel-btn-next {
    right: 1rem;
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* Carousel Responsive */
@media (max-width: 768px) {
    .products-carousel-container {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .products-carousel-track .product-card {
        aspect-ratio: 4/3;
    }
    
    .products-carousel-track .product-overlay span {
        font-size: 1.2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn-prev {
        left: 0.5rem;
    }
    
    .carousel-btn-next {
        right: 0.5rem;
    }
    
    .carousel-dots {
        gap: 0.5rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .products-carousel-container {
        margin: 0 0.5rem;
    }
    
    .products-carousel-track .product-overlay {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .products-carousel-track .product-overlay span {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

.products-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Make the grid responsive but with explicit breakpoints */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 599px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 3rem 1.25rem 1.25rem;
    transition: padding 0.3s ease;
}

.product-card:hover .product-overlay {
    padding-bottom: 1.5rem;
}

.product-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    display: block;
}

/* Build the Future Section */
.build-future {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.build-future-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.build-future-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.build-future .section-title {
    font-family: 'Sen', sans-serif;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.build-future .section-description {
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
}

.expertise-list li {
    font-size: 1.15rem;
    color: #f0f0f0;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.expertise-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: bold;
    font-size: 1.5rem;
}

.build-future .btn-primary {
    background-color: var(--green-accent);
    color: var(--white);
}

.build-future .btn-primary:hover {
    background-color: var(--green-dark);
}

/* Testimonial Section */
.testimonial {
    padding: 5rem 2rem;
    background-color: var(--bg-darker);
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.testimonial-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
}

.testimonial-quote {
    font-size: 1.15rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Quality Promise Section */
.quality-promise {
    background-color: var(--bg-dark);
    padding: 5rem 2rem;
    text-align: center;
}

.quality-content {
    max-width: 700px;
    margin: 0 auto;
}

.quality-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.quality-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-section h4 i {
    font-size: 1.3rem;
    color: var(--green-accent);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-section p a:hover {
    color: var(--green-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-quote {
        border-left: none;
        padding-left: 0;
        border-top: 4px solid var(--primary-color);
        padding-top: 1rem;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* ================================
   ABOUT US PAGE STYLES
   ================================ */

.about-hero {
    background-color: var(--bg-darker);
    padding: 5rem 2rem;
    text-align: center;
}

.about-hero-content .page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.about-hero-content .page-subtitle {
    font-size: 3rem;
    font-weight: 800;
    color: var(--green-accent);
}

.about-description {
    padding: 5rem 2rem;
    background-color: var(--bg-dark);
}

.about-content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.why-choose-us {
    padding: 5rem 2rem;
    background-color: var(--bg-darker);
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-accent) 0%, var(--green-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.production-process {
    padding: 5rem 2rem;
    background-color: var(--bg-dark);
}

.process-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.process-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.process-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.process-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.process-item i {
    color: var(--green-accent);
    font-size: 1.25rem;
}

.process-item span {
    font-weight: 500;
    color: var(--text-color);
}

.quality-control {
    padding: 5rem 2rem;
    background-color: var(--bg-darker);
    text-align: center;
}

.quality-control-content {
    max-width: 700px;
    margin: 0 auto;
}

.quality-control-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.quality-control-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.quality-control .btn-primary {
    background-color: var(--green-accent);
    color: var(--white);
}

.manufacturing-capacity {
    padding: 5rem 2rem;
    background-color: var(--bg-dark);
}

.capacity-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.capacity-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.capacity-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.capacity-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.team-section {
    padding: 5rem 2rem;
    background-color: var(--bg-darker);
    text-align: center;
}

.team-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: -2rem auto 3rem;
}

.team-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.team-member span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-cta {
    padding: 5rem 2rem;
    background-color: var(--bg-dark);
    text-align: center;
}

.about-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* ================================
   PRODUCTS PAGE STYLES
   ================================ */

.products-hero {
    background-color: var(--bg-darker);
    padding: 5rem 2rem;
    text-align: center;
}

.products-hero-content .page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.products-hero-content .page-subtitle {
    font-size: 1.25rem;
    color: var(--green-accent);
}

.products-intro {
    padding: 4rem 2rem;
    background-color: var(--bg-dark);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.products-main {
    padding: 3rem 2rem 6rem;
    background-color: var(--bg-darker);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Desktop: 2 columns side by side */
@media (min-width: 1200px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Tablet/smaller desktop: 1 column */
@media (max-width: 1199px) {
    .products-container {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
}

.product-item {
    background-color: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.product-item .product-image {
    height: 100%;
    min-height: 220px;
    overflow: hidden;
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.product-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.product-item:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

/* Product Category Sections */
.product-category {
    max-width: 1400px;
    margin: 5rem auto 0;
    padding: 0;
}

.category-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--green-accent));
    border-radius: 2px;
}

.category-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 750px;
    line-height: 1.75;
}

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

/* Category grid responsive */
@media (min-width: 1200px) {
    .category-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .category-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .category-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 599px) {
    .category-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
}

.category-product-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.category-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.category-product-image {
    height: 240px;
    overflow: hidden;
}

.category-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-product-card:hover .category-product-image img {
    transform: scale(1.1);
}

.category-product-actions {
    padding: 1.25rem;
    display: flex;
    justify-content: center;
}

.category-product-actions span.btn {
    pointer-events: none;
    width: 100%;
    text-align: center;
}

.what-we-do {
    padding: 5rem 2rem;
    background-color: var(--bg-dark);
    text-align: center;
}

.what-we-do-content {
    max-width: 600px;
    margin: 0 auto;
}

.what-we-do-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.what-we-do-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.products-cta {
    padding: 5rem 2rem;
    background-color: var(--bg-darker);
    text-align: center;
}

.products-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.products-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.products-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.products-cta .btn-primary {
    background-color: var(--green-accent);
    color: var(--white);
}

/* ================================
   CONTACT PAGE STYLES
   ================================ */

.contact-hero {
    background-color: var(--bg-darker);
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero-content .page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-hero-content .page-subtitle {
    font-size: 1.25rem;
    color: var(--green-accent);
}

.contact-section {
    padding: 5rem 2rem;
    background-color: var(--bg-dark);
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

a.info-card:hover {
    background-color: rgba(82, 184, 70, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-accent) 0%, var(--green-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.info-details h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.info-details p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.contact-form-container {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.contact-form-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--bg-dark);
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-accent);
    box-shadow: 0 0 0 3px rgba(52, 168, 83, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
}

.contact-quality {
    padding: 4rem 2rem;
    background-color: var(--bg-darker);
    text-align: center;
}

.contact-quality .quality-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-quality p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

/* Active nav link */
.nav-links a.active {
    color: var(--green-accent);
    font-weight: 600;
}

/* ================================
   RESPONSIVE STYLES FOR NEW PAGES
   ================================ */

@media (max-width: 1024px) {
    .about-content-wrapper,
    .capacity-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image,
    .capacity-image {
        order: -1;
    }

    .product-item {
        grid-template-columns: 1fr;
    }

    .product-item .product-image {
        height: 250px;
    }
    
    .product-info {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .about-hero-content .page-title,
    .products-hero-content .page-title,
    .contact-hero-content .page-title {
        font-size: 2.25rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-features {
        flex-direction: column;
        align-items: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
        text-align: center;
    }

    .contact-container {
        gap: 3rem;
    }

    /* Category Section Responsive */
    .product-category {
        margin-top: 3rem;
    }
}

/* ================================
   CATEGORY DETAIL PAGE STYLES
   ================================ */

.category-hero {
    background: url('/static/assets/photo6.jpeg') center/cover no-repeat;
    padding: 5rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern */
.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.category-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.25rem 0;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--green-accent);
    font-weight: 600;
}

.category-page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.category-page-subtitle {
    font-size: 1.35rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Description Section */
.category-description-section {
    padding: 6rem 2rem;
    background-color: var(--bg-dark);
}

.category-description-content {
    max-width: 1300px;
    margin: 0 auto;
}

.category-info-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Desktop alignment improvements */
@media (min-width: 1024px) {
    .category-info-grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 5rem;
    }
    
    .category-features {
        position: sticky;
        top: 100px;
    }
}

.category-main-info h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.75rem;
    line-height: 1.3;
}

.category-main-info p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1.75rem;
}

.category-main-info p:last-child {
    margin-bottom: 0;
}

.category-features {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(31, 41, 55, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-features h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-features h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--green-accent), var(--primary-color));
    border-radius: 2px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--text-light);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.3s ease, transform 0.3s ease;
}

.feature-list li:hover {
    color: var(--text-color);
    transform: translateX(5px);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--green-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

/* Category Gallery Section */
.category-gallery {
    padding: 6rem 2rem;
    background-color: var(--bg-darker);
}

.category-gallery-content {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Desktop large screens */
@media (min-width: 1200px) {
    .category-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Featured first item */
    .category-gallery-grid.has-featured .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* Medium desktop */
@media (min-width: 900px) and (max-width: 1199px) {
    .category-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (min-width: 600px) and (max-width: 899px) {
    .category-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 599px) {
    .category-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.gallery-image {
    width: 100%;
    height: 100%;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 4rem 1.5rem 1.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease, padding 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    padding-bottom: 2rem;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.15rem;
    display: block;
}

.gallery-overlay .gallery-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay .gallery-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Category CTA Section */
.category-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    text-align: center;
    position: relative;
}

.category-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.category-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.category-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.category-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

/* Category Learn More button in products page */
.category-learn-more {
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Product card as link (home page) */
a.product-card {
    text-decoration: none;
    display: block;
}

/* ================================
   CATEGORY PAGE RESPONSIVE STYLES
   ================================ */

/* Large desktop (1400px+) */
@media (min-width: 1400px) {
    .category-page-title {
        font-size: 4rem;
    }
    
    .category-cta h2 {
        font-size: 2.75rem;
    }
    
    .category-main-info h2 {
        font-size: 2.5rem;
    }
}

/* Standard desktop (1024px - 1399px) */
@media (min-width: 1024px) and (max-width: 1399px) {
    .category-page-title {
        font-size: 3.25rem;
    }
}

/* Tablet landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .category-hero {
        padding: 4rem 2rem 5rem;
    }
    
    .category-info-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .category-features {
        order: -1;
        position: relative;
        top: 0;
    }

    .category-page-title {
        font-size: 2.75rem;
    }
    
    .category-description-section {
        padding: 4rem 2rem;
    }
    
    .category-gallery {
        padding: 4rem 2rem;
    }
    
    .category-cta {
        padding: 4rem 2rem;
    }
    
    .category-cta h2 {
        font-size: 2rem;
    }
}

/* Tablet portrait (600px - 767px) */
@media (max-width: 767px) {
    .category-hero {
        padding: 3rem 1.5rem 4rem;
    }
    
    .category-hero::before {
        display: none;
    }

    .category-page-title {
        font-size: 2.25rem;
    }

    .category-page-subtitle {
        font-size: 1.1rem;
    }

    .breadcrumb {
        flex-wrap: wrap;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .category-description-section {
        padding: 3rem 1.5rem;
    }

    .category-main-info h2 {
        font-size: 1.75rem;
    }

    .category-main-info p {
        font-size: 1.05rem;
        line-height: 1.75;
    }

    .category-features {
        padding: 1.75rem;
    }
    
    .category-features h3 {
        font-size: 1.2rem;
    }

    .category-gallery {
        padding: 3rem 1.5rem;
    }

    .gallery-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .category-cta {
        padding: 3rem 1.5rem;
    }

    .category-cta h2 {
        font-size: 1.75rem;
    }

    .category-cta p {
        font-size: 1.05rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

/* Mobile (max 599px) */
@media (max-width: 599px) {
    .category-hero {
        padding: 2.5rem 1rem 3rem;
    }
    
    .category-page-title {
        font-size: 1.85rem;
    }
    
    .category-page-subtitle {
        font-size: 1rem;
    }
    
    .category-description-section {
        padding: 2.5rem 1rem;
    }
    
    .category-main-info h2 {
        font-size: 1.5rem;
    }
    
    .category-main-info p {
        font-size: 1rem;
    }
    
    .category-features {
        padding: 1.5rem;
    }

    .feature-list li {
        font-size: 0.95rem;
        padding: 0.85rem 0;
    }
    
    .category-gallery {
        padding: 2.5rem 1rem;
    }
    
    .gallery-title {
        font-size: 1.5rem;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .category-cta {
        padding: 2.5rem 1rem;
    }
    
    .category-cta h2 {
        font-size: 1.5rem;
    }
    
    .category-cta p {
        font-size: 0.95rem;
    }
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
    padding: 10px 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 4px;
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 1.8rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 5px 15px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-image {
        max-height: 85vh;
    }

    /* Footer responsive adjustments */
    .footer {
        padding: 2rem 1rem;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }
}


