/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* SECTION */
.why-section{
    position: relative;
    min-height: 100vh;
    background: url("../assets/promo.webp") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 20px;
    color:#fff;
}

/* OVERLAY */
.why-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(6,22,32,0.75);
}

/* CONTENT */
.why-content{
    position:relative;
    max-width:1200px;
    width:100%;
    text-align:center;
    z-index:2;
}

/* HEADING */
.why-content h1{
    font-family:'Playfair Display', serif;
    font-size:64px;
    letter-spacing:3px;
}

.why-content h2{
    font-family:'Playfair Display', serif;
    font-size:36px;
    margin-top:10px;
    margin-bottom:50px;
}

/* CARDS */
.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:50px;
}

.card{
    position:relative;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(0.02px);
    border-radius:20px;
    padding:40px 25px;
    min-height:220px;
}

/* GOLD DOT */
.card::before{
    content:"";
    position:absolute;
    top:20px;
    left:20px;
    width:26px;
    height:26px;
    border-radius:50%;
    background:linear-gradient(135deg,#f5d07c,#d6a84f);
}

.card p{
    font-family:'Inter', sans-serif;
    font-size:15px;
    line-height:1.8;
    margin-top:40px;
}

/* BUTTON */
.cta-btn{
    display:inline-block;
    padding:14px 36px;
    background:linear-gradient(135deg,#f5d07c,#d6a84f);
    color:#081a23;
    font-family:'Inter', sans-serif;
    font-weight:600;
    letter-spacing:1px;
    border-radius:10px;
    text-decoration:none;
    transition:0.3s ease;
}

.cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media(max-width:992px){
    .why-content h1{
        font-size:48px;
    }
    .why-content h2{
        font-size:28px;
    }
    .cards{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .why-content h1{
        font-size:38px;
    }
    .why-content h2{
        font-size:22px;
        margin-bottom:30px;
    }
    .cards{
        grid-template-columns:1fr;
        gap:20px;
    }
    .card{
        padding:30px 20px;
    }
    .cta-btn{
        padding:12px 28px;
        font-size:14px;
    }
}

/* PREMIUM FLOATING WITH RANDOMIZED MOTION */
@keyframes premiumFloat1 {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    20%  { transform: translate(-5px, -10px) rotate(-1deg) scale(1.02); }
    40%  { transform: translate(5px, -15px) rotate(1deg) scale(1.03); }
    60%  { transform: translate(-3px, -10px) rotate(-0.5deg) scale(1.01); }
    80%  { transform: translate(3px, -12px) rotate(0.5deg) scale(1.02); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes premiumFloat2 {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    20%  { transform: translate(4px, -8px) rotate(1deg) scale(1.01); }
    40%  { transform: translate(-4px, -14px) rotate(-1deg) scale(1.02); }
    60%  { transform: translate(2px, -9px) rotate(0.5deg) scale(1.03); }
    80%  { transform: translate(-2px, -11px) rotate(-0.5deg) scale(1.01); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes premiumFloat3 {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    20%  { transform: translate(-6px, -9px) rotate(-0.5deg) scale(1.02); }
    40%  { transform: translate(6px, -16px) rotate(1deg) scale(1.04); }
    60%  { transform: translate(-4px, -12px) rotate(-1deg) scale(1.02); }
    80%  { transform: translate(4px, -14px) rotate(0.5deg) scale(1.03); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

.card {
    position: relative;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(0.02px);
    border-radius: 20px;
    padding: 40px 25px;
    min-height: 220px;

    /* Smooth transition on hover */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ASSIGN DIFFERENT FLOATS TO EACH CARD */
.card:nth-child(1) {
    animation: premiumFloat1 6s ease-in-out infinite;
}
.card:nth-child(2) {
    animation: premiumFloat2 7s ease-in-out infinite;
}
.card:nth-child(3) {
    animation: premiumFloat3 6.5s ease-in-out infinite;
}

/* HOVER EFFECT (POP & SHADOW) */
.card:hover {
    transform: translateY(-20px) scale(1.08) rotate(0deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
