/* ----------------------------------------------------------------------------------------
 * Project       : TPP Boilers Pvt Ltd Redesign
 * File          : Custom CSS Overrides
 * Description   : Overrides theme colors to match TPP's original Cyan Brand Color (#009eb6)
 * ---------------------------------------------------------------------------------------- */

:root {
    /* Adjusted to TPP Boilers Original Cyan Brand Color Scheme */
    --primary-color         : #072125; /* Dark Slate Cyan */
    --secondary-color       : #F2F1ED; /* Warm Light Gray/Cream */
    --text-color            : #212529; /* Muted Slate Gray */
    --accent-color          : #009eb6; /* Original Brand Cyan */
    --dark-color            : #006778; /* Medium Teal/Cyan */
    --white-color           : #FFFFFF;
    --divider-color         : #DFE1DE; /* Soft Gray Divider */
    --dark-divider-color    : rgba(255, 255, 255, 0.15);
    --error-color           : rgb(230, 87, 87);
}

/* Base Adjustments */
body {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

/* Make logo visible on dark header backgrounds and match brand primary/accent colors */
header.main-header .navbar-brand img {
    filter: invert(1) hue-rotate(180deg);
    transition: filter 0.3s ease;
}

/* Glassmorphism & Modern Styling for Sticky Header */
header.main-header .header-sticky.active {
    background: rgba(7, 33, 37, 0.90) !important; /* Dark Slate Cyan transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Add custom industrial badges and text glow */
.section-title h1 span, 
.section-title h2 span {
    background-image: linear-gradient(135deg, var(--accent-color) 0%, var(--dark-color) 100%) !important;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 158, 182, 0.1);
}

/* Custom Scrollbar for Premium Look */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--primary-color);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
    border: 2px solid var(--primary-color);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--dark-color);
}

/* Highlighted button overlays */
.btn-default.btn-highlighted {
    border: 1px solid rgba(7, 33, 37, 0.15);
}

/* Modern Card and Item shadows */
.service-item, .how-work-item, .blog-item, .pricing-box, .testimonial-item {
    border-radius: 20px !important;
    background: var(--white-color);
    box-shadow: 0 10px 30px -10px rgba(7, 33, 37, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(7, 33, 37, 0.03) !important;
}

.service-item:hover, .how-work-item:hover, .blog-item:hover, .pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 158, 182, 0.12) !important; /* Glowing Cyan shadow */
    border-color: rgba(0, 158, 182, 0.2) !important;
}

/* Icon box glowing effect */
.icon-box {
    background: rgba(0, 158, 182, 0.05) !important; /* Cyan tint */
    border-radius: 16px !important;
    border: 1px solid rgba(0, 158, 182, 0.1) !important;
    transition: all 0.3s ease;
}

.service-item:hover .icon-box {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

.service-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

/* Custom footer background tweaks */
.main-footer {
    background: #011013 !important; /* Ultra-dark Slate Cyan */
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

@media (min-width: 768px) {
    .footer-copyright .footer-col-40 {
        flex: 0 0 40% !important;
        max-width: 40% !important;
        width: 40% !important;
    }
    .footer-copyright .footer-col-60 {
        flex: 0 0 60% !important;
        max-width: 60% !important;
        width: 60% !important;
    }
}

/* Page Preloader Branding Adjustments */
.preloader .loading-container {
    width: 180px;
    height: 180px;
}
.preloader .loading {
    width: 180px;
    height: 180px;
}
#loading-icon {
    max-width: 100px !important;
}
#loading-icon img {
    filter: invert(1) hue-rotate(180deg);
    width: 100%;
    height: auto;
}

/* Center the main menu navigation links */
.main-menu .nav-menu-wrapper {
    display: flex !important;
    justify-content: center !important;
    margin-left: 0 !important;
    flex: 1 !important;
}

.main-menu .nav-menu-wrapper > ul {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Hero Slider Readability Overlay Overrides */
.hero.hero-slider-layout .hero-slide::before {
    background: linear-gradient(90deg, rgba(7, 33, 37, 0.85) 0%, rgba(7, 33, 37, 0.40) 55%, rgba(7, 33, 37, 0.15) 100%),
                linear-gradient(180deg, rgba(7, 33, 37, 0) 65%, var(--primary-color) 100%) !important;
}

.hero-slide .hero-section .hero-content .section-title h3,
.hero-slide .hero-section .hero-content .section-title h1,
.hero-slide .hero-section .hero-content .section-title p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* Service Section Product Background & Parallax Overlay */
.our-service {
    background: linear-gradient(180deg, rgba(7, 33, 37, 0.94) 0%, rgba(7, 33, 37, 0.90) 100%), 
                url('../images/service-bg-product.jpg') no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
}

/* Service Item Product Background & Light Shade Overlay Override */
.service-item {
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    padding: 35px 30px !important;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(7, 33, 37, 0.1) !important;
    z-index: 1;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px -10px rgba(7, 33, 37, 0.05) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 158, 182, 0.12) !important;
}

