/* Main CSS for Powerage Motor Yağları Website */

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-accent {
    color: #e63946;
}

.shadow {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.btn-primary {
    background-color: #e63946;
    border-color: #e63946;
}

.btn-primary:hover {
    background-color: #c1121f;
    border-color: #c1121f;
}

.btn-outline-primary {
    color: #e63946;
    border-color: #e63946;
}

.btn-outline-primary:hover {
    background-color: #e63946;
    border-color: #e63946;
}

.btn-outline-light:hover {
    color: #1d3557;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    margin: 0 5px;
    position: relative;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #e63946;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #e63946;
}

.navbar-nav .nav-link:hover:after {
    width: 50%;
}

/* Hero Section */
.hero-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Hero Background Container and Animation */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 115%; /* 20% → 15% genişlik azaltıldı */
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease; /* 0.1s → 0.5s daha yumuşak hareket */
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    background: none;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    margin-top: 30px;
}

.hero-image {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.hero-image img {
    max-height: 400px;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-10px);
}

/* Info Boxes */
.info-boxes {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.info-box {
    background-color: #1d3557;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.info-box-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-box-header i {
    font-size: 24px;
    margin-right: 15px;
    color: #fff;
}

.info-box-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
}

.info-box p {
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
    margin-bottom: 15px;
}

.info-box-link {
    color: #4ecdc4;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.info-box-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.info-box-link:hover {
    color: #fff;
}

.info-box-link:hover i {
    transform: translateX(5px);
}

/* Divider Section */
.divider-section {
    padding: 35px 0;
}

.divider-image {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sustainability Hero Section */
.sustainability-hero {
    position: relative;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.sustainability-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.sustainability-content {
    position: relative;
    z-index: 1;
    padding: 40px;
}

.sustainability-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.sustainability-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.sustainability-hero .btn-primary {
    border-radius: 15px;
    font-weight: 500;
    padding: 10px 25px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
}

.sustainability-hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* Brands Section */
.brands-section {
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brands-container {
    padding: 20px 0;
}

.brand-item {
    transition: all 0.3s ease;
}

.brand-item:hover {
    opacity: 1 !important;
    transform: scale(1.05);
}

/* Featured Products Section */
.featured-products {
    padding: 80px 0;
    background-color: #fff;
}

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

.section-header h2 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1d3557;
    position: relative;
    display: inline-block;
}

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

.section-header p {
    color: #457b9d;
}

/* Enhanced Product Card Styles */
.product-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.35s ease;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
    padding: 15px;
    padding-top: 60px;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 53, 87, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-overlay .btn {
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

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

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

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
}

.product-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(230, 57, 70, 0.9);
    color: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    z-index: 1;
}

.product-category-badge i {
    margin-right: 5px;
    font-size: 0.7rem;
}

.product-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-details h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d3557;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card:hover .product-details h3 {
    color: #e63946;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.product-info {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.85rem;
}

.product-info i {
    color: #457b9d;
    margin-right: 5px;
    font-size: 0.9rem;
}

.product-stock {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
}

.in-stock {
    color: #2ecc71;
}

.out-of-stock {
    color: #e74c3c;
}

.product-stock i {
    margin-right: 5px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.about-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.05) 0%, rgba(230, 57, 70, 0.05) 100%);
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-content {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #1d3557;
    position: relative;
    display: inline-block;
}

.about-content h2:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #e63946;
    bottom: -10px;
    left: 0;
}

.about-stats h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-stats p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #fff;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 25px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: rgba(230, 57, 70, 0.1);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    height: 40px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1d3557;
}

.feature-card p {
    color: #6c757d;
}

/* Feature Cards Enhanced Styles */
.feature-icon-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.feature-icon-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(230, 57, 70, 0.05);
    transform: scale(0.8);
    z-index: -1;
    transition: all 0.5s ease;
}

.feature-icon-circle i {
    font-size: 35px;
    color: #1d3557;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon-circle {
    transform: translateY(-10px);
}

.feature-card:hover .feature-icon-circle::before {
    transform: scale(1.2);
    background-color: rgba(230, 57, 70, 0.1);
}

.feature-card:hover .feature-icon-circle i {
    color: #e63946;
}

