/* ========================================
   ABOUT US SECTION STYLES
   ======================================== */

.about-us-section {
    padding: 0 0 6rem 0 !important;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
    margin-bottom: 0;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    z-index: 0;
}

.about-us-section .container {
    position: relative;
    z-index: 1;
    padding-top: 5rem;
}

/* === ABOUT IMAGE === */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.05);
}

/* === ABOUT BADGE === */
.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
    }
}

.badge-content {
    text-align: center;
    color: var(--text-light);
}

.badge-content h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
}

.badge-content p {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === ABOUT CONTENT === */
.about-content {
    padding-left: 3rem;
}

.about-content .section-label {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-content .section-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* === ABOUT FEATURES === */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* === ABOUT BUTTONS === */
.about-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: #25D366;
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: var(--text-light);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .about-content .section-title {
        font-size: 2.2rem;
    }
    
    .about-main-image {
        height: 450px;
    }
    
    .about-badge {
        width: 120px;
        height: 120px;
        bottom: 20px;
        right: 20px;
    }
    
    .badge-content h3 {
        font-size: 2.5rem;
    }
    
    .badge-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 0 0 4rem 0;
    }
    
    .about-us-section .container {
        padding-top: 3rem;
    }
    
    .about-content .section-title {
        font-size: 1.8rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-main-image {
        height: 350px;
    }
    
    .about-badge {
        width: 100px;
        height: 100px;
        bottom: 15px;
        right: 15px;
    }
    
    .badge-content h3 {
        font-size: 2rem;
    }
    
    .badge-content p {
        font-size: 0.7rem;
    }
    
    .about-buttons {
        flex-direction: column;
    }
    
    .btn-luxury,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-content .section-title {
        font-size: 1.6rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-main-image {
        height: 300px;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}