.service-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.65) !important; /* Lighter shade on top of background image (20% more image visibility) */
    z-index: -1;
    transition: background 0.3s ease;
}

.service-item:hover::before {
    background: rgba(255, 255, 255, 0.72) !important; /* Mute image slightly more on hover for text clarity */
}

.service-item-content {
    width: 100%;
    z-index: 2;
    padding: 0 !important; /* Clean up padding since container handles it */
}

.service-item-content h3 a {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 22px;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.service-item:hover .service-item-content h3 a {
    color: var(--accent-color) !important;
}

.service-item-content p {
    color: #333333 !important; /* Muted dark gray for text visibility */
    font-size: 15px;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Ensure Our Expertise images are proper circles and use cover aspect ratio */
.expertise-image figure,
.expertise-image img {
    width: 75px !important;
    height: 75px !important;
    max-width: 75px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
}

.expertise-image img {
    object-fit: cover !important;
}

@media (max-width: 991px) {
    .expertise-image figure,
    .expertise-image img {
        width: 60px !important;
        height: 60px !important;
        max-width: 60px !important;
    }
}

@media (max-width: 767px) {
    .expertise-image figure,
    .expertise-image img {
        width: 40px !important;
        height: 40px !important;
        max-width: 40px !important;
    }
}

/* How We Work Section & Cards Overrides */
.how-work-item {
    padding: 35px 30px !important;
    background: var(--white-color) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px -10px rgba(7, 33, 37, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(7, 33, 37, 0.05) !important;
    display: flex;
    flex-direction: column;
}

.how-work-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px -15px rgba(0, 158, 182, 0.12) !important;
    border-color: rgba(0, 158, 182, 0.2) !important;
}

.how-work-item .icon-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--dark-color) 100%) !important;
    border-radius: 50% !important;
    border: none !important;
    width: 70px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 158, 182, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.how-work-item:hover .icon-box {
    transform: rotate(360deg) scale(1.08) !important;
    box-shadow: 0 6px 20px rgba(0, 158, 182, 0.3) !important;
}

.how-work-item .icon-box img {
    filter: brightness(0) invert(1) !important;
    max-width: 32px !important;
    height: auto !important;
}

.how-work-item .icon-box i {
    color: var(--white-color) !important;
    font-size: 26px !important;
    transition: all 0.3s ease !important;
}


.how-work-content {
    border-top: 1px solid var(--divider-color) !important;
    padding-top: 25px !important;
    margin-top: 25px !important;
    transition: border-color 0.3s ease !important;
}

.how-work-item:hover .how-work-content {
    border-color: rgba(0, 158, 182, 0.25) !important;
}

.how-work-content h3 {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    margin-bottom: 12px !important;
}

.how-work-content h3 span {
    color: var(--accent-color) !important;
    font-weight: 700 !important;
    margin-right: 5px !important;
}

.how-work-content p {
    color: var(--text-color) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

@media (max-width: 991px) {
    .how-work-content h3 {
        font-size: 18px !important;
    }
}

@media (max-width: 767px) {
    .how-work-item .icon-box {
        width: 60px !important;
        height: 60px !important;
    }
    .how-work-item .icon-box img {
        max-width: 28px !important;
    }
    .how-work-item .icon-box i {
        font-size: 22px !important;
    }

    .how-work-content h3 {
        font-size: 18px !important;
    }
    .how-work-item {
        padding: 30px 25px !important;
    }
}

/* Client Page Logos Styling */
.client-logo-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 200px !important;
    max-width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    margin: 0 auto !important;
    background-color: #ffffff !important;
    border: 1px solid #bce3eb !important; /* 1px light blue border */
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(7, 33, 37, 0.02) !important;
    overflow: hidden !important;
}

/* Old logo styling - 0 padding so the native image fills the card and borders overlap */
.client-logo-box.old-logo {
    padding: 0 !important;
}

.client-logo-box.old-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* New logo styling - has padding so transparent logos look perfect inside the card */
.client-logo-box.new-logo {
    padding: 15px !important;
}

.client-logo-box.new-logo img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.client-logo-box:hover {
    border-color: var(--accent-color) !important; /* Glow to brand cyan on hover */
    box-shadow: 0 8px 20px rgba(0, 158, 182, 0.15) !important;
    transform: translateY(-3px) !important;
}