/* Newsletter Section */
.newsletter-section {
    background-color: #fff;
}

.newsletter-box {
    background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
    color: #fff;
}

.newsletter-box h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-form .form-control {
    height: 50px;
    border: none;
}

.newsletter-form .btn {
    height: 50px;
    padding: 0 30px;
}

/* Footer */
.site-footer {
    background-color: #1d3557;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-brand-logo {
    max-height: 50px;
    filter: brightness(0) invert(1);
}

.site-footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.site-footer h5:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #e63946;
    bottom: -10px;
    left: 0;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.site-footer address p {
    margin-bottom: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #e63946;
    transform: translateY(-3px);
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #fff;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 70px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .about-image {
        margin-bottom: 40px;
    }

    .featured-products,
    .about-section,
    .features-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .footer-brand-logo {
        margin-bottom: 20px;
    }

    .site-footer h5 {
        margin-top: 30px;
    }

    .about-stats {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .navbar-brand .logo {
        max-height: 45px;
    }

    .newsletter-form .btn {
        width: 100%;
        margin-top: 10px;
        border-radius: 5px;
    }

    .newsletter-form .input-group {
        display: block;
    }
}

/* About Page Styles */
.page-banner {
    position: relative;
    padding: 80px 0;
    background-color: #1d3557;
    color: #fff;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.about-story .section-header h2,
.mission-vision .section-header h2 {
    text-align: left;
}

.about-story .section-header h2:after,
.mission-vision .section-header h2:after {
    left: 0;
    transform: none;
}

.category-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background-color: rgba(230, 57, 70, 0.1);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 30px;
    color: #e63946;
}

.category-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d3557;
    margin-bottom: 0;
}

.vision-card, .mission-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vision-card {
    border-left: 5px solid #e63946;
}

.mission-card {
    border-left: 5px solid #4ecdc4;
}

.values-list {
    padding-left: 20px;
}

.values-list li {
    margin-bottom: 10px;
}

.expansion-list {
    padding-left: 20px;
}

