body { background-color: #050505; color: #fafafa; font-family: 'Plus Jakarta Sans', sans-serif; }

.glass { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.05); }

.text-gradient { background: linear-gradient(to right, #ffffff, #a1a1aa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.talent-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    aspect-ratio: 3/4;
    transition: transform 0.3s ease;
}

.talent-card:hover { transform: translateY(-10px); }

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    z-index: 10;
}

.card-info h3 { font-size: 1.5rem; font-weight: bold; }
.card-info p { color: #a1a1aa; }

.input-field {
    width: 100%;
    background-color: rgba(24, 24, 27, 0.5);
    border: 1px solid #27272a;
    padding: 1.25rem;
    border-radius: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: #ffffff;
}

/* Container & Header */
.offers-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
    color: #ffffff;
}

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

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0;
}

/* Grid Layout */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Card Styling */
.offer-card {
    background: #111; /* Slightly lighter than pure black */
    padding: 40px;
    border: 1px solid #222;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    border-color: #ffffff;
    transform: translateY(-5px);
    background: #161616;
}

.offer-card .icon {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.offer-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.offer-card p {
    color: #888;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.offer-card p em {
    color: #bbb;
    font-style: italic;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-header h2 { font-size: 2rem; }
    .offer-card { padding: 30px; }
}






.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #f4f4f5;
}

.wa-tooltip {
    position: absolute;
    right: 80px;
    background: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid #27272a;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}












