/* About Page - Modern 2025 Design */

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.8s ease-out forwards;
}

.rotate-in {
    animation: rotateIn 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 1s ease-out forwards;
}

/* Page Header */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #2d2324 0%, #8b1e38 50%, #4b1e29 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(246, 227, 234, 0.2) 0%, transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(139, 30, 56, 0.28) 0%, transparent 55%);
    pointer-events: none;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header__title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f6e3ea 45%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 1s ease-out;
}

.page-header__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-header__breadcrumb li {
    font-size: 16px;
    color: #cbd5e0;
}

.page-header__breadcrumb li a {
    color: #f6e3ea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header__breadcrumb li a:hover {
    color: #ffffff;
}

.page-header__breadcrumb li span {
    color: #718096;
}

/* About Hero Section */
.about-hero-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d2324 0%, #4b1e29 50%, #2d2324 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    pointer-events: none;
}

.about-hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-hero-content {
    padding-right: 20px;
    animation: fadeInLeft 1s ease-out;
}

.about-hero-tagline {
    display: inline-block;
    color: #f6e3ea;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.about-hero-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 3px;
    background: linear-gradient(90deg, #f6e3ea 0%, #e7b4c7 100%);
    border-radius: 2px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 35px;
    background: linear-gradient(135deg, #ffffff 0%, #f6e3ea 45%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-size: 18px;
    line-height: 1.9;
    color: #f4edf0;
}

.about-hero-description p {
    margin-bottom: 20px;
}

.about-hero-description p:last-child {
    margin-bottom: 0;
}

.about-hero-description strong {
    color: #ffffff;
    font-weight: 700;
}

.about-hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(246, 227, 234, 0.2);
    border: 2px solid rgba(246, 227, 234, 0.4);
    animation: fadeInRight 1s ease-out;
}

.about-hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-hero-image:hover img {
    transform: scale(1.05);
}

.about-hero-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #8b1e38 0%, #302225 100%);
    padding: 25px 35px;
    border-radius: 20px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse-badge 2s infinite, scaleIn 1s ease-out 0.5s both;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
    }
}

.about-hero-badge .badge-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.about-hero-badge .badge-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d2324 0%, #4b1e29 50%, #2d2324 100%);
    position: relative;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-vision-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(139, 30, 56, 0.26) 100%);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(246, 227, 234, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.mission-vision-card:nth-child(1) {
    animation-delay: 0.1s;
}

.mission-vision-card:nth-child(2) {
    animation-delay: 0.2s;
}

.mission-vision-card:nth-child(3) {
    animation-delay: 0.3s;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(246, 227, 234, 0.18) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mission-vision-card:hover::before {
    opacity: 1;
}

.mission-vision-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border-color: rgba(246, 227, 234, 0.9);
}

.mission-vision-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8b1e38 0%, #302225 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 42px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    animation: rotateIn 1s ease-out 0.5s both;
}

.mission-vision-card:hover .mission-vision-icon {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85);
}

.mission-vision-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mission-vision-card:hover .mission-vision-title {
    color: #f6e3ea;
}

.mission-vision-text {
    font-size: 16px;
    line-height: 1.8;
    color: #f4edf0;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Why Trust Us Section */
.why-trust-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d2324 0%, #8b1e38 50%, #4b1e29 100%);
    position: relative;
    overflow: hidden;
}

.why-trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(246, 227, 234, 0.2) 0%, transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(139, 30, 56, 0.3) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(75, 30, 41, 0.4) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.why-trust-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.04) 50%,
            transparent 100%
        );
    pointer-events: none;
}

.why-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.why-trust-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(139, 30, 56, 0.22) 100%);
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(246, 227, 234, 0.3);
    border: 1px solid rgba(246, 227, 234, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.why-trust-item:nth-child(1) {
    animation-delay: 0.1s;
}

.why-trust-item:nth-child(2) {
    animation-delay: 0.2s;
}

.why-trust-item:nth-child(3) {
    animation-delay: 0.3s;
}

.why-trust-item:nth-child(4) {
    animation-delay: 0.4s;
}

.why-trust-item:nth-child(5) {
    animation-delay: 0.5s;
}

.why-trust-item:nth-child(6) {
    animation-delay: 0.6s;
}

.why-trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #8b1e38 0%, #302225 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.why-trust-item:hover::before {
    transform: scaleY(1);
}