/* Product Gallery Slider Styling */
.product-gallery-slider {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 12px;
}

.product-gallery-slider .swiper {
    width: 100%;
    height: auto;
}

.product-gallery-slider .gallery-image img {
    width: 100%;
    height: 450px !important; /* Fixed height for uniform presentation */
    object-fit: cover !important;
    border-radius: 12px;
}

/* Customise Swiper Navigation buttons for TPP theme */
.product-gallery-slider .swiper-button-next,
.product-gallery-slider .swiper-button-prev {
    color: #ffffff !important;
    background-color: rgba(0, 158, 182, 0.8) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.product-gallery-slider .swiper-button-next::after,
.product-gallery-slider .swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold !important;
}

.product-gallery-slider .swiper-button-next:hover,
.product-gallery-slider .swiper-button-prev:hover {
    background-color: var(--primary-color) !important;
    transform: scale(1.05);
}

.product-gallery-slider .swiper-pagination-bullet-active {
    background: var(--accent-color) !important;
}

@media (max-width: 767px) {
    .product-gallery-slider .gallery-image img {
        height: 280px !important; /* Smaller on mobile devices */
    }
    .product-gallery-slider .swiper-button-next,
    .product-gallery-slider .swiper-button-prev {
        width: 36px !important;
        height: 36px !important;
    }
    .product-gallery-slider .swiper-button-next::after,
    .product-gallery-slider .swiper-button-prev::after {
        font-size: 14px !important;
    }
}

/* ==========================================================================
   Supplier Registration Form Styling (Modern Industrial UI)
   ========================================================================== */

.supplier-form-wrapper {
    margin-top: 10px;
}

.supplier-intro-card {
    background: linear-gradient(135deg, rgba(1, 146, 151, 0.08) 0%, rgba(4, 42, 45, 0.03) 100%);
    border: 1px solid rgba(1, 146, 151, 0.2);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 30px;
}

.supplier-intro-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.supplier-intro-card p {
    font-size: 15px;
    color: #475569;
    margin-bottom: 14px;
    line-height: 1.6;
}

.supplier-mandatory-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.supplier-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(4, 42, 45, 0.05);
    margin-bottom: 30px;
}

.form-section-block {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #edf2f7;
}

.form-section-block:last-of-type {
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.form-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.form-section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #019297, #042A2D);
    color: #ffffff;
    border-radius: 10px;
    font-size: 16px;
    margin-right: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(1, 146, 151, 0.25);
}

.form-section-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.2px;
}

.supplier-form-card .form-group {
    margin-bottom: 20px;
}

.supplier-form-card .form-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.supplier-form-card .form-label .required-star {
    color: #e11d48;
    font-size: 15px;
    margin-left: 3px;
}

.supplier-form-card .form-label .form-hint {
    font-size: 11px;
    font-weight: 400;
    color: #64748b;
    text-transform: none;
    letter-spacing: normal;
}

.supplier-form-card .form-control,
.supplier-form-card .form-select {
    width: 100%;
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 11px 15px;
    font-size: 14.5px;
    font-weight: 500;
    color: #0f172a;
    transition: all 0.25s ease-in-out;
    box-shadow: none;
}

.supplier-form-card .form-control:focus,
.supplier-form-card .form-select:focus {
    background-color: #ffffff;
    border-color: #019297;
    box-shadow: 0 0 0 4px rgba(1, 146, 151, 0.15);
    outline: none;
}

.supplier-form-card .form-control::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.supplier-form-card textarea.form-control {
    min-height: 95px;
    resize: vertical;
}

/* Custom Upload Zone */
.custom-file-upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 26px 20px;
    text-align: center;
    background: #f8fafc;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
}

.custom-file-upload-box:hover,
.custom-file-upload-box.dragover {
    border-color: #019297;
    background: #f0fdfa;
}

.custom-file-upload-box input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 32px;
    color: #019297;
    margin-bottom: 8px;
    display: inline-block;
}

