/* Hero Section with Transparent Card */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--light);
    padding-top: 80px;
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    flex-wrap: wrap;
}

.main-card {
    max-width: 1000px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.main-text {
    max-width: 60%;
}

.main-card h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.main-card p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
    color: #f8f8f8;
}

.hero .btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.hero .btn:hover {
    background: #b8972e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-gold {
    display: inline-block;
    padding: 12px 30px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    margin-top: 20px;
    font-size: 14px;
}

.btn-gold:hover {
    background: #c9a42d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Cards Column - contains feature card and stats */
.cards-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 35%;
    max-width: 320px;
}

/* Feature card (Beautiful in Every Detail) */
.feature-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 90%;
    margin-bottom: 15px;
    max-height: 100px;
}

.feature-card-image {
    width: 35%;
    height: 80px;
    overflow: hidden;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.feature-card:hover .feature-card-image img {
    transform: scale(1.05);
}

.feature-card-content {
    padding: 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
}

.feature-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.read-more-btn {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.read-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    height: 24px;
    width: 24px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.read-more-btn:hover {
    color: var(--primary);
}

.read-more-btn:hover i {
    transform: translateX(3px);
    background: var(--primary);
    color: white;
}

/* Stats section with avatars */
.stats {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 50px;
    width: 80%;
}

.clients-avatars {
    margin-right: 10px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    margin-right: -10px;
}

.avatar-plus {
    width: 32px;
    height: 32px;
    background-color: white;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
}

.stats-text {
    margin-left: 10px;
}

.stats-text h3 {
    font-size: 26px;
    margin-bottom: 0;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}

.stats-text p {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
    color: white;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .main-card {
        max-width: 800px;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .main-text {
        max-width: 100%;
    }
    
    .main-card-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .cards-column {
        width: 85%;
        max-width: 400px;
        align-items: center;
    }
    
    .feature-card {
        width: 90%;
    }
    
    .stats {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .main-card h1 {
        font-size: 42px;
    }
    
    .main-card {
        padding: 30px 25px;
    }
    
    .stats {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .stats-text {
        text-align: center;
        margin-top: 10px;
    }
    
    .feature-card-content h3 {
        font-size: 18px;
    }
    
    .feature-card {
        width: 100%;
        max-height: 100px;
    }
    
    .feature-card-image {
        height: 100px;
    }
}

@media (max-width: 576px) {
    .main-card h1 {
        font-size: 36px;
    }
    
    .main-card p {
        font-size: 15px;
    }
    
    .cards-column {
        width: 95%;
    }
    
    .feature-card {
        width: 100%;
        flex-direction: column;
        max-height: none;
    }
    
    .feature-card-image {
        width: 100%;
        height: 150px;
    }
    
    .feature-card-content {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    
    .read-more-btn {
        justify-content: center;
        margin-top: 10px;
    }
    
    .client-avatar {
        width: 30px;
        height: 30px;
    }
    
    .avatar-plus {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .stats-text h3 {
        font-size: 22px;
    }
    
    .stats-text p {
        font-size: 11px;
    }
    
    .stats {
        width: 100%;
    }
}
