/* About Page Styles */

/* Hero Section */
.about-hero {
    padding: 120px 0 100px;
    background: white;
    position: relative;
}

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

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-points p {
    font-size: 1.1rem;
    color: #4a5568;
    margin: 0;
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 480px;
}

/* Promotional Banner Section */
.promo-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #e6f7ff 0%, #d1f2ff 100%);
    position: relative;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: fit-content;
    margin: 0 auto;
}

.promo-logo {
    flex-shrink: 0;
}

.logo-circle {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #34B0DC;
    letter-spacing: -0.02em;
}

.promo-text {
    flex: 1;
}

.promo-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-text p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.promo-btn {
    display: inline-block;
    background: #34B0DC;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 176, 220, 0.3);
}

.promo-btn:hover {
    background: #2490b8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 176, 220, 0.4);
    color: white;
    text-decoration: none;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.travel-experience {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0;
}

.experience-item:nth-child(even) {
    flex-direction: row-reverse;
}

.experience-image {
    flex: 1;
}

.experience-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.experience-content {
    flex: 1;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    text-align: left;
}

.experience-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.3;
}

.experience-content p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: white;
}

.story-timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.year {
    background: #2d3748;
    color: white;
    padding: 16px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.2);
}

.story-content {
    flex: 1;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
    margin: 0 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.timeline-item:nth-child(odd) .story-content {
    margin-left: 30px;
    margin-right: 0;
}

.timeline-item:nth-child(even) .story-content {
    margin-right: 30px;
    margin-left: 0;
}

.story-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.3;
}

.story-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    position: relative;
    width: 100%;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-content {
    background: white;
    padding: 60px 0;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 400px;
}

.client-image {
    flex: 1;
}

.client-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.testimonial-text {
    flex: 1;
    padding: 0 20px;
}

.testimonial-text p {
    font-size: 1.4rem;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.client-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.client-info span {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    background: #f7fafc;
    color: #2d3748;
    border: 2px solid #e2e8f0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #2d3748;
    color: white;
    border-color: #2d3748;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2d3748;
}

.dot:hover {
    background: #2d3748;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #34B0DC 0%, #2490b8 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn.primary {
    background: white;
    color: #34B0DC;
}

.cta-buttons .btn.primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.cta-buttons .btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn.secondary:hover {
    background: white;
    color: #34B0DC;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: block;
}

.section-header .section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.2;
    display: block;
    width: 100%;
}

.section-header .section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .logo-circle {
        width: 120px;
        height: 120px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .travel-experience {
        gap: 50px;
    }
    
    .experience-item {
        flex-direction: column !important;
        gap: 30px;
        text-align: center;
    }
    
    .experience-content {
        text-align: center;
    }
    
    .experience-image img {
        height: 250px;
    }
    
    .story-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 40px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .year {
        min-width: 60px;
        font-size: 1rem;
        padding: 12px 16px;
        margin-left: 0;
    }
    
    .story-content {
        margin-left: 30px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-points p {
        font-size: 1rem;
    }
    
    .promo-banner {
        padding: 40px 0;
    }
    
    .promo-content {
        gap: 30px;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .promo-text h2 {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }
    
    .promo-text p {
        font-size: 1rem;
    }
    
    .features-section,
    .story-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .travel-experience {
        gap: 40px;
    }
    
    .experience-item {
        gap: 25px;
    }
    
    .experience-content h3 {
        font-size: 1.5rem;
    }
    
    .experience-content p {
        font-size: 1.1rem;
    }
    
    .experience-image img {
        height: 200px;
    }
    
    .story-timeline {
        margin-top: 40px;
    }
    
    .timeline-item {
        margin-bottom: 30px;
    }
    
    .year {
        min-width: 50px;
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    
    .story-content {
        padding: 20px;
        margin-left: 20px !important;
    }
    
    .story-content h3 {
        font-size: 1.2rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }
    
    .testimonial-text p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0 40px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-img {
        height: 300px;
    }
    
    .promo-banner {
        padding: 30px 0;
    }
    
    .promo-content {
        gap: 25px;
    }
    
    .logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .promo-text h2 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
    
    .promo-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .promo-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .travel-experience {
        gap: 35px;
    }
    
    .experience-item {
        gap: 20px;
    }
    
    .experience-content h3 {
        font-size: 1.3rem;
    }
    
    .experience-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .experience-image img {
        height: 180px;
    }
    
    .story-timeline::before {
        left: 25px;
    }
    
    .year {
        min-width: 45px;
        font-size: 0.8rem;
        padding: 8px 10px;
    }
    
    .story-content {
        padding: 16px;
        margin-left: 15px !important;
    }
    
    .story-content h3 {
        font-size: 1.1rem;
    }
    
    .story-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .testimonial-content {
        padding: 30px 20px;
        gap: 25px;
    }
    
    .testimonial-text p {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
} 