/* 
 * About Us Page Styles
 * Matches the Royal Blue & Warm Orange theme
 */

/* Page Header */
.page-header {
    background-color: var(--light-gray);
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header .page-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header .page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section.bg-light {
    background-color: var(--light-gray);
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
    position: relative;
}

.section-tagline {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-divider {
    height: 3px;
    width: 60px;
    background: var(--primary-blue);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Image Styling */
.about-image-wrapper {
    position: relative;
    padding: 0 20px 20px 0;
    margin-bottom: 40px;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 70%;
    border-right: 3px solid var(--primary-blue);
    border-bottom: 3px solid var(--primary-blue);
    z-index: 0;
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    max-height: 400px;
    width: 100%;
    z-index: 1;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
}

.about-image-container:hover .about-image {
    transform: scale(1.03);
}

.image-badge {
    position: absolute;
    right: 0;
    top: 20px;
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 0 0 0 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

/* About Content */
.about-content {
    padding-left: 40px;
}

.company-name {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.company-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-orange);
}

.about-content .lead {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.6;
}

.about-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Key Features */
.key-features {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: var(--secondary-orange);
    font-size: 16px;
    margin-right: 12px;
    margin-top: 3px;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

/* Stats Section */
.stats-section {
    margin-top: 60px;
    padding-top: 40px;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-blue);
}

.stats-section .row {
    justify-content: center;
}

.stat-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.stat-icon {
    font-size: 2rem;
    color: var(--secondary-orange);
    margin-bottom: 20px;
    display: block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: var(--secondary-orange);
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    display: block;
    font-weight: 500;
}

/* Vision Section */
.vision-section .section-header {
    margin-bottom: 40px;
}

.vision-quote {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.vision-quote blockquote {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    border-left: 3px solid var(--primary-blue);
    padding-left: 25px;
    text-align: left;
}

/* Styles for value, team, and testimonial sections have been removed as they are no longer in use on this page. */

/* Product Offerings Section */
/* Product Catalogue Section */
.product-catalogue {
    position: relative;
    background-color: var(--light-gray);
}

.product-catalogue::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    height: 300px;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.product-catalogue::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 200px;
    background: radial-gradient(circle at center, rgba(30, 64, 175, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.product-categories {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.product-category {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    padding: 0;
    overflow: hidden;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-header {
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.domestic .category-icon {
    background-color: rgba(30, 64, 175, 0.1);
    color: var(--primary-blue);
}

.international .category-icon {
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--secondary-orange);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.domestic .category-title {
    color: var(--primary-blue);
}

.international .category-title {
    color: var(--secondary-orange);
}

.category-indicator {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 500;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: var(--light-gray);
}

.product-list {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.product-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-item:hover {
    background-color: rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.domestic .product-item:hover i {
    color: var(--primary-blue);
}

.international .product-item:hover i {
    color: var(--secondary-orange);
}

.product-item i {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-right: 10px;
    transition: color 0.3s ease;
}

.product-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.explore-products {
    margin-top: 40px;
}

.explore-btn {
    font-size: 1.05rem;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
}

.explore-btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
}

.explore-btn:hover i {
    transform: translateX(3px);
}

/* Contact Section Styles */
.contact-section {
    position: relative;
    background-color: #f9fafb;
    overflow: hidden;
}

.contact-bg-element {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.03) 0%, rgba(249, 115, 22, 0.05) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.contact-content {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

/* Contact Info Panel */
.contact-info-panel {
    background-color: var(--primary-blue);
    border-radius: 12px;
    padding: 40px 30px;
    color: white;
    height: 100%;
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
}

.contact-info-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.contact-info-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-info-list {
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.icon-container {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.icon-container i {
    font-size: 1.2rem;
    color: white;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.info-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.5;
}

.info-content a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: white;
    text-decoration: underline;
}

.business-hours {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
}

.business-hours h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
    display: flex;
    align-items: center;
}

.business-hours h4 i {
    margin-right: 8px;
}

.business-hours p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 5px;
}

/* Quick Contact Panel */
.quick-contact-panel {
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quick-contact-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.quick-contact-header p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #f9fafb;
    border: 1px solid var(--border-color);
}

.contact-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-action-btn:hover .arrow {
    transform: translateX(5px);
}

.contact-action-btn.enquiry:hover {
    border-color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.05);
}

.contact-action-btn.application:hover {
    border-color: var(--secondary-orange);
    background-color: rgba(249, 115, 22, 0.05);
}

.contact-action-btn.callback:hover {
    border-color: #10b981;
    background-color: rgba(16, 185, 129, 0.05);
}

.action-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.enquiry .action-icon {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.application .action-icon {
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--secondary-orange);
}

.callback .action-icon {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.action-content {
    flex-grow: 1;
}

.action-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.action-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.arrow {
    font-size: 1.1rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.social-connect {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.social-connect h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.2);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
}

.cta-box {
    background: var(--primary-blue);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .about-title {
        font-size: 3rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .vision-quote blockquote {
        font-size: 1.3rem;
    }
}

@media (max-width: 1199px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        padding-left: 20px;
    }
    
    .company-name {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 1199px) {
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-hero {
        padding: 70px 0 50px;
    }
    
    .product-list {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 1199px) {
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-hero {
        padding: 70px 0 50px;
    }
    
    .product-list {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    /* Contact Section Responsive Styles */
    .contact-info-panel {
        padding: 30px 25px;
    }
    
    .quick-contact-panel {
        padding: 30px 25px;
    }
    
    .contact-info-header h3,
    .quick-contact-header h3 {
        font-size: 1.6rem;
    }
    
    .contact-action-btn {
        padding: 15px;
    }
}

@media (max-width: 991px) {
    .section {
        padding: 70px 0;
    }
    
    .about-hero {
        padding: 70px 0 50px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-image-wrapper {
        padding: 0 15px 15px 0;
        margin-bottom: 30px;
    }
    
    .about-image-wrapper::after {
        width: 60%;
        height: 60%;
    }
    
    .about-image-container {
        max-height: 350px;
    }
    
    .image-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 0;
    }
    
    .company-name {
        margin-bottom: 15px;
        font-size: 1.3rem;
    }
    
    .about-content .lead {
        font-size: 1.1rem;
    }
    
    .key-features {
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .feature-item {
        margin-bottom: 12px;
    }
    
    .product-categories {
        margin-top: 40px;
    }
    
    .product-list {
        grid-template-columns: 1fr 1fr;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .explore-products {
        margin-top: 30px;
    }
    
    /* Contact Section Tablet Styles */
    .contact-content {
        margin-top: 30px;
    }
    
    .contact-info-panel {
        margin-bottom: 30px;
        min-height: 300px;
    }
    
    .contact-bg-element {
        width: 30%;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
    
    .action-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .about-hero {
        padding: 50px 0 30px;
        text-align: center;
    }
    
    .about-image-wrapper {
        padding: 0 10px 10px 0;
        margin: 0 auto 30px;
        max-width: 90%;
    }
    
    .about-image-container {
        max-height: 300px;
    }
    
    .image-badge {
        top: 10px;
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .about-content {
        text-align: center;
        padding-left: 0;
        margin-top: 0;
    }
    
    .company-name {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }
    
    .company-name::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-content .lead {
        font-size: 1.05rem;
        margin-bottom: 15px;
    }
    
    .key-features {
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .feature-item {
        justify-content: center;
        text-align: left;
        margin-bottom: 15px;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Contact Section Mobile Styles */
    .contact-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .contact-bg-element {
        width: 50%;
        clip-path: polygon(50% 0, 100% 0, 100% 100%, 20% 100%);
    }
    
    .contact-content {
        margin-top: 30px;
    }
    
    .contact-info-panel {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .contact-info-header h3,
    .quick-contact-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-info-header p,
    .quick-contact-header p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .info-item {
        margin-bottom: 15px;
    }
    
    .icon-container {
        width: 40px;
        height: 40px;
    }
    
    .info-content h4 {
        font-size: 1rem;
    }
    
    .info-content p,
    .info-content a {
        font-size: 0.9rem;
    }
    
    .business-hours {
        padding-top: 20px;
        margin-top: 15px;
    }
    
    .business-hours h4 {
        font-size: 1rem;
    }
    
    .business-hours p {
        font-size: 0.85rem;
    }
    
    .quick-contact-panel {
        padding: 30px 20px;
    }
    
    .contact-action-btn {
        padding: 15px;
    }
    
    .action-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .action-content h4 {
        font-size: 1rem;
    }
    
    .action-content p {
        font-size: 0.85rem;
    }
    
    .social-connect h4 {
        font-size: 1rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    /* Other Mobile Styles */
    .product-catalogue::before,
    .product-catalogue::after {
        display: none;
    }
    
    .product-categories {
        margin-top: 30px;
    }
    
    .product-category {
        margin-bottom: 25px;
    }
    
    .category-header {
        padding: 20px;
    }
    
    .category-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .category-indicator {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
    
    .product-list {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 12px;
    }
    
    .product-item {
        padding: 10px 12px;
    }
    
    .explore-products {
        margin-top: 20px;
    }
    
    .explore-btn {
        font-size: 1rem;
        padding: 10px 25px;
    }
    
    .stats-section {
        margin-top: 40px;
        padding-top: 30px;
        text-align: center;
    }
    
    .stat-card {
        max-width: 280px;
        margin: 0 auto 20px;
        padding: 25px 15px;
    }
    
    .vision-quote blockquote {
        font-size: 1.1rem;
        padding-left: 15px;
    }
}

@media (max-width: 575px) {
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-divider {
        margin-bottom: 15px;
        width: 40px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Contact Section Small Screen Styles */
    .contact-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .contact-bg-element {
        display: none;
    }
    
    .contact-content {
        margin-top: 25px;
    }
    
    .contact-info-panel {
        padding: 25px 20px;
    }
    
    .contact-info-header h3,
    .quick-contact-header h3 {
        font-size: 1.4rem;
    }
    
    .contact-info-header p,
    .quick-contact-header p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .info-item {
        margin-bottom: 12px;
    }
    
    .icon-container {
        width: 35px;
        height: 35px;
    }
    
    .icon-container i {
        font-size: 1rem;
    }
    
    .info-content h4 {
        font-size: 0.95rem;
    }
    
    .info-content p,
    .info-content a {
        font-size: 0.85rem;
    }
    
    .business-hours {
        padding-top: 15px;
        margin-top: 10px;
    }
    
    .business-hours h4 {
        font-size: 0.95rem;
    }
    
    .business-hours p {
        font-size: 0.8rem;
    }
    
    .quick-contact-panel {
        padding: 25px 15px;
    }
    
    .contact-action-btn {
        padding: 12px;
    }
    
    .action-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .action-content h4 {
        font-size: 0.95rem;
    }
    
    .action-content p {
        font-size: 0.8rem;
    }
    
    .social-connect {
        padding-top: 15px;
    }
    
    .social-connect h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    /* Other Small Screen Styles */
    .about-image-wrapper {
        padding: 0 5px 5px 0;
        margin: 0 auto 25px;
        max-width: 100%;
    }
    
    .about-image-wrapper::after {
        width: 50%;
        height: 50%;
        border-width: 2px;
    }
    
    .about-image-container {
        max-height: 250px;
    }
    
    .image-badge {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .company-name {
        font-size: 1.15rem;
    }
    
    .about-content .lead {
        font-size: 1rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .key-features {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .feature-item {
        max-width: 100%;
        margin-bottom: 12px;
    }
    
    .feature-item span {
        font-size: 0.95rem;
    }
    
    .product-category {
        margin-bottom: 20px;
    }
    
    .category-header {
        padding: 15px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .category-title {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }
    
    .category-indicator {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .product-list {
        padding: 15px;
        gap: 10px;
    }
    
    .product-item {
        padding: 8px 10px;
    }
    
    .product-item i {
        font-size: 1rem;
    }
    
    .product-item span {
        font-size: 0.9rem;
    }
    
    .explore-products {
        margin-top: 15px;
    }
    
    .explore-btn {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
    
    .stats-section {
        margin-top: 30px;
        padding-top: 25px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-icon {
        height: 40px;
        width: 40px;
        line-height: 40px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .vision-quote {
        padding: 20px 15px;
    }
    
    .vision-quote blockquote {
        font-size: 0.95rem;
        padding-left: 10px;
    }
}

/* CSS Grid Row/Column Fallbacks */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
}

.text-center {
    text-align: center;
}

.justify-content-center {
    justify-content: center;
}

.who-we-are .row {
    align-items: center;
}

.text-left {
    text-align: left;
}

@media (max-width: 992px) {
    .col-lg-8, .col-lg-4, .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .text-lg-right {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
