/* Pages CSS - Shared styles for About, Services, Contact, Blog pages */

/* ==================== PAGE HERO BANNER ==================== */
.page-hero {
    background:
        radial-gradient(circle at 12% 22%, rgba(239, 28, 37, 0.22) 0 180px, transparent 181px),
        radial-gradient(circle at 88% 15%, rgba(255, 255, 255, 0.08) 0 130px, transparent 131px),
        linear-gradient(135deg, #182638 0%, #243b57 45%, #742238 100%);
    position: relative;
    padding: 140px 0 100px;
    text-align: center;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(7, 11, 20, 0.2) 0%, rgba(7, 11, 20, 0.45) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    letter-spacing: 1px;
}

.page-hero .breadcrumb {
    justify-content: center;
    margin: 0;
    background: transparent;
    padding: 0;
}

.page-hero .breadcrumb-item {
    font-size: 16px;
    font-weight: 500;
}

.page-hero .breadcrumb-item a {
    color: #ffd3db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero .breadcrumb-item a:hover {
    color: #ffffff;
}

.page-hero .breadcrumb-item.active {
    color: #ffffff;
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
    content: "/";
    padding: 0 12px;
    font-weight: 400;
}

/* ==================== ABOUT PAGE ==================== */
.about-intro-section {
    padding: 80px 0;
    background: #f0f0ed;
}

.about-intro-card {
    display: flex;
    gap: 50px;
    background: #f5f5f0;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-intro-image {
    flex: 1;
    position: relative;
    align-self: flex-start;
    border-radius: 16px;
    overflow: hidden;
}

.about-intro-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

.about-intro-content {
    flex: 1;
}

.about-intro-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ef1c25;
    margin-bottom: 20px;
}

.about-intro-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-stats-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    flex: 1;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ef1c25;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: #ffffff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.mv-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ef1c25;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef1c25 0%, #c9151d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 32px;
    color: #ffffff;
}

.mv-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2428;
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* Why Choose Section - Pages */
.page-why-choose {
    padding: 80px 0;
    background: #f0f0ed;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.why-item {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-number {
    font-size: 48px;
    font-weight: 800;
    color: #ef1c25;
    opacity: 0.3;
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2428;
    margin-bottom: 12px;
}

.why-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px 20px;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2428;
    margin-bottom: 5px;
}

.team-info p {
    font-size: 14px;
    color: #ef1c25;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: #ef1c25;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #c9151d;
    transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f0f0ed;
}

.cta-card {
    background: linear-gradient(135deg, #ef1c25 0%, #c9151d 100%);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #ef1c25;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #1f2428;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==================== SERVICES PAGE ==================== */
.services-intro-section {
    padding: 60px 0 20px;
    background: #f0f0ed;
}

.main-services-section {
    padding: 40px 0 80px;
    background: #f0f0ed;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    background: #f5f5f0;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    border-radius: 16px;
}

.service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #ef1c25;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
}

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ef1c25;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.service-features li {
    font-size: 15px;
    color: #1f2428;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: #ef1c25;
    font-size: 18px;
}

.service-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ef1c25;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-btn:hover {
    background: #c9151d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(239, 28, 37, 0.35);
    color: #ffffff;
}

/* Additional Services Grid */
.additional-services-section {
    padding: 80px 0;
    background: #ffffff;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.add-service-card {
    background: #f8f9fa;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.add-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #ef1c25;
}

.add-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ef1c25 0%, #c9151d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.add-service-icon i {
    font-size: 28px;
    color: #ffffff;
}

.add-service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2428;
    margin-bottom: 12px;
}

.add-service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f0f0ed;
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.process-step {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.process-number {
    width: 50px;
    height: 50px;
    background: #ef1c25;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2428;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

.process-arrow {
    color: #ef1c25;
    font-size: 24px;
}

/* ==================== CONTACT PAGE ==================== */
.contact-info-section {
    padding: 80px 0;
    background: #f0f0ed;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-info-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #ef1c25;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ef1c25 0%, #c9151d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-icon i {
    font-size: 28px;
    color: #ffffff;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2428;
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Main Contact Section */
.main-contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
}

.contact-form-card {
    flex: 1.5;
    background: #f5f5f0;
    padding: 50px;
    border-radius: 24px;
}

.contact-form-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ef1c25;
    margin-bottom: 10px;
}

.contact-form-card>p {
    color: #555;
    margin-bottom: 30px;
}

.contact-page-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-page-form .form-group {
    flex: 1;
    margin-bottom: 20px;
}

.contact-page-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1f2428;
    margin-bottom: 8px;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-color: #ef1c25;
    box-shadow: 0 0 0 3px rgba(239, 28, 37, 0.1);
}