.expansion-list li {
    margin-bottom: 8px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #fff;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Catalog Page Styles */
.catalog-nav .nav-link {
    color: #333;
    font-weight: 500;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.catalog-nav .nav-link:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

.catalog-nav .nav-link.active {
    background-color: #0d6efd;
    color: #fff;
}

.catalog-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.catalog-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.catalog-image {
    height: 200px;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.catalog-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.catalog-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.catalog-specs {
    margin: 0.5rem 0;
}

.catalog-specs .badge {
    margin-right: 0.3rem;
}

.catalog-download {
    background-color: #f8f9fa;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.catalog-download:hover {
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Page Styles */
.page-banner {
    padding: 4rem 0;
    position: relative;
    color: #fff;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
    opacity: 0.5;
}

.faq-section .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-weight: 500;
    padding: 1.25rem;
    background-color: #f8f9fa;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
}

.faq-section .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.faq-section .accordion-body {
    padding: 1.25rem;
    background-color: #fff;
    line-height: 1.6;
}

.faq-section .accordion-body ul {
    padding-left: 1.2rem;
}

.faq-section .accordion-body li {
    margin-bottom: 0.5rem;
}

.newsletter-box {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #fff;
}

.newsletter-box h3 {
    font-weight: 700;
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: 4px 0 0 4px;
}

.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
    height: 50px;
    background-color: #0a58ca;
    border-color: #0a58ca;
}

.technical-support-section img {
    max-height: 350px;
    object-fit: cover;
}

/* Media Queries for Catalog and FAQ Pages */
@media (max-width: 991px) {
    .catalog-nav .nav-link {
        margin-bottom: 0.5rem;
    }
    
    .technical-support-section img {
        max-height: 300px;
    }
}

@media (max-width: 767px) {
    .catalog-item {
        margin-bottom: 1.5rem;
    }
    
    .page-banner {
        padding: 3rem 0;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .catalog-nav .nav-link {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
    
    .page-banner {
        padding: 2rem 0;
    }
    
    .page-banner h1 {
        font-size: 1.75rem;
    }
}

/* About Page Styles */
.company-overview {
    line-height: 1.7;
}

.company-overview .lead {
    font-size: 1.2rem;
    color: #0d6efd;
    font-weight: 500;
}

.mission-box, .vision-box {
    transition: all 0.3s ease;
    border-left: 4px solid #0d6efd;
}

.mission-box:hover, .vision-box:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.value-card {
    transition: all 0.3s ease;
    background-color: #fff;
    border-top: 4px solid #0d6efd;
}

.value-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.sustainability-list {
    list-style-type: none;
    padding-left: 0;
}

.sustainability-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

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

.sustainability-list li strong {
    color: #0d6efd;
}

.team-member {
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-role {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-bio {
    color: #6c757d;
    font-size: 0.9rem;
}

.timeline {
    position: relative;
    padding: 0 15px;
}

.timeline:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 4px;
    background: #0d6efd;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
}

.timeline-content {
    position: relative;
    width: calc(50% - 30px);
    margin-left: auto;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-content:before {
    content: '';
    position: absolute;
    top: 15px;
    width: 30px;
    height: 4px;
    background: #0d6efd;
}

.timeline-item:nth-child(odd) .timeline-content:before {
    left: -30px;
}

.timeline-item:nth-child(even) .timeline-content:before {
    right: -30px;
}

.timeline-content:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 4px solid #0d6efd;
    border-radius: 50%;
    top: 9px;
}

.timeline-item:nth-child(odd) .timeline-content:after {
    left: -38px;
}

.timeline-item:nth-child(even) .timeline-content:after {
    right: -38px;
}

.timeline-content h4 {
    color: #0d6efd;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.cta-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #fff;
    padding: 3rem 0;
}

.cta-section h2 {
    font-weight: 700;
}

.cta-buttons .btn-outline-primary {
    color: #fff;
    border-color: #fff;
}

.cta-buttons .btn-outline-primary:hover {
    background-color: #fff;
    color: #0d6efd;
}

/* Responsive styles for About page */
@media (max-width: 991px) {
    .timeline:before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before,
    .timeline-item:nth-child(even) .timeline-content:before {
        left: -30px;
        right: auto;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:after,
    .timeline-item:nth-child(even) .timeline-content:after {
        left: -38px;
        right: auto;
    }
}

@media (max-width: 767px) {
    .member-image img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 575px) {
    .timeline-content {
        width: calc(100% - 45px);
        margin-left: 45px !important;
    }
    
    .timeline:before {
        left: 22px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before,
    .timeline-item:nth-child(even) .timeline-content:before {
        width: 20px;
        left: -20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:after,
    .timeline-item:nth-child(even) .timeline-content:after {
        left: -28px;
    }
}

/* Contact Page Styles */
.contact-info-card {
    transition: all 0.3s ease;
    background-color: #fff;
    border-top: 4px solid #0d6efd;
}

.contact-info-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-form-wrapper {
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.75rem;
}

.form-label {
    font-weight: 500;
    color: #555;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.map-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.distributor-card {
    background-color: #fff;
    transition: all 0.3s ease;
    height: 100%;
}

.distributor-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.distributor-card h3 {
    color: #0d6efd;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.distributor-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.distributor-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.distributor-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.distributor-item p {
    margin-bottom: 0.3rem;
    color: #6c757d;
}

.contact-faq-section .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.contact-faq-section .accordion-button {
    font-weight: 500;
    padding: 1.25rem;
    background-color: #f8f9fa;
    box-shadow: none;
}

.contact-faq-section .accordion-button:not(.collapsed) {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
}

.contact-faq-section .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.contact-faq-section .accordion-body {
    padding: 1.25rem;
    background-color: #fff;
    line-height: 1.6;
}

/* Responsive Styles for Contact Page */
@media (max-width: 991px) {
    .map-container {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .contact-info-card {
        margin-bottom: 1.5rem;
    }
    
    .map-container {
        min-height: 300px;
        margin-top: 1rem;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 30px 0;
    list-style: none;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-item .page-link {
    padding: 10px 20px;
    color: #1d3557;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.pagination .page-item .page-link:hover {
    background-color: #1d3557;
    color: #fff;
    border-color: #1d3557;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

/* Hides the page numbers, only keep prev/next */
.pagination li:not(.page-item:first-child):not(.page-item:last-child) {
    display: none;
}

/* Fix pagination sizing */
.pagination svg {
    width: 18px;
    height: 18px;
    margin: 0 5px;
}

/* Category Filter Styles */
.filter-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.filter-header {
    font-size: 18px;
    font-weight: 600;
    color: #1d3557;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.category-filter {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: #333;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    text-decoration: none;
}

.category-item:hover {
    background-color: #e9ecef;
    color: #333;
    transform: translateX(3px);
}

.category-item.active {
    background-color: #1d3557;
    color: #fff;
}

.category-item.active .badge {
    background-color: #e63946 !important;
    color: #fff;
}

.badge {
    font-weight: 500;
    font-size: 0.75rem;
    padding: 5px 8px;
    border-radius: 50px;
}

.pagination-container {
    max-width: 500px;
    margin: 0 auto;
}

/* Load More Button Styles */
.load-more-btn {
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: transparent;
    color: #1d3557;
    border: 2px solid #1d3557;
    border-radius: 30px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.load-more-btn:hover {
    background-color: #1d3557;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(29, 53, 87, 0.2);
}

.load-more-btn:active, 
.load-more-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(29, 53, 87, 0.2);
}

.load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Product Detail Page Styles */
.product-detail-image-wrapper {
    position: relative;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 20px;
}

.product-detail-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding-top: 40px;
}

.product-detail-image-wrapper .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(230, 57, 70, 0.9);
    color: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    z-index: 1;
}

.product-detail-image-wrapper .category-badge i {
    margin-right: 5px;
    font-size: 0.7rem;
}

.product-detail-info {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-detail-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.product-detail-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.product-type, .stock-status {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    padding: 5px 12px;
    border-radius: 20px;
    background-color: #f8f9fa;
}

.product-type {
    color: #457b9d;
}

.product-type i, .stock-status i {
    margin-right: 5px;
}

.stock-status.in-stock {
    color: #2ecc71;
    background-color: rgba(46, 204, 113, 0.1);
}

.product-detail-description, .product-detail-spec, .product-detail-brands {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.product-detail-description h4, .product-detail-spec h4, .product-detail-brands h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d3557;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.product-detail-description h4 i, .product-detail-spec h4 i, .product-detail-brands h4 i {
    margin-right: 8px;
    color: #e63946;
}

.product-detail-description p, .product-detail-spec p {
    color: #6c757d;
    line-height: 1.7;
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.brand-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f8f9fa;
    color: #1d3557;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.brand-badge:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.product-actions {
    display: flex;
    gap: 15px;
}

.product-actions .btn {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-actions .btn i {
    margin-right: 8px;
}

.related-products-section .section-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    color: #1d3557;
}

.related-products-section .section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #e63946;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.related-products-section .section-title i {
    margin-right: 10px;
    color: #e63946;
}

@media (max-width: 767px) {
    .product-detail-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-detail-image-wrapper, .product-detail-info {
        padding: 20px;
    }
    
    .product-detail-title {
        font-size: 1.5rem;
    }
}

/* PDF Viewer Styles */
.pdf-viewer-container {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.pdf-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.page-info {
    font-size: 1rem;
    font-weight: 500;
    color: #1d3557;
    background-color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.pdf-canvas-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: auto;
    text-align: center;
}

#pdf-canvas {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .pdf-controls {
        flex-direction: column;
    }
    
    .pdf-controls .btn {
        width: 100%;
    }
    
    .page-info {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }
}

/* About Page Enhanced Styles */
.title-underline {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 4px;
    background-color: #eee;
    margin-top: 15px;
    margin-bottom: 25px;
}

.title-underline-red {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 4px;
    background-color: #e63946;
}

.border-top-accent {
    border-top: 3px solid #e63946;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(230, 57, 70, 0.1);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 2rem;
    color: #1d3557;
}

.value-card:hover .icon-circle,
.mission-box:hover .icon-circle,
.vision-box:hover .icon-circle {
    background-color: rgba(230, 57, 70, 0.2);
    transform: translateY(-5px);
}

.about-image-container {
    position: relative;
    z-index: 1;
}

.about-image-accent {
    position: absolute;
    right: -15px;
    bottom: -15px;
    width: 60%;
    height: 60%;
    border-radius: 10px;
    background-color: rgba(230, 57, 70, 0.1);
    z-index: -1;
} 