/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Company History Section */
.company-history {
    padding: 6rem 0;
    background: var(--white);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.timeline {
    display: grid;
    gap: 2rem;
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--secondary-color);
}

.year {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.history-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Our Values Section */
.our-values {
    padding: 6rem 0;
    background: var(--light-gray);
}

.our-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Our Team Section */
.our-team {
    padding: 6rem 0;
    background: var(--white);
}

.our-team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border: 5px solid var(--secondary-color);
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-member .position {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-member .bio {
    color: var(--text-color);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--text-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item .number {
    display: block;
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* Premium CTA Section Styles */
.premium-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.premium-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: #e77b3c;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-description {
    margin-bottom: 2.5rem;
}

.cta-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 2rem;
}

.premium-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #2d3436;
}

.premium-features i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: #e77b3c;
    color: white;
    box-shadow: 0 4px 15px rgba(231, 123, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 123, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #e77b3c;
    border: 2px solid #e77b3c;
}

.btn-secondary:hover {
    background: #e77b3c;
    color: white;
}

.cta-images {
    position: relative;
    z-index: 1;
}

.image-container {
    position: relative;
    height: 500px;
}

.image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.main-image {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    transform: perspective(1000px) rotateY(0deg);
}

.floating-image {
    width: 60%;
    height: 60%;
    top: 20%;
    right: -10%;
    transform: perspective(1000px) rotateY(15deg);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.image-card:hover img {
    transform: scale(1.1);
}

.image-card:hover .image-overlay {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-images {
        order: -1;
    }

    .image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .premium-cta {
        padding: 4rem 0;
    }

    .cta-text h2 {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .image-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .cta-text h2 {
        font-size: 2rem;
    }

    .image-container {
        height: 250px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .history-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .history-image {
        order: -1;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
} 