.captcha-row {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.captcha-input {
    flex: 1;
}

.captcha-display {
    padding: 14px 25px;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    border-radius: 10px;
    position: relative;
}

.captcha-display span {
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #333;
    font-style: italic;
}

.captcha-refresh {
    width: 50px;
    height: 50px;
    background: #ef1c25;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    background: #c9151d;
    transform: rotate(180deg);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #ef1c25;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #c9151d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(239, 28, 37, 0.35);
}

/* Contact Sidebar */
.contact-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.map-card,
.quick-contact-card,
.social-card {
    background: #f5f5f0;
    padding: 30px;
    border-radius: 16px;
}

.map-card h3,
.quick-contact-card h3,
.social-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2428;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-card h3 i,
.quick-contact-card h3 i,
.social-card h3 i {
    color: #ef1c25;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.quick-contact-item:last-child {
    border-bottom: none;
}

.quick-contact-item>i {
    width: 45px;
    height: 45px;
    background: #ef1c25;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.quick-contact-item div span {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 3px;
}

.quick-contact-item div a {
    font-size: 15px;
    font-weight: 600;
    color: #1f2428;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-contact-item div a:hover {
    color: #ef1c25;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.youtube {
    background: #ff0000;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f0f0ed;
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2428;
    margin: 0;
}

.faq-question i {
    color: #ef1c25;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ==================== BLOG PAGE ==================== */
.featured-post-section {
    padding: 80px 0;
    background: #f0f0ed;
}

.featured-post {
    display: flex;
    gap: 50px;
    background: #f5f5f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.featured-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ef1c25;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.featured-content {
    flex: 1;
    padding: 50px 50px 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.post-meta span {
    font-size: 13px;
    color: #888;
}

.post-meta span i {
    color: #ef1c25;
    margin-right: 5px;
}

.featured-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2428;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #ef1c25;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    background: #c9151d;
    transform: translateX(5px);
    color: #ffffff;
}

/* Blog Layout */
.blog-posts-section {
    padding: 80px 0;
    background: #ffffff;
}

.blog-layout {
    display: flex;
    gap: 40px;
}

.blog-main {
    flex: 2;
}

.blog-sidebar {
    flex: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.simple-blog-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Blog Card */
.blog-card {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ef1c25;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-content .post-meta {
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2428;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ef1c25;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #c9151d;
    gap: 12px;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    width: 45px;
    height: 45px;
    background: #f0f0ed;
    color: #1f2428;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: #ef1c25;
    color: #ffffff;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #f5f5f0;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2428;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ef1c25;
}

/* Search Widget */
.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.search-form button {
    width: 45px;
    background: #ef1c25;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: #c9151d;
}

/* Categories Widget */
.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget ul li {
    margin-bottom: 12px;
}

.categories-widget ul li a {
    display: flex;
    justify-content: space-between;
    color: #555;
    text-decoration: none;
    padding: 10px 15px;
    background: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.categories-widget ul li a:hover {
    background: #ef1c25;
    color: #ffffff;
}

.categories-widget ul li a span {
    color: #888;
}

.categories-widget ul li a:hover span {
    color: rgba(255, 255, 255, 0.8);
}

/* Recent Posts Widget */
.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-post div a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1f2428;
    text-decoration: none;
    margin-bottom: 5px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.recent-post div a:hover {
    color: #ef1c25;
}

.recent-post div span {
    font-size: 12px;
    color: #888;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-cloud a {
    padding: 8px 15px;
    background: #ffffff;
    color: #555;
    border-radius: 50px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tags-cloud a:hover {
    background: #ef1c25;
    color: #ffffff;
}

/* Newsletter Widget */
.newsletter-widget p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 10px;
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    background: #ef1c25;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #c9151d;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {

    .about-intro-card,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .mission-vision-grid,
    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid,
    .team-grid,
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-layout {
        flex-direction: column;
    }

    .featured-post {
        flex-direction: column;
    }

    .featured-image {
        min-height: 300px;
    }

    .featured-content {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 36px;
    }

    .about-intro-card,
    .contact-form-card,
    .service-detail-card {
        padding: 30px;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .process-grid {
        flex-wrap: wrap;
    }

    .process-arrow {
        display: none;
    }

    .simple-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 60px;
    }

    .page-hero h1 {
        font-size: 24px;
    }

    .about-intro-content h2,
    .service-detail-content h2,
    .contact-form-card h2,
    .featured-content h2 {
        font-size: 24px;
    }

    .mission-vision-grid,
    .additional-services-grid,
    .why-grid,
    .team-grid,
    .contact-info-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-page-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .captcha-row {
        flex-wrap: wrap;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .featured-content {
        padding: 30px;
    }

    .featured-content h2 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {

    .about-intro-card,
    .contact-form-card,
    .service-detail-card,
    .sidebar-widget {
        padding: 20px;
    }

    .service-detail-image img {
        min-height: 250px;
    }

    .page-hero h1 {
        font-size: 22px;
    }

    .about-intro-content h2,
    .service-detail-content h2,
    .contact-form-card h2,
    .featured-content h2 {
        font-size: 22px;
        line-height: 1.35;
    }

    .page-hero .breadcrumb-item,
    .about-intro-content p,
    .service-detail-content p,
    .contact-form-card p,
    .featured-content p,
    .blog-content p,
    .faq-answer p {
        font-size: 13px;
        line-height: 1.7;
    }
}


/* blog - deatails css start  */

.blog-detail-section {
    padding: 80px 0;
    background: #f0f0ed;
}

.blog-detail-wrapper {
    background: #f5f5f0;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.blog-detail-cover {
    position: relative;
    background: #ffffff;
}

.blog-detail-cover img {
    /* width: 100%;
    max-height: 420px;
    object-fit: cover; */
}

.blog-detail-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: #ef1c25;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.blog-detail-content {
    padding: 40px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
    color: #666;
    font-size: 13px;
}

.blog-detail-meta i {
    color: #ef1c25;
    margin-right: 6px;
}

.blog-detail-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: #1f2428;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-intro {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 24px;
}

.blog-highlight-box {
    background: #ffffff;
    border-left: 4px solid #ef1c25;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 28px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.blog-highlight-box p {
    margin: 0;
    color: #444;
    line-height: 1.8;
    font-size: 14px;
}

.blog-detail-content h2 {
    font-size: 24px;
    color: #1f2428;
    margin: 26px 0 12px;
    font-weight: 700;
}

.blog-detail-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 14px;
}

.blog-detail-content ul {
    margin: 0 0 14px;
    padding-left: 20px;
}

.blog-detail-content ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    line-height: 1.75;
}

.blog-checklist {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin-top: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-checklist h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1f2428;
    font-weight: 700;
}

.blog-checklist ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.blog-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.blog-checklist li i {
    color: #ef1c25;
    margin-top: 3px;
}

.blog-detail-cta {
    margin-top: 30px;
    background: linear-gradient(135deg, #1f2937 0%, #2f4059 45%, #8c1f33 100%);
    border-radius: 18px;
    padding: 24px;
    color: #ffffff;
}

.blog-detail-cta h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
}

.blog-detail-cta p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 16px;
}

.blog-detail-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-detail-cta-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.blog-detail-cta-actions .btn-primary-link {
    background: #ef1c25;
    color: #ffffff;
}

.blog-detail-cta-actions .btn-outline-link {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #ffffff;
}

@media (max-width: 768px) {
    .blog-detail-section {
        padding: 50px 0;
    }

    .blog-detail-content {
        padding: 22px 16px;
    }

    .blog-detail-content h1 {
        font-size: 24px;
    }

    .blog-detail-content h2 {
        font-size: 19px;
    }

    .blog-detail-meta {
        font-size: 12px;
    }

    .blog-intro,
    .blog-detail-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .blog-highlight-box p,
    .blog-detail-content ul li {
        font-size: 13px;
    }

    .blog-detail-cta h3 {
        font-size: 20px;
    }

    .blog-detail-cta-actions a {
        font-size: 13px;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .blog-detail-content {
        padding: 20px 14px;
    }

    .blog-detail-badge {
        font-size: 11px;
        padding: 7px 13px;
    }

    .blog-detail-content h1 {
        font-size: 22px;
    }

    .blog-detail-content h2 {
        font-size: 18px;
    }

    .blog-intro,
    .blog-detail-content p {
        font-size: 13px;
    }

    .blog-highlight-box p,
    .blog-detail-content ul li {
        font-size: 12.5px;
    }

    .blog-detail-cta {
        padding: 20px;
    }

    .blog-detail-cta h3 {
        font-size: 18px;
    }
}

/* blog -details css end */


/* enquiry page css start  */

.enquiry-product-section {
    padding: 80px 0;
    background: #f0f0ed;
}

.enquiry-product-card {
    background: #f5f5f0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.enquiry-product-image {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.enquiry-product-image img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
}

.enquiry-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 30px;
    background: rgba(239, 28, 37, 0.14);
    color: #ef1c25;
    margin-bottom: 12px;
}

.enquiry-product-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1f2428;
    margin-bottom: 14px;
}

.enquiry-product-content p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 18px;
}

