/* Color Variables - Based on Logo */
:root {
    --primary-blue: #1a73bb;
    --primary-dark: #0f5a92;
    --secondary-grey: #4a4a4a;
    --light-grey: #f5f7fa;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --text-light: #6c757d;
    --accent-color: #17a2b8;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand .logo-placeholder {
    width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
}

.navbar-brand .logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-blue);
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background-color: var(--primary-blue);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after {
        width: 80%;
    }

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
}

    .dropdown-item:hover {
        background-color: var(--light-grey);
        color: var(--primary-blue);
        padding-left: 2rem;
    }

/* Main Content */
.main-content {
    padding-top: 76px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    /* Background Image */
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?q=80&w=2069&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed; /* Parallax effect */
        opacity: 0.3;
        z-index: 0;
    }

/* Gradient Overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 115, 187, 0.85) 0%, rgba(15, 90, 146, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons .btn {
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: none;
}

    .hero-buttons .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

.hero-buttons .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--light-grey);
}

.feature-card {
    padding: 2rem;
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-10px);
    }

.feature-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
}

/* Products Section */
.products-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(135deg, var(--light-grey) 0%, #e0e5ea 100%);
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 115, 187, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
}

.product-info {
    padding: 1.8rem;
}

    .product-info h4 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.8rem;
    }

    .product-info p {
        color: var(--text-light);
        margin-bottom: 1rem;
    }

.product-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .product-link:hover {
        color: var(--primary-dark);
        gap: 1rem;
    }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    color: var(--white);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.95;
    margin: 0;
}

.cta-section .btn-light {
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .cta-section .btn-light:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

/* Footer */
.footer-section {
    background-color: #1a1a1a;
    color: #b0b0b0;
    padding: 4rem 0 1rem;
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

    .footer-list li {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .footer-list i {
        color: var(--primary-blue);
        margin-top: 0.2rem;
        flex-shrink: 0;
    }

    .footer-list a {
        color: #b0b0b0;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer-list a:hover {
            color: var(--primary-blue);
        }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #333;
}

    .footer-bottom p {
        margin: 0;
        color: #808080;
    }

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons .btn {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-section .btn-light {
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 500px;
    }

        /* Disable parallax on mobile for better performance */
        .hero-section::before {
            background-attachment: scroll;
        }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        display: block;
        margin: 0.5rem 0 !important;
    }

    .features-section,
    .products-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .navbar-brand .logo-placeholder {
        width: 150px;
        height: 50px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-image {
        height: 200px;
    }
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    padding: 6rem 0 4rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
        opacity: 0.15;
        z-index: 0;
    }

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* About Overview */
.about-overview {
    padding: 5rem 0;
}

.about-image-wrapper {
    position: relative;
}

    .about-image-wrapper img {
        border-radius: 15px;
    }

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .about-badge i {
        font-size: 2.5rem;
        color: var(--primary-blue);
    }

    .about-badge strong {
        display: block;
        font-size: 1.5rem;
        color: var(--text-dark);
        line-height: 1.2;
    }

    .about-badge span {
        display: block;
        font-size: 0.9rem;
        color: var(--text-light);
    }

.about-content {
    padding-left: 2rem;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

    .about-heading::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 80px;
        height: 4px;
        background: var(--primary-blue);
        border-radius: 2px;
    }

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
}

    .stat-item h3 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 0.5rem;
    }

    .stat-item p {
        font-size: 0.95rem;
        color: var(--text-light);
        margin: 0;
    }

/* Mission & Vision */
.mission-vision-section {
    padding: 5rem 0;
    background-color: var(--light-grey);
    position: relative;
    overflow: hidden;
}

    /* Optional: Add subtle background pattern */
    .mission-vision-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
        opacity: 0.03;
        z-index: 0;
    }

    .mission-vision-section .container {
        position: relative;
        z-index: 1;
    }

.mission-card,
.vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    /* Add gradient background to mission card */
    .mission-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 200px;
        height: 200px;
        background: linear-gradient(135deg, rgba(26, 115, 187, 0.05) 0%, transparent 100%);
        border-radius: 50%;
        transform: translate(50%, -50%);
    }

    /* Add gradient background to vision card */
    .vision-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 200px;
        height: 200px;
        background: linear-gradient(135deg, transparent 0%, rgba(26, 115, 187, 0.05) 100%);
        border-radius: 50%;
        transform: translate(-50%, 50%);
    }

    .mission-card:hover,
    .vision-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

    .mission-icon i,
    .vision-icon i {
        font-size: 2rem;
        color: var(--white);
    }

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.mission-card p,
.vision-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Core Values */
.values-section {
    padding: 5rem 0;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-grey) 0%, #e0e5ea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
}

