/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, #fff5f7 0%, #ffffff 60%, #fff9fa 100%);
    padding: 80px 8% 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero .tagline {
    display: inline-block;
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1e272e;
    margin-bottom: 16px;
}

.page-hero h1 span {
    color: #ff4757;
    position: relative;
}

.page-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 71, 87, 0.15);
    border-radius: 4px;
}

.page-hero p {
    font-size: 18px;
    color: #747d8c;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== ABOUT STORY ===== */
.about-story {
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content .tagline {
    display: inline-block;
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e272e;
    margin-bottom: 20px;
}

.story-content h2 span {
    color: #ff4757;
}

.story-content p {
    color: #747d8c;
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 16px;
}

.story-content .highlight {
    color: #ff4757;
    font-weight: 600;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

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

.story-image .floating-box {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #ffffff;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    animation: float 3s ease-in-out infinite;
}

.story-image .floating-box i {
    font-size: 32px;
    color: #ff4757;
    margin-right: 12px;
}

.story-image .floating-box span {
    font-weight: 700;
    font-size: 18px;
    color: #1e272e;
}

.story-image .floating-box small {
    display: block;
    color: #747d8c;
    font-size: 13px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== STATS ===== */
.stats-section {
    padding: 60px 8%;
    background: #1e272e;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: #ffffff;
}

.stat-item i {
    font-size: 36px;
    color: #ff4757;
    margin-bottom: 12px;
    display: block;
}

.stat-item .number {
    font-size: 48px;
    font-weight: 800;
    color: #ff4757;
    display: block;
}

.stat-item .label {
    font-size: 16px;
    color: #a4b0be;
    margin-top: 8px;
}

/* ===== MISSION & VISION ===== */
.mission-vision {
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #ff4757;
}

.mv-card .icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255, 71, 87, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #ff4757;
    transition: all 0.4s ease;
}

.mv-card:hover .icon-wrap {
    background: #ff4757;
    color: #ffffff;
    transform: rotate(10deg) scale(1.1);
}

.mv-card h3 {
    font-size: 24px;
    color: #1e272e;
    margin-bottom: 12px;
}

.mv-card p {
    color: #747d8c;
    line-height: 1.8;
    font-size: 15px;
}

/* ===== WHAT WE OFFER ===== */
.offer-section {
    padding: 80px 8%;
    background: #f8f9fa;
}

.offer-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.offer-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e272e;
}

.offer-section .section-title h2 span {
    color: #ff4757;
}

.offer-section .section-title p {
    color: #747d8c;
    font-size: 16px;
    margin-top: 8px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.offer-card {
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: #ff4757;
}

.offer-card .offer-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 71, 87, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 30px;
    color: #ff4757;
    transition: all 0.4s ease;
}

.offer-card:hover .offer-icon {
    background: #ff4757;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.offer-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e272e;
    margin-bottom: 10px;
}

.offer-card p {
    color: #747d8c;
    font-size: 14px;
    line-height: 1.7;
}

/* ===== TEAM ===== */
.team-section {
    padding: 80px 8%;
}

.team-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.team-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e272e;
}

.team-section .section-title h2 span {
    color: #ff4757;
}

.team-section .section-title p {
    color: #747d8c;
    font-size: 16px;
    margin-top: 8px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-card .team-img {
    height: 260px;
    overflow: hidden;
}

.team-card .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.08);
}

.team-card .team-info {
    padding: 24px 20px 28px;
}

.team-card .team-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e272e;
}

.team-card .team-info .role {
    color: #ff4757;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin: 4px 0 10px;
}

.team-card .team-info p {
    color: #747d8c;
    font-size: 14px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f3542;
    transition: all 0.4s ease;
}

.team-social a:hover {
    background: #ff4757;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 8%;
    background: #f8f9fa;
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e272e;
}

.testimonials .section-title h2 span {
    color: #ff4757;
}

.testimonials .section-title p {
    color: #747d8c;
    font-size: 16px;
    margin-top: 8px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.testimonial-card .stars {
    color: #ffb703;
    font-size: 16px;
    margin-bottom: 12px;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .author .name {
    font-weight: 600;
    color: #1e272e;
    font-size: 15px;
}

.testimonial-card .author .location {
    font-size: 13px;
    color: #747d8c;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .story-image .floating-box {
        left: 10px;
        bottom: -10px;
    }
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
    .mission-vision {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
    .page-hero p {
        font-size: 16px;
    }
    .story-content h2 {
        font-size: 28px;
    }
    .stats-section {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .stat-item .number {
        font-size: 32px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .offer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 26px;
    }
    .page-hero {
        padding: 50px 5% 40px;
    }
    .about-story {
        padding: 40px 5%;
    }
    .story-content h2 {
        font-size: 22px;
    }
    .stats-section {
        grid-template-columns: 1fr 1fr;
        padding: 40px 5%;
        gap: 16px;
    }
    .stat-item .number {
        font-size: 26px;
    }
    .stat-item i {
        font-size: 24px;
    }
    .mission-vision {
        padding: 40px 5%;
    }
    .mv-card {
        padding: 30px 20px;
    }
    .offer-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-card .team-img {
        height: 200px;
    }
    .testimonials {
        padding: 40px 5%;
    }
    .testimonial-card {
        padding: 24px 18px;
    }
}

/* ===== SCROLL ANIMATION ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}