.enquiry-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.enquiry-specs .spec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #ef1c25;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.enquiry-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enquiry-detail-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 11px;
    color: #4f5561;
    line-height: 1.65;
}

.enquiry-detail-list i {
    color: #ef1c25;
    margin-top: 3px;
}

.enquiry-highlights-section {
    padding: 0 0 80px;
    background: #f0f0ed;
}

.enquiry-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.enquiry-highlight-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.enquiry-highlight-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2428;
    margin-bottom: 12px;
}

.enquiry-highlight-card ul {
    margin: 0;
    padding-left: 18px;
    color: #555;
    line-height: 1.75;
    font-size: 14px;
}

.enquiry-cta-card {
    background: linear-gradient(135deg, #1f2937 0%, #2f4059 50%, #8c1f33 100%);
    border-radius: 20px;
    padding: 35px 28px;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(21, 29, 41, 0.35);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
}

.enquiry-cta-card h3 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
}

.enquiry-cta-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
}

.enquiry-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.enquiry-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.enquiry-cta-btn.primary {
    background: #ef1c25;
    color: #ffffff;
}

.enquiry-cta-btn.primary:hover {
    background: #d1151d;
    color: #ffffff;
}

.enquiry-cta-btn.outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
}

.enquiry-cta-btn.outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.enquiry-modal .modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.enquiry-modal .modal-dialog {
    max-width: 980px;
}

