/* Global Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #00a651;
    --accent-color: #ffc107;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --white-color: #fff;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --border-color: #dee2e6;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
    padding-top: 100px; /* Account for fixed header */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

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

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

.btn-secondary:hover {
    background-color: #008c44;
    color: var(--white-color);
}

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

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

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

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

/* Header */
header {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px; /* Reduced from 20px to 10px */
}

.logo img {
    max-width: 120px; /* Further reduced from 150px to 120px */
    height: auto;
    margin-bottom: 5px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.logo p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-style: italic;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
    position: relative;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white-color);
    min-width: 250px;
    box-shadow: var(--box-shadow);
    z-index: 1;
    border-radius: 4px;
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.dropdown-content a {
    color: var(--dark-color);
    padding: 12px 20px;
    display: block;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    padding-top: 80px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    animation: fadeIn 1.5s ease;
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* Services Overview Section */
.services-overview {
    padding: 100px 0;
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

.view-all-services {
    text-align: center;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
}

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

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.feature:hover {
    box-shadow: var(--box-shadow);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature p {
    color: var(--gray-color);
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 86, 179, 0.9)), url('../images/cta-bg.jpg') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
    color: var(--white-color);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-color);
}

.testimonial-content p::before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: -20px;
    top: -20px;
    color: var(--light-gray);
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Partners Section */
.partners {
    padding: 80px 0;
}

