/* ===== ABOUT PAGE LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 2rem 4rem 2rem;
}

/* Typography */
.about-page h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    color: #f8f9fa;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-text h1 {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-page h2 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-page h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f8f9fa;
    margin-bottom: 0.5rem;
}

.about-page p {
    color: #c7c8ca;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 0 0 350px;
    display: flex;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* ===== PROBLEM & SOLUTION SECTION ===== */
.problem-solution {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.problem-card, .solution-card {
    background: rgba(26, 26, 46, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1 1 45%;
    transition: all 0.3s ease;
}

.problem-card:hover, .solution-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.problem-card h2, .solution-card h2 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ===== VIDEOS CAROUSEL SECTION ===== */
.videos-carousel-section {
    margin-bottom: 4rem;
}

.videos-carousel-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #d4af37;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.video-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
}

.video-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 300px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.carousel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.carousel-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.carousel-card h3 {
    padding: 1rem 1.5rem 0.5rem 1.5rem;
    color: #f8f9fa;
    font-size: 1rem;
    font-weight: 600;
}

.carousel-card p {
    padding: 0 1.5rem;
    color: #c7c8ca;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.watch-btn {
    display: block;
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a2e;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.watch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f4e4a6, #d4af37);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-arrow.left { left: 10px; }
.carousel-arrow.right { right: 10px; }

/* ===== CONTACT SECTION ===== */
.contact-section {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-section h2 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #c7c8ca;
}

.contact-form {
    background: rgba(26, 26, 46, 0.8);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #d4af37;
    font-size: 1.8rem;
}

.form-message {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #f8f9fa;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #1a1a2e;
    border: 2px solid #333;
    border-radius: 8px;
    color: #f8f9fa;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-family: 'Georgia', 'Times New Roman', serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #f4e4a6, #d4af37);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.submit-btn:active {
    transform: translateY(0);
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    background: rgba(26, 26, 46, 0.8);
    color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.email-display {
    margin-top: 1.5rem;
    color: #c7c8ca;
    font-size: 1.1rem;
}

.email-display i {
    margin-right: 0.5rem;
    color: #d4af37;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .container { 
        padding: 120px 1rem 2rem 1rem; 
    }
    
    .about-section { 
        flex-direction: column; 
    }
    
    .about-image img { 
        max-width: 250px; 
    }
    
    .problem-solution { 
        flex-direction: column; 
        gap: 1.5rem; 
    }
    
    .problem-card, .solution-card { 
        flex: 1 1 100%; 
    }
    
    .carousel-card { 
        flex: 0 0 250px; 
    }
    
    .contact-form { 
        padding: 1.5rem; 
    }
    
    .social-links { 
        flex-wrap: wrap; 
    }
}

@media (max-width: 480px) {
    .contact-section h2 { 
        font-size: 2rem; 
    }
    
    .contact-form { 
        margin: 0 1rem; 
    }
}