/* Custom CSS for Scale Portables Website */

/* CSS Variables */
:root {
    --primary-color: #224666;
    --trim-color: #4caed5;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-color: #333333;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --shadow: 0 4px 20px rgba(34, 70, 102, 0.1);
    --shadow-hover: 0 8px 30px rgba(34, 70, 102, 0.15);
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Noto Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

/* Buttons */
.btn {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    border-radius: var(--border-radius);
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--trim-color) 100%);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--trim-color) 0%, var(--primary-color) 100%);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

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

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

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

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

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

/* Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 15px;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--trim-color) 100%);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 70vh;
    min-height: 500px;
}

.carousel-item {
    height: 70vh;
    min-height: 500px;
    position: relative;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 70, 102, 0.4) 0%, rgba(76, 174, 213, 0.4) 100%);
}

.carousel-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: var(--white);
    height: 70vh;
    min-height: 500px;
}

.carousel-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
}

.carousel-indicators button.active {
    background-color: var(--trim-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 100%;
}

/* Welcome Section */
.welcome-section {
    padding: 0;
}

.welcome-image {
    height: 100%;
    overflow: hidden;
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-content {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.welcome-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.welcome-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.welcome-signature {
    margin-top: 2rem;
}

.signature-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.signature-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--trim-color);
    margin: 0;
}

/* Signature Products Section */
.signature-products {
    padding: 100px 0;
    background: var(--white);
}

.product-feature-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.product-feature-image img {
    transition: var(--transition);
}

.product-feature-image:hover img {
    transform: scale(1.05);
}

.product-feature-content {
    padding: 2rem;
}

.feature-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    margin-bottom: 1.5rem;
}

.highlight-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

