/* ===== ABOUT HERO ===== */
.about-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(180, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

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

/* ===== LABELS & TITLES ===== */
.about-label {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.about-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

/* ===== INTRO SECTION ===== */
.about-intro {
    background: #fff;
}

.about-text {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-info-row {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 0.98rem;
}

.about-info-item i {
    color: #c0392b;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.about-main-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-main-img:hover {
    transform: scale(1.03);
}

/* ===== STATS ===== */
.about-stats {
    background: #1a1a2e;
    padding: 60px 0;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: #c0392b;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== GALLERY ===== */
.about-gallery {
    background: #f8f8f8;
}

.gallery-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.gallery-img-wrap.tall {
    height: 460px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-img:hover {
    transform: scale(1.04);
}

/* ===== WHY CHOOSE US ===== */
.about-why {
    background: #fff;
}

.why-card {
    background: #f9f9f9;
    border-radius: 14px;
    padding: 32px 24px;
    height: 100%;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(192, 57, 43, 0.12);
    border-color: #c0392b22;
}

.why-icon {
    width: 52px;
    height: 52px;
    background: #c0392b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.why-icon i {
    color: #fff;
    font-size: 1.3rem;
}

.why-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.why-card p {
    color: #666;
    font-size: 0.93rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== CTA ===== */
.about-cta {
    background: linear-gradient(135deg, #c0392b, #922b21);
    padding: 80px 20px;
    color: #fff;
}

.about-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.05rem;
    opacity: 0.88;
    margin-bottom: 2rem;
}

.btn-cta-primary {
    background: #fff;
    color: #c0392b;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: inline-block;
}

.btn-cta-primary:hover {
    background: #f0e0de;
    color: #922b21;
    transform: translateY(-2px);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.7);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    display: inline-block;
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-hero { height: 280px; }
    .about-hero-content h1 { font-size: 2rem; }
    .about-title { font-size: 1.6rem; }
    .stat-number { font-size: 2rem; }
    .gallery-img-wrap.tall { height: 280px; }
    .about-main-img { height: 260px; }
}
