/* About Page Specific Styles */

/* Hero Section */
.about-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 60px 0;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Company Introduction */
.company-intro {
    margin: 80px 0;
    padding: 0 20px;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

.company-description {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.company-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* What We Offer Section */
.what-we-offer {
    background-color: #f8f8f8;
    padding: 80px 20px;
    margin: 80px 0;
}

.what-we-offer h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #000;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-item {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.offer-icon i {
    font-size: 32px;
    color: white;
}

.offer-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.offer-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Products Showcase */
.products-showcase {
    background-color: #f8f8f8;
    padding: 80px 0;
    margin: 80px 0;
}

.products-showcase .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #000;
}

.about-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: visible;
}

.about-carousel-wrapper {
    overflow: hidden;
    border-radius: 10px;
}

.about-products-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.about-products-track .product-item {
    flex: 0 0 calc(25% - 22.5px);
    min-width: 280px;
    max-width: 300px;
    width: calc(25% - 22.5px);
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 300px;
}

.about-products-track .product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.about-products-track .product-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.about-products-track .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-products-track .product-item:hover .product-image img {
    transform: scale(1.05);
}

.about-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.about-carousel-btn.prev-btn {
    left: 10px;
}

.about-carousel-btn.next-btn {
    right: 10px;
}

.about-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.about-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-dot.active {
    background: #000;
    transform: scale(1.2);
}

.about-dot:hover {
    background: #666;
}

/* Responsive adjustments for about carousel */
@media (max-width: 1024px) {
    .about-products-track .product-item {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .about-carousel-container {
        padding: 0 40px;
    }
    
    .about-products-track .product-item {
        flex: 0 0 calc(50% - 15px);
        min-width: 250px;
    }
    
    .about-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-carousel-container {
        padding: 0 30px;
    }
    
    .about-products-track .product-item {
        flex: 0 0 calc(100% - 0px);
        min-width: 200px;
    }
    
    .about-products-track {
        gap: 20px;
    }
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
    .carousel-container {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .carousel-wrapper {
        height: 400px;
    }
    
    .slide-content {
        padding: 30px 20px 20px;
    }
    
    .slide-content h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper {
        height: 300px;
    }
    
    .slide-content {
        padding: 20px 15px 15px;
    }
    
    .slide-content h3 {
        font-size: 20px;
    }
    
    .slide-content p {
        font-size: 13px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Global Reach Section */
.global-reach {
    background-color: #f8f8f8;
    padding: 80px 20px;
    margin: 80px 0;
}

.global-reach h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #000;
}

.global-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.global-text {
    flex: 1;
}

.global-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.global-text > p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

.countries-list {
    display: flex;
    gap: 40px;
}

.country-group h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.country-group ul {
    list-style: none;
    padding: 0;
}

.country-group li {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.country-group li:before {
    content: "•";
    color: #000;
    position: absolute;
    left: 0;
}

.global-image {
    flex: 1;
}

.global-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* Contact Section */
.contact-section {
    margin: 80px 0;
    padding: 0 20px;
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #000;
}

.contact-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: #000;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.contact-form {
    flex: 1;
    background: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #000;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #333;
}

/* Navigation Active State */
.nav-link.active {
    color: #000;
    font-weight: 600;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero {
        flex-direction: column;
        gap: 30px;
        margin: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 36px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 18px;
        text-align: center;
    }
    
    .intro-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .intro-text h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .company-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .global-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .countries-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .what-we-offer,
    .global-reach {
        padding: 60px 20px;
        margin: 60px 0;
    }
    
    .company-intro,
    .products-showcase,
    .contact-section {
        margin: 60px 0;
    }
    
    .what-we-offer h2,
    .products-showcase h2,
    .global-reach h2,
    .contact-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .intro-text h2 {
        font-size: 24px;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .offer-item {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
}