/* About Page Styles */

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    overflow: hidden;
    padding: 100px 0;
    margin-top: 70px;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 65, 63, 0.8) 0%, rgba(44, 62, 80, 0.9) 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

/* Two Column Layout */
.about-hero .hero-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    color: white;
}

/* Left Column - Content */
.about-hero .hero-content-left {
    padding-right: 20px;
}

.about-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.about-hero .hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.about-hero .hero-subtitle {
    font-size: 22px;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 500;
    line-height: 1.4;
}

.about-hero .hero-description {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 550px;
}

/* Right Column - Stats Grid */
.about-hero .hero-stats-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-hero .stat-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.about-hero .stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-hero .stat-item h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.about-hero .stat-item p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Company Overview */
.company-overview {
    padding: 100px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.overview-content .lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.overview-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.overview-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D3413F 0%, #A02E2C 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Overview Images Section */
.overview-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-overview-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.main-overview-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(211, 65, 63, 0.2);
}

.main-overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.main-overview-image .image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #D3413F 0%, #F97316 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(211, 65, 63, 0.4);
    z-index: 10;
}

.overview-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.small-overview-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.small-overview-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(211, 65, 63, 0.15);
}

.small-overview-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.small-overview-image .small-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #D3413F;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    font-size: 60px;
    margin-bottom: 25px;
}

.mv-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.mv-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.why-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: #D3413F;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(211, 65, 63, 0.15);
}

.why-number {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D3413F 0%, #A02E2C 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(211, 65, 63, 0.3);
}

.why-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Our Process */
.our-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.our-process .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.our-process .section-subtitle,
.our-process .section-title,
.our-process .section-description {
    color: white;
}

.our-process .title-underline {
    background: white;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Add arrow after each step except last */
.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -30px;
    top: 30px;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: bold;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D3413F 0%, #A02E2C 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(211, 65, 63, 0.4);
    border: 5px solid #2c3e50;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(211, 65, 63, 0.6);
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.step-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
    background: white;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.leader-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid #e9ecef;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(211, 65, 63, 0.2);
    border-color: #D3413F;
}

.leader-image {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 50px 30px 30px;
    text-align: center;
}

.leader-avatar {
    margin: 0 auto 20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.leader-avatar svg {
    width: 100%;
    height: 100%;
}

.leader-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D3413F 0%, #A02E2C 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(211, 65, 63, 0.4);
}