.enquiry-modal .modal-header {
    border: 0;
    padding: 18px 22px 12px;
    background: #f7f8fa;
}

.enquiry-modal .modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2428;
}

.enquiry-modal .modal-body {
    padding: 20px 22px 24px;
    background: #ffffff;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

.enquiry-modal .contact-page-form {
    display: grid;
    gap: 14px;
}

.enquiry-modal .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.enquiry-modal .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
}

.enquiry-modal .form-group input,
.enquiry-modal .form-group textarea {
    width: 100%;
    border: 1px solid #d8dce3;
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 14px;
    color: #1f2428;
    background: #ffffff;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.enquiry-modal .form-group input:focus,
.enquiry-modal .form-group textarea:focus {
    border-color: #ef1c25;
    box-shadow: 0 0 0 3px rgba(239, 28, 37, 0.12);
}

.enquiry-modal .captcha-row {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.enquiry-modal .captcha-input {
    flex: 1;
}

.enquiry-modal .captcha-display {
    min-width: 98px;
    border-radius: 10px;
    background: #f2f4f8;
    border: 1px solid #d8dce3;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #1f2428;
    padding: 0 10px;
}

.enquiry-modal .captcha-refresh {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid #d8dce3;
    background: #ffffff;
    color: #ef1c25;
    transition: all 0.25s ease;
}

.enquiry-modal .captcha-refresh:hover {
    border-color: #ef1c25;
    background: rgba(239, 28, 37, 0.08);
}

.enquiry-modal .submit-btn {
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    background: #ef1c25;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.25s ease;
}

.enquiry-modal .submit-btn:hover {
    background: #d1151d;
}

@media (max-width: 992px) {
    .enquiry-product-card {
        padding: 25px;
    }

    .enquiry-product-content h2 {
        font-size: 26px;
    }

    .enquiry-product-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .enquiry-highlight-card h3 {
        font-size: 19px;
    }

    .enquiry-cta-card h3 {
        font-size: 24px;
    }

    .enquiry-highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .enquiry-product-section {
        padding: 50px 0;
    }

    .enquiry-highlights-section {
        padding: 0 0 50px;
    }

    .enquiry-product-card {
        padding: 18px;
    }

    .enquiry-product-content h2 {
        font-size: 22px;
    }

    .enquiry-product-content p {
        font-size: 13px;
    }

    .enquiry-specs .spec {
        font-size: 12px;
        padding: 7px 12px;
    }

    .enquiry-detail-list li {
        font-size: 13px;
    }

    .enquiry-highlight-card {
        padding: 20px 16px;
    }

    .enquiry-highlight-card h3 {
        font-size: 18px;
    }

    .enquiry-highlight-card ul {
        font-size: 13px;
    }

    .enquiry-cta-card {
        padding: 24px 18px;
    }

    .enquiry-cta-card h3 {
        font-size: 20px;
    }

    .enquiry-cta-card p {
        font-size: 13px;
    }

    .enquiry-cta-btn {
        font-size: 13px;
        padding: 10px 16px;
    }

    .enquiry-modal .modal-title {
        font-size: 20px;
    }

    .enquiry-modal .form-row {
        grid-template-columns: 1fr;
    }

    .enquiry-modal .captcha-row {
        flex-wrap: wrap;
    }

    .enquiry-modal .captcha-display {
        min-width: 92px;
    }
}

@media (max-width: 767px) {
    .enquiry-modal .modal-dialog.modal-dialog-centered {
        min-height: 100%;
        align-items: stretch;
    }

    .enquiry-modal .modal-dialog {
        margin: 0;
        max-width: 100%;
        height: 100%;
    }

    .enquiry-modal .modal-content {
        border-radius: 0;
        min-height: 100vh;
    }

    .enquiry-modal .modal-header {
        padding: 16px 16px 10px;
    }

    .enquiry-modal .modal-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .enquiry-modal .modal-body {
        padding: 14px 16px 24px;
        max-height: none;
    }

    .enquiry-modal .contact-page-form {
        gap: 16px;
    }

    .enquiry-modal .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .enquiry-modal .form-group input,
    .enquiry-modal .form-group textarea {
        font-size: 16px;
        padding: 13px 14px;
        border-radius: 12px;
    }

    .enquiry-modal .captcha-display {
        height: 52px;
        min-width: 110px;
        font-size: 20px;
    }

    .enquiry-modal .captcha-refresh {
        width: 52px;
        height: 52px;
    }

    .enquiry-modal .submit-btn {
        padding: 14px 20px;
        font-size: 17px;
    }
}

/* enquiry page css end */




/* products page css send */

/* Products Intro Section */
.products-intro-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.products-intro-section .section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* Category Section Base */
.category-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.category-section:nth-child(odd) {
    background: #ffffff;
}

.category-section:nth-child(even) {
    background: #f8f9fa;
}

/* Category Header */
.category-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef1c25 0%, #c9151d 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(239, 28, 37, 0.3);
    flex-shrink: 0;
}

.category-icon i {
    font-size: 36px;
    color: #fff;
}

.category-info h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1f2428;
    margin-bottom: 8px;
}