.value-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon-wrapper i {
    color: var(--white);
}

.value-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Us */
.why-choose-section {
    padding: 5rem 0;
    background-color: var(--light-grey);
    position: relative;
    overflow: hidden;
}

    /* Add subtle background texture */
    .why-choose-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?q=80&w=2069&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
        opacity: 0.02;
        z-index: 0;
    }

    .why-choose-section .container {
        position: relative;
        z-index: 1;
    }

.why-choose-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-list {
    margin-top: 2rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.why-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .why-icon i {
        font-size: 1.5rem;
        color: var(--white);
    }

.why-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.why-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Locations Section */
.locations-section {
    padding: 5rem 0;
}

.location-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
}

    .location-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

.location-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

    .location-header i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .location-header h4 {
        font-size: 1.5rem;
        font-weight: 600;
        margin: 0;
    }

.location-body {
    padding: 2rem;
}

    .location-body p {
        margin-bottom: 0.8rem;
        color: var(--text-light);
        line-height: 1.6;
    }

    .location-body strong {
        color: var(--text-dark);
        display: block;
        margin-top: 1rem;
    }

.location-btn {
    display: block;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .location-btn:hover {
        background: var(--primary-dark);
        color: var(--white);
    }

/* About CTA */
.about-cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.about-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

    .about-cta-buttons .btn {
        padding: 0.8rem 2.5rem;
        font-size: 1.1rem;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

        .about-cta-buttons .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

/* Responsive Design for About Page */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .about-stats {
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .about-heading {
        font-size: 2rem;
    }

    .about-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 5rem 0 3rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .about-overview,
    .mission-vision-section,
    .values-section,
    .why-choose-section,
    .locations-section,
    .about-cta-section {
        padding: 3rem 0;
    }

    .about-badge {
        bottom: 10px;
        right: 10px;
        padding: 1rem 1.5rem;
    }

        .about-badge i {
            font-size: 2rem;
        }

        .about-badge strong {
            font-size: 1.2rem;
        }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mission-card,
    .vision-card {
        padding: 2rem;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

        .about-cta-buttons .btn {
            width: 100%;
        }
}

@media (max-width: 575px) {
    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .about-heading {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .why-item {
        gap: 1rem;
    }

    .why-icon {
        width: 45px;
        height: 45px;
    }

    .why-content h5 {
        font-size: 1.1rem;
    }
}

/* ============================================
   CONTACT US PAGE STYLES
   ============================================ */

/* Contact Info Cards */
.contact-info-section {
    padding: 5rem 0 3rem;
    background-color: var(--light-grey);
    margin-top: -3rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

    .contact-info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .contact-info-icon i {
        font-size: 2rem;
        color: var(--white);
    }

.contact-info-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-info-card a {
    display: block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

    .contact-info-card a:hover {
        color: var(--primary-dark);
        padding-left: 5px;
    }

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
}

.contact-form-wrapper,
.contact-map-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.form-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    padding: 0.8rem 1.2rem;
    border: 2px solid #e0e5ea;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

    .contact-form .form-control:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 0.2rem rgba(26, 115, 187, 0.15);
    }

.contact-form textarea.form-control {
    resize: vertical;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .contact-form .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(26, 115, 187, 0.3);
    }

    .contact-form .btn-primary i {
        margin-right: 0.5rem;
    }

.alert {
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

    .alert i {
        margin-right: 0.5rem;
    }

/* Map Container */
.map-container {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 15px;
}

.contact-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-grey);
    border-radius: 10px;
    margin-bottom: 1rem;
}

    .highlight-item i {
        font-size: 2rem;
        color: var(--primary-blue);
        flex-shrink: 0;
    }

    .highlight-item strong {
        display: block;
        font-size: 1.1rem;
        color: var(--text-dark);
        margin-bottom: 0.3rem;
    }

    .highlight-item p {
        color: var(--text-light);
        margin: 0;
        line-height: 1.6;
    }

/* Branch Locations Section */
.branch-locations-section {
    padding: 5rem 0;
    background-color: var(--light-grey);
}

.branch-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

    .branch-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

.branch-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .branch-icon i {
        font-size: 2rem;
        color: var(--white);
    }

.branch-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.branch-details {
    text-align: left;
}

    .branch-details p {
        color: var(--text-light);
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .branch-details i {
        color: var(--primary-blue);
        margin-right: 0.5rem;
        width: 20px;
    }

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.3rem 1.5rem;
    border: none;
}

    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
        color: var(--white);
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
        border: none;
    }

    .accordion-button::after {
        filter: brightness(0.8);
    }

    .accordion-button:not(.collapsed)::after {
        filter: brightness(0) invert(1);
    }

.accordion-body {
    padding: 1.5rem;
    background: var(--light-grey);
    color: var(--text-light);
    line-height: 1.8;
}

/* Responsive Design for Contact Page */
@media (max-width: 991px) {
    .contact-form-wrapper,
    .contact-map-wrapper {
        padding: 2rem;
    }

    .form-heading {
        font-size: 1.8rem;
    }

    .contact-form-section,
    .branch-locations-section,
    .faq-section {
        padding: 4rem 0;
    }
}

@media (max-width: 767px) {
    .contact-info-section {
        padding: 4rem 0 2rem;
    }

    .contact-form-section,
    .branch-locations-section,
    .faq-section {
        padding: 3rem 0;
    }

    .contact-form-wrapper,
    .contact-map-wrapper {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
    }

        .highlight-item i {
            margin: 0 auto 1rem;
        }
}

@media (max-width: 575px) {
    .form-heading {
        font-size: 1.5rem;
    }

    .form-description {
        font-size: 0.95rem;
    }

    .contact-form .btn-primary {
        font-size: 1rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* ============================================
   CATEGORY PRODUCTS PAGE STYLES
   ============================================ */

/* Breadcrumb */
.breadcrumb-custom {
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

    .breadcrumb-custom li {
        color: rgba(255, 255, 255, 0.8);
    }

        .breadcrumb-custom li:not(:last-child)::after {
            content: '/';
            margin: 0 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .breadcrumb-custom li.active {
            color: var(--white);
            font-weight: 500;
        }

    .breadcrumb-custom a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .breadcrumb-custom a:hover {
            color: var(--white);
        }

/* Filter Section */
.filter-section {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 76px;
    z-index: 100;
}

.results-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

    .results-info i {
        color: var(--primary-blue);
        font-size: 1.2rem;
    }

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .sort-dropdown label {
        font-weight: 600;
        color: var(--text-dark);
        white-space: nowrap;
        margin: 0;
    }

        .sort-dropdown label i {
            color: var(--primary-blue);
            margin-right: 0.3rem;
        }

    .sort-dropdown .form-select {
        border: 2px solid #e0e5ea;
        border-radius: 8px;
        padding: 0.6rem 1rem;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .sort-dropdown .form-select:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.2rem rgba(26, 115, 187, 0.15);
        }

/* Category Products Section */
.category-products-section {
    padding: 4rem 0;
}

/* Product Card */
.category-product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .category-product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

/* Product Badges */
.product-badge-container {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
}

.badge-featured {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: var(--white);
}

.badge-low-stock {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: var(--white);
}

.badge-out-stock {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: var(--white);
}

/* Product Image */
.category-product-image {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, var(--light-grey) 0%, #e0e5ea 100%);
    overflow: hidden;
}

    .category-product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease;
    }

.category-product-card:hover .category-product-image img {
    transform: scale(1.1);
}

.product-quick-actions {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 0.8rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.category-product-card:hover .product-quick-actions {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.btn-action {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    .btn-action:hover {
        background: var(--primary-blue);
        color: var(--white);
        transform: scale(1.1);
    }

/* Product Info */
.category-product-info {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category-tag {
    display: inline-block;
    background: var(--light-grey);
    color: var(--primary-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

    .product-name a {
        color: var(--text-dark);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .product-name a:hover {
            color: var(--primary-blue);
        }

.product-short-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e5ea;
}

    .product-specs span {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: var(--text-light);
    }

    .product-specs i {
        color: var(--primary-blue);
    }

/* Product Footer */
.product-footer {
    margin-top: auto;
}

.product-price-section {
    margin-bottom: 1rem;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    margin-right: 0.8rem;
}

.price-current {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.btn-primary-custom {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

    .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(26, 115, 187, 0.3);
        color: var(--white);
    }

    .btn-primary-custom i {
        margin-left: 0.5rem;
        transition: all 0.3s ease;
    }

    .btn-primary-custom:hover i {
        transform: translateX(5px);
    }

/* No Products Found */
.no-products-found {
    text-align: center;
    padding: 5rem 2rem;
}

.no-products-icon {
    width: 120px;
    height: 120px;
    background: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

    .no-products-icon i {
        font-size: 4rem;
        color: var(--text-light);
    }

.no-products-found h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.no-products-found p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Category CTA Section */
.category-cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    color: var(--white);
}

    .category-cta-section h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.8rem;
    }

    .category-cta-section p {
        font-size: 1.1rem;
        margin: 0;
        opacity: 0.95;
    }

    .category-cta-section .btn-light {
        padding: 0.8rem 2rem;
        font-size: 1.05rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .category-cta-section .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

/* Quick View Modal */
.quick-view-info {
    padding: 1rem 0;
}

    .quick-view-info h4 {
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

    .quick-view-info .product-category-tag {
        margin-bottom: 1rem;
    }

.price-display {
    padding: 1.5rem 0;
    border-top: 1px solid #e0e5ea;
    border-bottom: 1px solid #e0e5ea;
}

.stock-status {
    display: flex;
    gap: 0.5rem;
}

/* Responsive Design for Category Products */
@media (max-width: 991px) {
    .filter-section {
        position: static;
    }

    .sort-dropdown {
        flex-direction: column;
        align-items: stretch;
    }

        .sort-dropdown .form-select {
            width: 100%;
        }

    .category-product-image {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .category-products-section {
        padding: 3rem 0;
    }

    .results-info {
        font-size: 0.95rem;
    }

    .category-product-image {
        height: 220px;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .price-current {
        font-size: 1.5rem;
    }

    .category-cta-section {
        text-align: center;
    }

        .category-cta-section h2 {
            font-size: 1.8rem;
        }

        .category-cta-section .btn-light {
            width: 100%;
            margin-top: 1rem;
        }
}

@media (max-width: 575px) {
    .page-title {
        font-size: 1.8rem;
    }

    .category-product-image {
        height: 200px;
    }

    .category-product-info {
        padding: 1.5rem;
    }

    .product-specs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .no-products-found {
        padding: 3rem 1rem;
    }

    .no-products-icon {
        width: 100px;
        height: 100px;
    }

        .no-products-icon i {
            font-size: 3rem;
        }
}

/* ============================================
   PRODUCT DETAILS PAGE STYLES
   ============================================ */

/* Product Breadcrumb */
.product-breadcrumb {
    background: var(--light-grey);
    padding: 1.5rem 0;
}

/* Product Details Section */
.product-details-section {
    padding: 4rem 0;
}

/* Product Images Container */
.product-images-container {
    position: sticky;
    top: 100px;
}

.main-product-image {
    position: relative;
    background: var(--light-grey);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    cursor: zoom-in;
}

    .main-product-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: all 0.3s ease;
    }

    .main-product-image:hover img {
        transform: scale(1.05);
    }

.product-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-discount {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: var(--white);
}

.image-zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.main-product-image:hover .image-zoom-hint {
    opacity: 1;
}

/* Product Thumbnails */
.product-thumbnails {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .thumbnail-item.active {
        border-color: var(--primary-blue);
    }

    .thumbnail-item:hover {
        border-color: var(--primary-blue);
        transform: translateY(-3px);
    }

    .thumbnail-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Product Info Container */
.product-info-container {
    padding-left: 2rem;
}

.product-category-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-brand,
.product-model {
    display: inline-block;
    margin-right: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

    .product-brand strong,
    .product-model strong {
        color: var(--text-dark);
    }

    .product-brand span,
    .product-model span {
        color: var(--primary-blue);
        font-weight: 500;
    }

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e5ea;
}

.stars {
    display: flex;
    gap: 0.3rem;
}

    .stars i {
        color: #ffc107;
        font-size: 1.1rem;
    }

.rating-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Product Price Container */
.product-price-container {
    background: var(--light-grey);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-badge {
    background: #dc3545;
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Stock Info */
.product-stock-info {
    margin-bottom: 1.5rem;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

    .stock-status.in-stock {
        background: #d4edda;
        color: #155724;
    }

    .stock-status.low-stock {
        background: #fff3cd;
        color: #856404;
    }

    .stock-status.out-of-stock {
        background: #f8d7da;
        color: #721c24;
    }

/* Product Description */
.product-description {
    margin-bottom: 2rem;
}

    .product-description h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .product-description p {
        color: var(--text-light);
        line-height: 1.8;
        font-size: 1.05rem;
    }

/* Product Actions */
.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-action-primary,
.btn-action-secondary {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-action-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border: none;
}

    .btn-action-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(26, 115, 187, 0.3);
    }

.btn-action-secondary {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

    .btn-action-secondary:hover {
        background: var(--primary-blue);
        color: var(--white);
        transform: translateY(-3px);
    }

/* Product Features List */
.product-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-grey);
    border-radius: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
}

    .feature-item i {
        color: var(--primary-blue);
        font-size: 1.2rem;
    }

/* Product Tabs */
.product-tabs-section {
    padding: 3rem 0;
    background: var(--light-grey);
}

.product-tabs {
    border-bottom: 2px solid #e0e5ea;
    margin-bottom: 2rem;
}

    .product-tabs .nav-link {
        color: var(--text-dark);
        font-weight: 600;
        padding: 1rem 2rem;
        border: none;
        border-bottom: 3px solid transparent;
        transition: all 0.3s ease;
    }

        .product-tabs .nav-link:hover {
            color: var(--primary-blue);
        }

        .product-tabs .nav-link.active {
            color: var(--primary-blue);
            border-bottom-color: var(--primary-blue);
            background: transparent;
        }

.product-tab-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Specifications Grid */
.specifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-grey);
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .spec-item:hover {
        background: #e0e5ea;
        transform: translateX(5px);
    }

.spec-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

    .spec-label i {
        color: var(--primary-blue);
    }

.spec-value {
    color: var(--text-light);
    font-weight: 500;
}

/* Full Description */
.full-description h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.full-description p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

    .features-list li {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.8rem 0;
        color: var(--text-dark);
        border-bottom: 1px solid #e0e5ea;
    }

        .features-list li:last-child {
            border-bottom: none;
        }

    .features-list i {
        color: #28a745;
        font-size: 1.1rem;
    }

/* Reviews */
.reviews-container {
    max-width: 900px;
}

.reviews-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    padding: 2rem;
    background: var(--light-grey);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.average-rating {
    text-align: center;
}

    .average-rating h2 {
        font-size: 4rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 0.5rem;
    }

    .average-rating p {
        color: var(--text-light);
        margin: 0.5rem 0 0;
    }

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .rating-row span:first-child {
        min-width: 60px;
        color: var(--text-dark);
        font-weight: 500;
    }

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e0e5ea;
    border-radius: 10px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
}

.rating-row span:last-child {
    min-width: 40px;
    text-align: right;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Individual Reviews */
.individual-reviews {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    padding: 1.5rem;
    background: var(--light-grey);
    border-radius: 10px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-info h5 {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.review-stars {
    display: flex;
    gap: 0.2rem;
}

    .review-stars i {
        color: #ffc107;
        font-size: 0.9rem;
    }

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-body h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.review-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Related Products */
.related-products-section {
    padding: 4rem 0;
}

.related-product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .related-product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

.related-product-image {
    height: 200px;
    overflow: hidden;
    background: var(--light-grey);
}

    .related-product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }

.related-product-card:hover .related-product-image img {
    transform: scale(1.1);
}

.related-product-info {
    padding: 1.5rem;
    text-align: center;
}

    .related-product-info h5 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .related-product-info .price {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 1rem;
    }

/* Responsive Design for Product Details */
@media (max-width: 991px) {
    .product-info-container {
        padding-left: 0;
        margin-top: 2rem;
    }

    .product-images-container {
        position: static;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .reviews-summary {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .product-details-section {
        padding: 3rem 0;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .product-features-list {
        grid-template-columns: 1fr;
    }

    .specifications-grid {
        grid-template-columns: 1fr;
    }

    .product-tabs .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .product-tab-content {
        padding: 1.5rem;
    }
}
