*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Cairo",sans-serif;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:28px;

    background:
    radial-gradient(circle at top left,
    rgba(255,255,255,.15),
    transparent 35%),

    linear-gradient(
    135deg,
    #d6b56b 0%,
    #c69a3a 35%,
    #a97821 70%,
    #222222 100%
    );
}

.card{
    width:100%;
    max-width:430px;
    padding:42px 30px;
    text-align:center;
    position:relative;
    overflow:hidden;
    border-radius:36px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,.18),
    rgba(255,248,220,.08)
    );

    border:1px solid rgba(255,235,180,.25);
    backdrop-filter:blur(20px);
    box-shadow:0 25px 80px rgba(0,0,0,.35);
}

.card::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-100px;
    width:240px;
    height:240px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
}

.card::after{
    content:"";
    position:absolute;
    bottom:-120px;
    left:-100px;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,215,120,.12);
}

.logo-box{
    width:220px;
    height:220px;
    margin:0 auto 25px;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:2;
}

.logo-box::before{
    content:"";
    position:absolute;
    width:205px;
    height:205px;
    border-radius:36px;
    background:linear-gradient(135deg,#ffffff,#fff6d8);
    box-shadow:
        0 22px 50px rgba(0,0,0,.30),
        inset 0 0 0 6px #ffffff,
        inset 0 0 0 9px rgba(212,175,55,.55);
    z-index:1;
}

.main-logo{
    width:165px;
    height:165px;
    object-fit:cover;
    border-radius:24px;
    position:relative;
    z-index:2;
    box-shadow:0 14px 35px rgba(0,0,0,.22);
}

.badge{
    display:inline-block;
    padding:10px 24px;
    margin-bottom:20px;
    border-radius:30px;
    font-size:14px;
    font-weight:800;

    background:
    linear-gradient(
    135deg,
    #d4af37,
    #f4d06f
    );

    color:#222;
    position:relative;
    z-index:2;
}

h1{
     font-family:"Alexandria",sans-serif;
    font-size:34px;
    font-weight:900;
    color:#fff8dc;
    margin-bottom:8px;
    position:relative;
    z-index:2;
}

.subtitle{
    font-size:18px;
    font-weight:800;
    color:#ffe49a;
    margin-bottom:22px;
    position:relative;
    z-index:2;
}

.desc{
    font-size:15px;
    line-height:2.2;
    color:white;
    margin-bottom:30px;
    padding:16px;
    border-radius:22px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    position:relative;
    z-index:2;
}

.buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
    width:100%;
    position:relative;
    z-index:2;
}

.btn{
    width:100%;
    min-height:76px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    text-decoration:none;
    border-radius:18px;
    font-size:15px;
    font-weight:900;
    transition:.25s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.btn:hover{
    transform:translateY(-3px);
}

.call{
    background:linear-gradient(135deg,#c89b3c,#f0c96a);
    color:#1b1b1b;
}

.whatsapp{
    background:linear-gradient(135deg,#18b44a,#25d366);
    color:white;
}

.glass{
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.16);
    color:white;
}

.bank-card{
    margin-top:15px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,235,180,.15);
    border-radius:22px;
    padding:20px;
    color:white;
}

.bank-card h3{
    color:#ffe49a;
    margin-bottom:12px;
}

.bank-card p{
    margin:10px 0;
    word-break:break-word;
}

.account-box{
    background:rgba(255,255,255,.08);
    padding:14px;
    border-radius:14px;
    margin-top:10px;
}

.account-box span{
    display:block;
    margin-top:6px;
    font-weight:700;
}

.copy-btn{
    width:100%;
    margin-top:12px;
    border:none;
    border-radius:14px;
    padding:12px;
    cursor:pointer;
    font-family:"Cairo",sans-serif;
    font-weight:800;
    background:linear-gradient(135deg,#d4af37,#f4d06f);
    color:#222;
}

footer{
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.12);
    font-size:15px;
    font-weight:700;
    color:rgba(255,255,255,.85);
}

.gallery-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.gallery-grid a{
    display:block;
    overflow:hidden;
    border-radius:18px;
    border:1px solid rgba(255,235,180,.18);
    box-shadow:0 10px 24px rgba(0,0,0,.16);
}

.gallery-grid img{
    width:100%;
    height:150px;
    object-fit:cover;
    display:block;
}

.gallery-videos{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.gallery-videos video{
    width:100%;
    border-radius:20px;
    border:1px solid rgba(255,235,180,.18);
    box-shadow:0 10px 24px rgba(0,0,0,.16);
}