/* about.css - About page specific styles only */
.about-hero {
    background: var(--red-gradient);
    color: #fff;
    padding: 180px 5% 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    opacity: 0.2;
}
.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 5px 20px rgba(0,0,0,.3);
}
.about-hero .subtitle {
    font-size: 1.5rem;
    margin: 1.5rem 0 2.5rem;
    opacity: 0.95;
}
.stats-quick {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    font-size: 1.3rem;
    margin-top: 2rem;
}
.stats-quick div strong {
    display: block;
    font-size: 2.8rem;
    color: var(--gold);
}

.section-padding { padding: 120px 0; }
.bg-light { background: var(--light-bg); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}
.why-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220,53,69,.15);
}
.icon-gold { color: var(--gold); margin-bottom: 1.5rem; }

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}
.instructor-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    text-align: center;
    transition: var(--transition);
}
.instructor-card:hover { transform: translateY(-10px); }
.instructor-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.instructor-card h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.5rem;
}
.languages {
    color: var(--red);
    font-weight: 600;
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .about-hero h1 { font-size: 3.8rem; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
    .about-hero h1 { font-size: 3.2rem; }
    .stats-quick { gap: 2rem; flex-direction: column; }
}


/* Re-use the exact same about layout as homepage */
.about-content {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:6rem;
    align-items:center;
    max-width:1200px;
    margin:auto;
}
.about-thumb img {
    border-radius:20px;
    box-shadow:var(--shadow);
    width:100%;
}

/* Why Choose Us – perfect 3×2 grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}
.why-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220,53,69,.15);
}
.icon-gold {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: justify;
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* PAGE-SPECIFIC: ATTRACTIVE RED-WHITE SECTION SEPARATOR SYSTEM */
.section-padding {
    padding: 130px 0;
    position: relative;
}

/* Section backgrounds - strong & attractive */
.section-white {
    background: #ffffff;
    position: relative;
}
.section-grey {
    background: #f5f7fa;
    position: relative;
}
.section-red-tint {
    background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
    position: relative;
}

/* Elegant wave divider + red accent line */
.section-padding::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 100" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" d="M0,50 C360,100 1080,0 1440,50 L1440,0 L0,0 Z"/></svg>') center bottom no-repeat;
    background-size: cover;
    pointer-events: none;
}

.section-grey::before,
.section-red-tint::before {
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 100" xmlns="http://www.w3.org/2000/svg"><path fill="%23f5f7fa" d="M0,50 C360,0 1080,100 1440,50 L1440,100 L0,100 Z"/></svg>') center top no-repeat;
    background-size: cover;
}

/* Red accent line on every new section */
.section-padding:not(:first-of-type)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--red-gradient);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(220,53,69,.5);
    z-index: 10;
}

/* Hero exit wave - white */
.hero::after,
.about-hero::after,
.pricing-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 120" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" d="M0,60 C360,120 1080,0 1440,60 L1440,120 L0,120 Z"/></svg>') center top no-repeat;
    background-size: cover;
}


/* BEAUTIFUL SYMBOLS INSTEAD OF BULLETS */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    font-size: 1.12rem;
    margin-bottom: 1.4rem;
    font-weight: 500;
    color: #333;
}

.icon-red {
    font-size: 1.8rem;
    color: var(--red);
    width: 48px;
    text-align: center;
}


/* SUPER STYLISH 3D IMAGE EFFECT – PREMIUM LOOK */
.stylish-3d {
    perspective: 1000px;
    padding: 20px 0;
}

.stylish-3d .image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transform: rotateY(-6deg) rotateX(8deg);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.25),
        0 40px 80px rgba(220,53,69,0.15),
        inset 0 -10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.stylish-3d:hover .image-wrapper {
    transform: rotateY(-3deg) rotateX(4deg) translateY(-10px);
    box-shadow: 
        0 35px 70px rgba(0,0,0,0.3),
        0 50px 100px rgba(220,53,69,0.25);
}

.stylish-3d img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* Beautiful shine overlay on hover */
.shine {
    position: absolute;
    top: 0; left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.8s;
}

.stylish-3d:hover .shine {
    left: 100%;
}