.partner-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logo {
    padding: 20px;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo img {
    max-width: 120px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-logo:hover {
    opacity: 1;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--white-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-section p {
    margin-bottom: 15px;
}

.contact-info p {
    display: flex;
    align-items: center;
}

.contact-info p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    color: var(--white-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-color);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-section.newsletter form {
    display: flex;
    flex-direction: column;
}

.footer-section.newsletter input {
    padding: 12px;
    border-radius: 4px;
    border: none;
    margin-bottom: 10px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav {
        margin-top: 20px;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .services-grid,
    .features-grid,
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
}

/* Product Showcase Tab Component Styles */
:root {
    /* Tab Component CSS Variables for Easy Theming */
    --tab-primary-color: #0056b3;
    --tab-secondary-color: #00a651;
    --tab-background: #ffffff;
    --tab-border-color: #dee2e6;
    --tab-text-color: #333333;
    --tab-text-muted: #6c757d;
    --tab-border-radius: 8px;
    --tab-spacing: 1rem;
    --tab-transition: all 0.3s ease;
    --tab-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --tab-focus-color: #0056b3;
    --tab-hover-bg: #f8f9fa;
}

.product-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.tab-component {
    max-width: 100%;
    margin: 0 auto;
    background: var(--tab-background);
    border-radius: var(--tab-border-radius);
    box-shadow: var(--tab-shadow);
    overflow: hidden;
}

/* Tab Headers */
.tab-headers {
    display: flex;
    background: var(--tab-background);
    border-bottom: 2px solid var(--tab-border-color);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tab-headers::-webkit-scrollbar {
    display: none;
}

.tab-header {
    flex: 1;
    min-width: 120px;
    padding: var(--tab-spacing) calc(var(--tab-spacing) * 1.5);
    background: transparent;
    border: none;
    color: var(--tab-text-muted);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--tab-transition);
    position: relative;
    white-space: nowrap;
    text-align: center;
}

.tab-header:hover {
    background: var(--tab-hover-bg);
    color: var(--tab-text-color);
}

.tab-header:focus {
    outline: 2px solid var(--tab-focus-color);
    outline-offset: -2px;
    z-index: 1;
}

.tab-header.active {
    color: var(--tab-primary-color);
    font-weight: 600;
}

.tab-header.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--tab-primary-color);
    border-radius: 2px 2px 0 0;
}

/* Tab Content */
.tab-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    padding: calc(var(--tab-spacing) * 2);
    animation: fadeIn 0.3s ease-in-out;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-content h3 {
    color: var(--tab-text-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.panel-content > p {
    color: var(--tab-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Overview Panel Styles */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--tab-hover-bg);
    border-radius: var(--tab-border-radius);
    transition: var(--tab-transition);
}

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

.highlight-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--tab-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-item h4 {
    color: var(--tab-text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-item p {
    color: var(--tab-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Features Panel Styles */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--tab-hover-bg);
    border-radius: var(--tab-border-radius);
    transition: var(--tab-transition);
}

.feature-row:hover {
    background: #f1f3f4;
    transform: translateX(5px);
}

.feature-row .feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--tab-secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h4 {
    color: var(--tab-text-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--tab-text-muted);
    line-height: 1.5;
}

/* Get Started Panel Styles */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--tab-hover-bg);
    border-radius: var(--tab-border-radius);
    transition: var(--tab-transition);
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: var(--tab-shadow);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--tab-primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.step-content h4 {
    color: var(--tab-text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--tab-text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 12px 24px;
    border-radius: var(--tab-border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: var(--tab-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.cta-buttons .btn-primary {
    background: var(--tab-primary-color);
    color: white;
    border: 2px solid var(--tab-primary-color);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--tab-primary-color);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .tab-headers {
        flex-direction: column;
        border-bottom: none;
        border-right: 2px solid var(--tab-border-color);
    }
    
    .tab-component {
        display: flex;
        flex-direction: column;
    }
    
    .tab-header {
        text-align: left;
        border-bottom: 1px solid var(--tab-border-color);
    }
    
    .tab-header.active::after {
        bottom: auto;
        top: 0;
        right: -2px;
        left: auto;
        width: 3px;
        height: 100%;
        border-radius: 0 2px 2px 0;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .tab-panel {
        padding: var(--tab-spacing);
    }
    
    .panel-content h3 {
        font-size: 1.5rem;
    }
    
    .feature-row,
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-row .feature-icon,
    .step-number {
        align-self: center;
    }
}

/* Product Showcase - Latest Products Styles */
.latest-products {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--tab-border-color);
}

.latest-products h4 {
    color: var(--tab-primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--tab-background);
    border: 1px solid var(--tab-border-color);
    border-radius: var(--tab-border-radius);
    transition: var(--tab-transition);
}

.product-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--tab-shadow);
    border-color: var(--tab-primary-color);
}

.product-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: #f8f9fa;
    border: 2px dashed var(--tab-border-color);
    border-radius: var(--tab-border-radius);
    margin-bottom: 1rem;
    color: var(--tab-text-muted);
    transition: var(--tab-transition);
}

.product-image-placeholder:hover {
    border-color: var(--tab-primary-color);
    color: var(--tab-primary-color);
}

.product-image-placeholder svg {
    margin-bottom: 0.5rem;
}

.product-image-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

.product-item h5 {
    color: var(--tab-text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-item p {
    color: var(--tab-text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Installation Gallery Styles */
.installation-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.installation-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--tab-background);
    border: 1px solid var(--tab-border-color);
    border-radius: var(--tab-border-radius);
    transition: var(--tab-transition);
}

.installation-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--tab-shadow);
    border-color: var(--tab-primary-color);
}

.installation-image-placeholder {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: #f8f9fa;
    border: 2px dashed var(--tab-border-color);
    border-radius: var(--tab-border-radius);
    color: var(--tab-text-muted);
    transition: var(--tab-transition);
}

.installation-image-placeholder:hover {
    border-color: var(--tab-primary-color);
    color: var(--tab-primary-color);
}

.installation-image-placeholder svg {
    margin-bottom: 0.25rem;
}

.installation-image-placeholder span {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.installation-info {
    flex: 1;
}

.installation-info h4 {
    color: var(--tab-text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.installation-info p {
    color: var(--tab-text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.installation-location {
    display: inline-block;
    color: var(--tab-secondary-color);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 166, 81, 0.1);
    border-radius: 12px;
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .installation-gallery {
        grid-template-columns: 1fr;
    }
    
    .installation-item {
        flex-direction: column;
        text-align: center;
    }
    
    .installation-image-placeholder {
        align-self: center;
    }
}

/* No-JS Fallback Styles */
.no-js .tab-panel {
    display: block !important;
    border-bottom: 2px solid var(--tab-border-color);
    margin-bottom: 2rem;
}

.no-js .tab-panel:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.no-js .tab-headers {
    display: none;
}

.no-js .panel-content h3 {
    border-bottom: 2px solid var(--tab-primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}