/* ===================================================================
   ABOUT PAGE STYLES - DEVOTA TOURS
   Professional styling for About Us page
   ================================================================= */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    text-align: center;
    color: white;
    padding: 6rem 0;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('https://i.pinimg.com/1200x/82/3a/4d/823a4d3cc7940987d42e629260ea7657.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
}

.about-hero .hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafb 0%, #f0f7ff 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.story-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fffbe7 0%, #f8fafb 100%);
}

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

.value-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(46, 134, 171, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0eafc 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Single Owner Card - Enhanced User-Friendly Design */
.team-grid.single-owner {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 3rem auto 0;
    justify-items: center;
}

.team-grid.single-owner .team-member {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.team-grid.single-owner .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-grid.single-owner .member-image {
    width: 100%;
    height: 350px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
}

.team-grid.single-owner .member-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
}

.team-grid.single-owner .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-grid.single-owner .team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-grid.single-owner .member-info {
    padding: 2.5rem;
    width: 100%;
    background: #ffffff;
    border-radius: 0 0 20px 20px;
}

.team-grid.single-owner .member-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #2E86AB 0%, #F18F01 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-grid.single-owner .member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(46, 134, 171, 0.1);
    border-radius: 25px;
    display: inline-block;
}

.team-grid.single-owner .member-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

/* Impact Section - User-Friendly Design */
.impact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafb 0%, #fffbe7 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.impact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(46, 134, 171, 0.1);
    transition: all 0.3s ease;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.impact-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.impact-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.impact-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Testimonial Highlight */
.testimonial-highlight {
    margin: 4rem auto 3rem;
    max-width: 900px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    position: relative;
    box-shadow: var(--shadow-medium);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-primary);
    text-align: center;
    margin: 0 0 2rem;
    font-style: italic;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info strong {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Impact Stats Row */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.impact-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(46, 134, 171, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.impact-stats .stat-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.impact-stats .stat-text {
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-image {
        order: -1;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid.single-owner {
        max-width: 500px;
    }
    
    .team-grid.single-owner .team-member {
        max-width: 450px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 100vh;
        padding: 0;
    }
    .about-hero .hero-background,
    .about-hero .hero-overlay {
        height: 100vh;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid.single-owner {
        max-width: 450px;
        margin: 2rem auto 0;
    }
    
    .team-grid.single-owner .team-member {
        max-width: 400px;
    }
    
    .team-grid.single-owner .member-image {
        height: 300px;
    }
    
    .team-grid.single-owner .member-info {
        padding: 2rem;
    }
    
    .team-grid.single-owner .member-info h4 {
        font-size: 1.3rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .impact-icon {
        margin: 0 auto 1.5rem;
    }
    
    .testimonial-highlight {
        padding: 2rem;
        margin: 3rem auto 2rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1.1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .value-card,
    .team-member {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .impact-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .testimonial-highlight {
        padding: 1.5rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1rem;
    }
    
    .impact-stats .stat-item {
        padding: 1rem;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .story-content,
    .values-grid,
    .team-grid,
    .impact-grid {
        padding: 0 1rem;
    }
} 