.category-info p {
    color: #666;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(239, 28, 37, 0.15);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #eee 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    /* object-fit: contain;
    padding: 20px; */
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ef1c25;
    color: #fff;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-badge.new {
    background: linear-gradient(135deg, #ef1c25, #ff6b6b);
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #ffc107, #ffdb4d);
    color: #333;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2428;
    margin-bottom: 12px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.spec-tag {
    background: rgba(239, 28, 37, 0.1);
    color: #ef1c25;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.product-features li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed #eee;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li i {
    color: #ef1c25;
    font-size: 14px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 2px solid #f5f5f5;
}

.product-warranty {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

.product-warranty i {
    color: #ef1c25;
    font-size: 16px;
}

.product-btn {
    background: linear-gradient(135deg, #ef1c25 0%, #c9151d 100%);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(239, 28, 37, 0.3);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 28, 37, 0.4);
    color: #fff;
}

/* Category Decorative Elements */
.category-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(239, 28, 37, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Why Choose Section */
.products-why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ef1c25 0%, #c9151d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.products-why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.products-why-section .container {
    position: relative;
    z-index: 1;
}

.products-why-section .section-header h2 {
    color: #fff;
}

.products-why-section .section-label {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.why-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.why-product-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.why-product-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-8px);
}

.why-product-card i {
    font-size: 45px;
    margin-bottom: 20px;
    display: block;
}

.why-product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-product-card p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-intro-section {
        padding: 50px 0;
    }

    .category-section {
        padding: 50px 0;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .category-info h2 {
        font-size: 1.55rem;
        line-height: 1.3;
    }

    .category-info p {
        font-size: 13px;
        line-height: 1.7;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 20px 18px;
    }

    .product-content h3 {
        font-size: 1.1rem;
    }

    .product-features li {
        font-size: 13px;
    }

    .product-btn {
        font-size: 13px;
        padding: 10px 20px;
    }

    .why-product-card {
        padding: 28px 20px;
    }

    .why-product-card h3 {
        font-size: 1.05rem;
    }

    .why-product-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .category-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }

    .category-icon i {
        font-size: 28px;
    }

    .category-info h2 {
        font-size: 1.35rem;
    }

    .category-info p {
        font-size: 12.5px;
    }

    .product-content h3 {
        font-size: 1rem;
    }

    .product-features li {
        font-size: 12.5px;
    }

    .spec-tag,
    .product-badge {
        font-size: 11px;
    }

    .product-warranty {
        font-size: 12px;
    }

    .product-btn {
        font-size: 12px;
        padding: 10px 16px;
    }
}
/* products page css send */