.why-trust-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.75), 0 0 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(246, 227, 234, 0.9);
    background: linear-gradient(135deg, rgba(246, 227, 234, 0.18) 0%, rgba(139, 30, 56, 0.32) 100%);
}

.why-trust-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(139, 30, 56, 0.26) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid rgba(246, 227, 234, 0.5);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    animation: scaleIn 0.6s ease-out 0.3s both;
}

.why-trust-item:hover .why-trust-icon-wrapper {
    background: linear-gradient(135deg, #8b1e38 0%, #302225 100%);
    border-color: rgba(246, 227, 234, 0.9);
    transform: scale(1.1) rotate(5deg);
}

.why-trust-icon-wrapper i {
    font-size: 40px;
    color: #f6e3ea;
    transition: color 0.3s ease;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.why-trust-item:hover .why-trust-icon-wrapper i {
    color: #ffffff;
}

.why-trust-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.why-trust-item:hover .why-trust-title {
    color: #f6e3ea;
}

.why-trust-description {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e0;
    margin: 0;
}

/* Company Stats Section */
.company-stats-about {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d2324 0%, #8b1e38 50%, #4b1e29 100%);
    position: relative;
    overflow: hidden;
}

.company-stats-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(246, 227, 234, 0.2) 0%, transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(139, 30, 56, 0.3) 0%, transparent 55%);
    pointer-events: none;
}

.company-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.company-stat-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(139, 30, 56, 0.26) 100%);
    border-radius: 20px;
    border: 1px solid rgba(246, 227, 234, 0.35);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.company-stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.company-stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.company-stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.company-stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

.company-stat-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(246, 227, 234, 0.2) 0%, rgba(139, 30, 56, 0.36) 100%);
    border-color: rgba(246, 227, 234, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.stat-icon {
    font-size: 48px;
    color: #f6e3ea;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #f6e3ea 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
    animation: scaleIn 0.8s ease-out 0.5s both;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #f4edf0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.about-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d2324 0%, #4b1e29 50%, #2d2324 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    pointer-events: none;
}

.about-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.about-cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f6e3ea 45%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta-text {
    font-size: 18px;
    line-height: 1.8;
    color: #f4edf0;
    margin-bottom: 40px;
}

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

.about-cta-btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    display: inline-block;
}

.about-cta-btn-primary {
    background: linear-gradient(135deg, #8b1e38 0%, #302225 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.about-cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85);
    background: linear-gradient(135deg, #8b1e38 0%, #302225 100%);
}

.about-cta-btn-secondary {
    background: transparent;
    color: #f6e3ea;
    border: 2px solid rgba(246, 227, 234, 0.8);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.about-cta-btn-secondary:hover {
    transform: translateY(-5px);
    background: rgba(246, 227, 234, 0.15);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-hero-wrapper {
        gap: 60px;
    }
    
    .about-hero-title {
        font-size: 42px;
    }
    
    .mission-vision-grid {
        gap: 30px;
    }
    
    .why-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .page-header {
        padding: 140px 0 80px;
    }
    
    .page-header__title {
        font-size: 42px;
    }
    
    .about-hero-section {
        padding: 80px 0;
    }
    
    .about-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-hero-content {
        padding-right: 0;
    }
    
    .about-hero-image img {
        height: 500px;
    }
    
    .mission-vision-section,
    .why-trust-section,
    .company-stats-about,
    .about-cta-section {
        padding: 80px 0;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .why-trust-grid {
        grid-template-columns: 1fr;
    }
    
    .company-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header__title {
        font-size: 36px;
    }
    
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-image img {
        height: 400px;
    }
    
    .about-hero-description {
        font-size: 16px;
    }
    
    .mission-vision-card {
        padding: 40px 30px;
    }
    
    .mission-vision-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .mission-vision-title {
        font-size: 24px;
    }
    
    .why-trust-item {
        padding: 35px 25px;
    }
    
    .why-trust-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .why-trust-icon-wrapper i {
        font-size: 36px;
    }
    
    .why-trust-title {
        font-size: 20px;
    }
    
    .company-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .about-cta-title {
        font-size: 32px;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .page-header__title {
        font-size: 28px;
    }
    
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-hero-image img {
        height: 350px;
    }
    
    .about-hero-badge {
        padding: 20px 25px;
        bottom: 20px;
        right: 20px;
    }
    
    .about-hero-badge .badge-number {
        font-size: 36px;
    }
    
    .mission-vision-card {
        padding: 30px 20px;
    }
    
    .about-cta-title {
        font-size: 28px;
    }
}