.leader-badge.ceo {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

.leader-info {
    padding: 40px 30px;
}

.leader-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.leader-title {
    font-size: 16px;
    color: #D3413F;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.leader-bio {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.leader-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-link:hover {
    background: linear-gradient(135deg, #D3413F 0%, #A02E2C 100%);
    color: white;
    transform: translateX(5px);
    border-color: #D3413F;
}

.contact-link svg {
    flex-shrink: 0;
}

/* Our Team */
.our-team {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-stat {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.team-stat:hover {
    background: linear-gradient(135deg, #D3413F 0%, #A02E2C 100%);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(211, 65, 63, 0.3);
}

.team-stat:hover .stat-icon,
.team-stat:hover h3,
.team-stat:hover p {
    color: white;
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.team-stat h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.team-stat p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    transition: all 0.3s ease;
}

/* Map Section Styling */
.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-map {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-map .section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2c3e50;
}

.contact-map .title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #D3413F 0%, #ff6b6b 100%);
    margin: 0 auto 50px;
    border-radius: 2px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(211, 65, 63, 0.1);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.map-container:hover {
    box-shadow: 0 20px 60px rgba(211, 65, 63, 0.25);
    transform: translateY(-5px);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Get Directions Button */
.map-directions {
    text-align: center;
    margin-bottom: 40px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #D3413F 0%, #ff6b6b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(211, 65, 63, 0.3);
    border: none;
}

.directions-btn .btn-icon {
    font-size: 20px;
}

.directions-btn .btn-arrow {
    font-size: 20px;
    transition: transform 0.4s ease;
}

.directions-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(211, 65, 63, 0.4);
}

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

.directions-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Location Info Cards */
.location-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.location-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.location-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #D3413F 0%, #ff6b6b 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.location-item:hover::before {
    transform: scaleY(1);
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(211, 65, 63, 0.2);
    border-color: rgba(211, 65, 63, 0.2);
}

.location-icon {
    font-size: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-item:hover .location-icon {
    transform: scale(1.15) rotate(5deg);
}

.location-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-text p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* CTA Section Styling - Modern Design */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #D3413F 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
    opacity: 0.3;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 45px;
    opacity: 0.95;
    color: white;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* Primary CTA Button - White */
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 45px;
    background: white;
    color: #D3413F;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(211, 65, 63, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.cta-btn-primary:hover::before {
    width: 500px;
    height: 500px;
}

.cta-btn-primary .btn-icon,
.cta-btn-primary .btn-text {
    position: relative;
    z-index: 1;
}

.cta-btn-primary .btn-icon {
    font-size: 22px;
}

.cta-btn-primary:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    color: #D3413F;
}

.cta-btn-primary:active {
    transform: translateY(-4px) scale(1.04);
}

/* Secondary CTA Button - Outline */
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary .btn-icon {
    font-size: 22px;
}

.cta-btn-secondary:hover {
    background: white;
    color: #D3413F;
    border-color: white;
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.4);
}

.cta-btn-secondary:active {
    transform: translateY(-4px) scale(1.04);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .overview-grid {
        gap: 60px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        flex-wrap: wrap;
    }

    .process-step {
        flex-basis: calc(50% - 15px);
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 20px 60px 20px;
        margin-top: 70px;
    }

    .about-hero .hero-title {
        font-size: 36px;
    }

    .about-hero .hero-subtitle {
        font-size: 16px;
    }

    /* Stack columns on tablet */
    .about-hero .hero-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero .hero-content-left {
        padding-right: 0;
        text-align: center;
    }

    .about-hero .hero-description {
        max-width: 100%;
    }

    .about-hero .hero-stats-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .overview-images {
        order: -1;
    }

    .main-overview-image img {
        height: 280px;
    }

    .small-overview-image img {
        height: 160px;
    }

    .overview-image-grid {
        gap: 15px;
    }

    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mv-card {
        padding: 35px 25px;
    }

    .mv-card p {
        font-size: 14px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-card {
        padding: 35px 25px;
    }

    .why-card p {
        font-size: 14px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex-basis: 100%;
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .company-overview,
    .mission-vision,
    .why-choose,
    .our-process,
    .leadership-section,
    .our-team {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 20px 60px 20px;
        min-height: auto;
        margin-top: 70px;
    }

    .about-hero .hero-title {
        font-size: 28px;
    }

    .about-hero .hero-subtitle {
        font-size: 16px;
    }

    .about-hero .hero-description {
        font-size: 14px;
    }

    .about-hero .hero-stats-right {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .about-hero .stat-item {
        padding: 20px 15px;
    }

    .about-hero .stat-item h3 {
        font-size: 32px;
    }

    .about-hero .stat-item p {
        font-size: 11px;
    }

    /* Company Overview - Mobile Typography */
    .company-overview .section-subtitle {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 10px;
    }

    .company-overview .section-title {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .company-overview .title-underline {
        width: 60px;
        height: 3px;
        margin-bottom: 20px;
    }

    .overview-content .lead-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
        text-align: left;
        font-weight: 600;
    }

    .overview-content p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 14px;
        text-align: left;
        color: #444;
    }

    .main-overview-image img {
        height: 240px;
    }

    .small-overview-image img {
        height: 140px;
    }

    .main-overview-image .image-badge {
        font-size: 12px;
        padding: 8px 16px;
        top: 15px;
        left: 15px;
    }

    .small-overview-image .small-badge {
        font-size: 10px;
        padding: 6px 12px;
        bottom: 10px;
    }

    .overview-image-grid {
        gap: 12px;
    }

    .feature-item {
        gap: 15px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .feature-item h4 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .feature-item p {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Mission & Vision - 2 columns on mobile */
    .mv-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .mv-card {
        padding: 20px 15px;
        min-height: auto;
    }

    /* Center the 3rd card (Our Values) */
    .mv-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .mv-icon {
        font-size: 35px;
        margin-bottom: 10px;
    }

    .mv-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .mv-card p {
        font-size: 12px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Why Choose Us - 2 columns on mobile */
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .why-card {
        padding: 25px 15px 20px 15px;
    }

    .why-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
        top: -12px;
        right: 15px;
    }

    .why-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .why-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .why-card p {
        font-size: 12px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Our Process - Simple Vertical Flowchart */
    .process-timeline {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        position: relative;
        padding: 0 20px;
    }

    /* Remove desktop connecting line */
    .process-timeline::before {
        display: none !important;
    }

    .process-step {
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 0 0 40px 0;
        z-index: 1;
    }

    .process-step:last-child {
        padding-bottom: 0;
    }

    /* Remove all default arrows */
    .process-step::after,
    .process-step:not(:last-child)::after {
        display: none !important;
    }

    /* Vertical line on the left connecting to next step */
    .process-step:not(:last-child)::before {
        content: '';
        position: absolute;
        left: 29px;
        top: 65px;
        width: 2px;
        height: calc(100% - 55px);
        background: rgba(211, 65, 63, 0.4);
        z-index: 0;
    }

    /* Arrow at the end of the line */
    .process-step:not(:last-child)::after {
        content: '↓';
        display: block !important;
        position: absolute;
        left: 20px;
        bottom: 30px;
        font-size: 22px;
        color: rgba(211, 65, 63, 0.7);
        font-weight: bold;
        z-index: 1;
    }

    .step-number {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 24px;
        margin: 0;
        border: 3px solid #2c3e50;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }

    .step-content {
        text-align: left;
        flex: 1;
        padding-top: 5px;
    }

    .step-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .step-content p {
        font-size: 13px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .leader-card {
        border-radius: 12px;
    }

    .leader-image {
        padding: 20px 12px 15px;
    }

    .leader-avatar {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .leader-badge {
        font-size: 9px;
        padding: 4px 12px;
        letter-spacing: 0.5px;
    }

    .leader-info {
        padding: 15px 12px;
    }

    .leader-info h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .leader-title {
        font-size: 10px;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .leader-bio {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .leader-contact {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .contact-link {
        font-size: 9px;
        padding: 6px 6px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 5px;
        word-break: break-all;
        line-height: 1.3;
    }

    .contact-link svg {
        width: 11px;
        height: 11px;
        flex-shrink: 0;
        min-width: 11px;
    }

    /* Team Stats - 2 per row on mobile */
    .team-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .team-stat {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .stat-icon {
        font-size: 35px;
        margin-bottom: 12px;
    }

    .team-stat h3 {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .team-stat p {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    /* CTA Section - Mobile Optimization */
    .cta-section {
        padding: 50px 20px !important;
    }

    .cta-section::before {
        background-size: 25px 25px;
        animation-duration: 15s;
    }

    .cta-section h2 {
        font-size: 24px !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
    }

    .cta-section p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 25px !important;
        opacity: 0.95;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 !important;
        max-width: 100%;
        margin: 0 auto;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 16px 25px !important;
        font-size: 13px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        border-radius: 50px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative;
    }

    .cta-btn-primary .btn-icon,
    .cta-btn-secondary .btn-icon {
        font-size: 18px;
    }

    .cta-btn-primary {
        background: white !important;
        color: #D3413F !important;
        border: none !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    }

    .cta-btn-primary:active {
        transform: scale(0.96) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }

    .cta-btn-secondary {
        background: rgba(255, 255, 255, 0.1) !important;
        color: white !important;
        border: 2px solid rgba(255, 255, 255, 0.6) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    }

    .cta-btn-secondary:active {
        background: rgba(255, 255, 255, 0.2) !important;
        transform: scale(0.96) !important;
    }

    .mv-card {
        padding: 40px 30px;
    }

    .why-card {
        padding: 30px 20px;
    }

    /* Map Section - Mobile */
    .map-section {
        padding: 60px 0;
    }

    .contact-map .section-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .contact-map .title-underline {
        width: 80px;
        height: 3px;
        margin-bottom: 30px;
    }

    .map-container {
        border-radius: 12px;
        border-width: 2px;
        margin-bottom: 20px;
    }

    .map-container iframe {
        height: 300px;
    }

    .map-directions {
        margin-bottom: 30px;
    }

    .directions-btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .directions-btn .btn-icon {
        font-size: 18px;
    }

    .directions-btn .btn-arrow {
        font-size: 18px;
    }

    .location-info {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .location-item {
        padding: 20px;
        border-radius: 12px;
    }

    .location-icon {
        font-size: 32px;
    }

    .location-text h4 {
        font-size: 16px;
    }

    .location-text p {
        font-size: 13px;
    }
}

/* Factory Section */
.factory-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.factory-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D3413F 0%, #F97316 50%, #D3413F 100%);
}

.factory-intro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.intro-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.intro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(211, 65, 63, 0.2);
    border-color: #D3413F;
}

.intro-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.intro-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.intro-card p {
    color: #666;
    line-height: 1.7;
}

/* Factory Gallery */
.factory-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 60px 0;
}

.factory-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #f8f8f8;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.factory-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 665px;
}

.factory-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.3s ease;
}

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

.factory-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 25px;
    transform: translateY(calc(100% - 70px));
    transition: transform 0.4s ease;
}

.factory-item:hover .factory-overlay {
    transform: translateY(0);
}

.factory-label {
    display: inline-block;
    background: #D3413F;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.factory-overlay h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.factory-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Factory Stats */
.factory-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.factory-stat-item {
    background: linear-gradient(135deg, #D3413F 0%, #F97316 100%);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 25px rgba(211, 65, 63, 0.3);
    transition: all 0.3s ease;
}

.factory-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(211, 65, 63, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Responsive Factory Section */
@media (max-width: 992px) {
    .factory-intro {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }

    .factory-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .factory-item {
        min-height: 280px;
    }

    .factory-item.featured {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 350px;
    }

    .factory-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .factory-section {
        padding: 60px 0;
    }

    .intro-card {
        padding: 25px;
    }

    .intro-icon {
        font-size: 36px;
    }

    .intro-card h3 {
        font-size: 1.3rem;
    }

    .factory-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 40px 0;
    }

    .factory-item {
        min-height: 280px;
    }

    .factory-item.featured {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 280px;
    }

    .factory-overlay {
        transform: translateY(calc(100% - 60px));
    }

    .factory-overlay h3 {
        font-size: 1.2rem;
    }

    .factory-overlay p {
        font-size: 0.85rem;
    }

    .factory-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
    }

    .factory-stat-item {
        padding: 25px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .factory-section {
        padding: 40px 0;
    }

    .intro-card {
        padding: 20px;
    }

    .intro-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .intro-card h3 {
        font-size: 1.1rem;
    }

    .intro-card p {
        font-size: 0.9rem;
    }

    .factory-item {
        min-height: 250px;
    }

    .factory-item img {
        padding: 10px;
    }

    .factory-overlay {
        padding: 20px;
        transform: translateY(calc(100% - 50px));
    }

    .factory-label {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .factory-overlay h3 {
        font-size: 1rem;
    }

    .factory-overlay p {
        font-size: 0.8rem;
    }

    .factory-stats {
        gap: 12px;
        margin-top: 30px;
    }

    .factory-stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}