.video-section {
    background: var(--light-gray);
    padding: 60px 40px;
    border-radius: var(--border-radius-lg);
    margin: 60px 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-container iframe {
    width: 100%;
    height: 450px;
}

.model-info {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    box-shadow: var(--shadow);
}

.model-info h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.model-info p {
    color: var(--dark-gray);
    margin: 0;
}

.rounded-lg {
    border-radius: var(--border-radius-lg) !important;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 70, 102, 0.8) 0%, rgba(76, 174, 213, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

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

.product-content {
    padding: 2rem;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-description {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: var(--trim-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(34, 70, 102, 0.75) 0%, rgba(76, 174, 213, 0.75) 100%), url(/media/vacfqemr/photoroom_20250604_114438.jpeg);
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-title {
    font-family: 'Archivo', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--trim-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-link:hover {
    background: var(--trim-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.carousel-indicators [data-bs-target] {
    height: 10px;
    width: 10px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .carousel-title {
        font-size: 2.5rem;
    }
    
    .carousel-text {
        font-size: 1.1rem;
    }
    
    .welcome-content {
        padding: 60px 40px;
        height: auto;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .product-feature-content {
        padding: 1rem;
    }
    
    .feature-title {
        font-size: 1.75rem;
    }
    
    .video-section {
        padding: 40px 20px;
    }
    
    .video-container iframe {
        height: 350px;
    }
}

@media (max-width: 767.98px) {
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-text {
        font-size: 1rem;
    }
    
    .welcome-content {
        padding: 40px 30px;
    }
    
    .welcome-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .signature-products,
    .contact-cta {
        padding: 60px 0;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
}

@media (max-width: 575.98px) {
    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 10px 15px;
    }
    
    .carousel-content {
        padding: 0 15px;
    }
    
    .welcome-content {
        padding: 30px 20px;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .product-feature-content {
        padding: 0.5rem;
    }
    
    .video-section {
        padding: 30px 15px;
    }
}

/* About Page Styles */
.about-hero {
    padding: 100px 0;
    background: var(--light-gray);
}

.hero-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    box-shadow: var(--shadow);
}

/* Our Values Section */
.our-values {
    padding: 100px 0;
    background: var(--white);
}

.value-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.value-box:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--trim-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.value-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-description {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Our Approach Section */
.our-approach {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
}

.our-approach .section-title {
    color: var(--white);
}

.approach-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.approach-subtitle {
    font-size: 1.5rem;
    color: var(--trim-color);
    margin-bottom: 1.5rem;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.approach-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--trim-color);
}

.approach-image img {
    box-shadow: var(--shadow);
}

/* Work With Section */
.work-with {
    padding: 100px 0;
    background: var(--light-gray);
}

.client-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.client-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.client-icon {
    width: 70px;
    height: 70px;
    background: var(--trim-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.client-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.client-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Our Commitment Section */
.our-commitment {
    padding: 100px 0;
    background: var(--white);
}

.commitment-description {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.commitment-features {
    margin-bottom: 2rem;
}

.commitment-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.commitment-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

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

.commitment-text h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.commitment-text p {
    color: var(--dark-gray);
    margin: 0;
}

.commitment-image img {
    box-shadow: var(--shadow);
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: var(--trim-color);
    color: var(--white);
}

.about-cta .cta-title {
    color: var(--white);
}

.about-cta .cta-text {
    color: var(--white);
}

/* Responsive Design for About Page */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .value-box,
    .client-card {
        margin-bottom: 2rem;
    }
    
    .our-approach,
    .our-commitment {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .about-hero,
    .our-values,
    .work-with,
    .about-cta {
        padding: 60px 0;
    }
    
    .value-box,
    .client-card {
        padding: 30px 20px;
    }
    
    .commitment-item {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .about-hero,
    .our-values,
    .our-approach,
    .work-with,
    .our-commitment,
    .about-cta {
        padding: 40px 0;
    }
    
    .value-icon,
    .client-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i,
    .client-icon i {
        font-size: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 60px 0 60px;
    background: var(--light-gray);
}

.contact-hero .hero-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-hero .hero-description {
    font-size: 1.3rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Information Section */
.contact-info {
    padding: 80px 0;
    background: var(--white);
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--trim-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.contact-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-details {
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-email a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-email a:hover {
    color: var(--trim-color);
    text-decoration: underline;
}

.contact-note {
    font-style: italic;
    color: var(--dark-gray);
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Contact Guide Section */
.contact-guide {
    padding: 100px 0;
    background: var(--light-gray);
}

.guide-item {
    text-align: center;
    margin-bottom: 2rem;
}

.guide-icon {
    width: 70px;
    height: 70px;
    background: var(--trim-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.guide-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.guide-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    color: var(--white);
}

.contact-cta .cta-title {
    color: var(--white);
}

.contact-cta .cta-text {
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-cta .btn-light {
    font-size: 1.1rem;
    padding: 15px 35px;
}

.contact-cta .btn-light i {
    margin-right: 10px;
}

/* Responsive Design for Contact Page */
@media (max-width: 991.98px) {
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .contact-hero .hero-description {
        font-size: 1.2rem;
    }
    
    .contact-hero,
    .contact-info,
    .contact-guide,
    .contact-cta {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .guide-item {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .contact-hero,
    .contact-info,
    .contact-guide,
    .contact-cta {
        padding: 40px 0;
    }
    
    .contact-icon,
    .guide-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i,
    .guide-icon i {
        font-size: 1.5rem;
    }
    
    .contact-cta .btn-light {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

.specification-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.specification-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.specification-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.specification-table tr:hover {
    background-color: #e3f2fd;
}

.specification-table td:first-child {
    background-color: #224666;
    color: white;
    font-weight: bold;
    width: 40%;
}

.specification-table td:last-child {
    width: 60%;
    color: #333;
}

@media (max-width: 768px) {
    .specification-table {
        font-size: 14px;
    }
    
    .specification-table td {
        padding: 8px 10px;
    }
    
    .specification-table td:first-child {
        width: 45%;
    }
    
    .specification-table td:last-child {
        width: 55%;
    }
}

/* Products listing */

/* Products Listing Page Styles */
.products-hero {
    padding: 60px 0 60px;
    background: var(--light-gray);
}

.products-hero .hero-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.products-hero .hero-description {
    font-size: 1.3rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Listing Section */
.products-listing {
    padding: 80px 0;
    background: var(--white);
}

.product-listing-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-listing-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.product-listing-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-listing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 70, 102, 0.8) 0%, rgba(76, 174, 213, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-listing-card:hover .product-listing-overlay {
    opacity: 1;
}

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

.product-listing-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-listing-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-listing-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--trim-color);
    margin-bottom: 1rem;
    font-family: 'Archivo', sans-serif;
}

.product-listing-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.product-listing-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-listing-actions .btn {
    flex: 1;
    min-width: 120px;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* No Products State */
.no-products {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
}

.no-products h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-products p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Products CTA Section */
.products-cta {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
}

.products-cta .cta-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.products-cta .cta-text {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Responsive Design for Products Listing */
@media (max-width: 991.98px) {
    .products-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .product-listing-card {
        margin-bottom: 2rem;
    }
    
    .product-listing-actions {
        justify-content: center;
    }
    
    .product-listing-actions .btn {
        flex: none;
        min-width: 140px;
    }
}

@media (max-width: 767.98px) {
    .products-hero .hero-title {
        font-size: 2rem;
    }
    
    .products-hero .hero-description {
        font-size: 1.2rem;
    }
    
    .products-hero,
    .products-listing,
    .products-cta {
        padding: 60px 0;
    }
    
    .product-listing-content {
        padding: 1.5rem;
    }
    
    .product-listing-image {
        height: 220px;
    }
    
    .product-listing-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .product-listing-actions .btn {
        width: 100%;
    }
    
    .products-cta .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .products-hero,
    .products-listing,
    .products-cta {
        padding: 40px 0;
    }
    
    .product-listing-content {
        padding: 1rem;
    }
    
    .product-listing-image {
        height: 200px;
    }
    
    .product-listing-title {
        font-size: 1.3rem;
    }
    
    .product-listing-price {
        font-size: 1.2rem;
    }
}

/* Product item page */

/* Product Item Page Styles */
.product-hero {
    padding: 100px 0;
    background: var(--light-gray);
}

.product-hero-image {
    position: relative;
}

.product-hero-image img {
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
}

.product-hero-content {
    padding-left: 2rem;
}

.product-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--trim-color);
    margin-bottom: 2rem;
    font-family: 'Archivo', sans-serif;
}

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

.product-actions .btn {
    min-width: 180px;
    font-weight: 600;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, var(--trim-color) 0%, var(--primary-color) 100%);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--trim-color) 100%);
}

/* Product Details Section */
.product-details {
    padding: 80px 0;
    background: var(--white);
}

.product-tabs {
    border-bottom: 3px solid var(--light-gray);
    margin-bottom: 0;
}

.product-tabs .nav-link {
    border: none;
    border-radius: 0;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    color: var(--dark-gray);
    padding: 15px 25px;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.product-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--primary-color);
}

.product-tabs .nav-link.active {
    background: transparent;
    border-color: transparent;
    color: var(--primary-color);
}

.product-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--trim-color) 100%);
}

.product-tab-content {
    background: var(--white);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.tab-content-inner {
    padding: 3rem;
    min-height: 300px;
}

.tab-content-inner h1,
.tab-content-inner h2,
.tab-content-inner h3,
.tab-content-inner h4,
.tab-content-inner h5,
.tab-content-inner h6 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.tab-content-inner h1:first-child,
.tab-content-inner h2:first-child,
.tab-content-inner h3:first-child,
.tab-content-inner h4:first-child,
.tab-content-inner h5:first-child,
.tab-content-inner h6:first-child {
    margin-top: 0;
}

.tab-content-inner p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.tab-content-inner ul,
.tab-content-inner ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.tab-content-inner li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Product Gallery Section */
.product-gallery {
    padding: 80px 0;
    background: var(--light-gray);
}

.gallery-title {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Gallery Modal */
.modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
}

.modal-header {
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.modal-title {
    color: var(--white);
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 2rem;
}

#modalImage {
    max-height: 70vh;
    width: auto;
    border-radius: var(--border-radius);
}

/* Product CTA Section */
.product-cta {
    padding: 100px 0;
    background: var(--trim-color);
    color: var(--white);
    background: linear-gradient(135deg, rgba(34, 70, 102, 0.75) 0%, rgba(76, 174, 213, 0.75) 100%), url(/media/vacfqemr/photoroom_20250604_114438.jpeg)
}

.product-cta .cta-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-cta .cta-text {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Responsive Design for Product Item Page */
@media (max-width: 991.98px) {
    .product-hero-content {
        padding-left: 0;
        padding-top: 2rem;
        text-align: center;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-price {
        font-size: 1.75rem;
    }
    
    .product-actions {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .product-hero,
    .product-details,
    .product-gallery,
    .product-cta {
        padding: 60px 0;
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .product-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .product-tabs .nav-link {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .tab-content-inner {
        padding: 2rem;
    }
    
    .gallery-item {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .product-cta .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .product-hero,
    .product-details,
    .product-gallery,
    .product-cta {
        padding: 40px 0;
    }
    
    .product-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .tab-content-inner {
        padding: 1.5rem;
    }
    
    .gallery-item {
        height: 240px;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    #modalImage {
        max-height: 60vh;
    }
}

/* Gallery nav */

/* Gallery Navigation Styles */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(34, 70, 102, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

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

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(34, 70, 102, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Hide navigation when there's only one image */
.modal-body:has(+ script) .gallery-nav-btn,
.modal-body:has(+ script) .gallery-counter {
    display: block;
}

/* Responsive adjustments for gallery navigation */
@media (max-width: 767.98px) {
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-counter {
        bottom: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .gallery-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .gallery-prev {
        left: 5px;
    }
    
    .gallery-next {
        right: 5px;
    }
    
    .gallery-counter {
        bottom: 10px;
        padding: 4px 10px;
        font-size: 0.75rem;
    }
}

.text-content {
  padding:
60px 0;
}