.file-upload-text {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.file-upload-subtext {
    font-size: 12px;
    color: #64748b;
}

.file-selected-name {
    display: none;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #019297;
    background: #e6fffa;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Action Buttons */
.supplier-form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-reset-custom {
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-reset-custom:hover {
    background: #e2e8f0;
    color: #1e293b;
    border-color: #94a3b8;
}

/* Alert response styling */
.supplier-status-alert {
    display: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 500;
    margin-top: 20px;
    align-items: center;
    gap: 12px;
}

.supplier-status-alert.alert-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.supplier-status-alert.alert-danger {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

@media (max-width: 767px) {
    .supplier-form-card {
        padding: 22px 18px;
    }
    .supplier-intro-card {
        padding: 18px 16px;
    }
    .supplier-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .supplier-form-actions button {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Our Main Mission Section Redesign (USP, Motto, Logo & Core Specialization)
   ========================================================================== */
.our-main-mission-section {
    padding: 90px 0;
    background-color: var(--secondary-color);
    position: relative;
}

.mission-statement-hero-box {
    background: linear-gradient(135deg, #072125 0%, #0c333a 100%);
    border-radius: 20px;
    padding: 40px 45px;
    margin-bottom: 45px;
    box-shadow: 0 15px 35px rgba(7, 33, 37, 0.15);
    border: 1px solid rgba(0, 158, 182, 0.3);
    position: relative;
    overflow: hidden;
}

.mission-statement-hero-box::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    bottom: -15px;
    font-size: 140px;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.mission-statement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.mission-lead-text {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.65;
    color: #ffffff;
    margin-bottom: 16px;
}

.mission-sub-text {
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.mission-pillar-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(7, 33, 37, 0.08);
    box-shadow: 0 10px 30px -10px rgba(7, 33, 37, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--dark-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(0, 158, 182, 0.18);
    border-color: rgba(0, 158, 182, 0.3);
}

.mission-pillar-card:hover::before {
    opacity: 1;
}

.mission-card-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--dark-color) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(0, 158, 182, 0.25);
    transition: transform 0.35s ease;
}

.mission-pillar-card:hover .mission-card-icon {
    transform: scale(1.08) rotate(6deg);
}

.mission-badge {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent-color);
    background: rgba(0, 158, 182, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 158, 182, 0.15);
    align-self: flex-start;
}

.mission-pillar-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.mission-quote-box {
    position: relative;
    padding: 16px 18px;
    background: rgba(7, 33, 37, 0.025);
    border-left: 3.5px solid var(--accent-color);
    border-radius: 0 12px 12px 0;
    margin-bottom: 16px;
}

.mission-quote-box p {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--primary-color);
    margin: 0;
}

.mission-tagline {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.mission-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: #4b5563;
    margin-bottom: 0;
}

.mission-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px dashed rgba(7, 33, 37, 0.12);
}

.mission-tag-item {
    font-size: 11.5px;
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 3px 9px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.mission-tag-item i {
    color: var(--accent-color);
    font-size: 10px;
}

@media (max-width: 991px) {
    .our-main-mission-section {
        padding: 60px 0;
    }
    .mission-pillar-card {
        padding: 30px 22px;
    }
}

/* ==========================================================================
   Contact Page Redesign Styles
   ========================================================================== */
.contact-address-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 26px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(7, 33, 37, 0.06);
    border: 1px solid #eef2f6;
    border-left: 5px solid var(--accent-color);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.contact-address-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 158, 182, 0.12);
    border-color: rgba(0, 158, 182, 0.3);
}

.contact-address-card.factory-card {
    border-left-color: #f59e0b;
}

.contact-address-card.factory-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 16px 36px rgba(245, 158, 11, 0.12);
}

.contact-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
}

.contact-card-title-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 158, 182, 0.12), rgba(7, 33, 37, 0.06));
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-address-card.factory-card .contact-card-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(7, 33, 37, 0.06));
    color: #f59e0b;
}

.contact-card-badge {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 30px;
}

.badge-ho {
    background: rgba(0, 158, 182, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(0, 158, 182, 0.25);
}

.badge-factory {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-list li i {
    font-size: 16px;
    color: var(--accent-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-address-card.factory-card .contact-info-list li i {
    color: #f59e0b;
}

.contact-quick-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px dashed #e2e8f0;
}

.contact-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.contact-pill-primary {
    background: #072125;
    color: #ffffff;
}

.contact-pill-primary:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-pill-outline {
    background: #f8fafc;
    color: #334155;
    border: 1px solid #cbd5e1;
}

.contact-pill-outline:hover {
    background: #ffffff;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-form-container {
    background: #ffffff;
    border-radius: 14px;
    padding: 36px 32px;
    box-shadow: 0 12px 35px rgba(7, 33, 37, 0.08);
    border: 1px solid #e2e8f0;
    border-top: 5px solid var(--accent-color);
}

.contact-form-container .form-label {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}

.contact-form-container .form-control,
.contact-form-container .form-select {
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #1e293b;
    transition: all 0.25s ease;
}

.contact-form-container .form-control:focus,
.contact-form-container .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 158, 182, 0.15);
}

.contact-map-tab-btn {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    transition: all 0.25s ease;
}

.contact-map-tab-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 158, 182, 0.25);
}


