/*==================================================
DAYAL PARADISE V2
Premium Luxury Theme
==================================================*/

:root{

    --gold:#D8B36A;
    --gold-light:#E8C98B;
    --black:#090909;
    --black2:#111111;
    --dark:#181818;
    --white:#ffffff;
    --text:#cfcfcf;
    --border:rgba(255,255,255,.08);

    --radius:22px;

    --transition:.45s cubic-bezier(.22,.61,.36,1);

    --container:1280px;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:#050505;
    color:#fff;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;

}

button,
input{

    font-family:inherit;
    outline:none;

}

.container{

    width:min(var(--container),92%);
    margin:auto;

}

.section{

    padding:110px 0;

}

/*==================================
LOADER
==================================*/

.page-loader{

    position:fixed;
    inset:0;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;

}

.loader-ring{

    width:70px;
    height:70px;
    border-radius:50%;
    border:4px solid rgba(255,255,255,.08);
    border-top-color:var(--gold);
    animation:spin 1s linear infinite;

}

@keyframes spin{

to{
transform:rotate(360deg);
}

}

/*==================================
HEADER
==================================*/

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:500;
    transition:var(--transition);

}

.header.scrolled{

    background:rgba(8,8,8,.90);
    backdrop-filter:blur(16px);
    border-bottom:1px solid var(--border);

}

.header .container{

    height:86px;
    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo img{

    height:55px;

}

.desktop-menu{

    display:flex;
    gap:45px;

}

.desktop-menu a{

    color:#fff;
    font-size:15px;
    transition:.3s;

}

.desktop-menu a:hover{

    color:var(--gold);

}

.menu-toggle{

    display:none;
    background:none;
    border:none;
    cursor:pointer;

}

.menu-toggle span{

    display:block;
    width:26px;
    height:2px;
    background:#fff;
    margin:6px 0;

}

.mobile-menu{

    position:fixed;
    top:86px;
    right:-100%;
    width:280px;
    background:#111;
    transition:var(--transition);
    padding:30px;
    z-index:400;

}

.mobile-menu.active{

    right:0;

}

.mobile-menu a{

    display:block;
    padding:15px 0;
    border-bottom:1px solid var(--border);

}

/*==================================
HERO
==================================*/

.hero{

    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;

}

.hero-bg{

    position:absolute;
    inset:0;

}

.hero-bg img{

    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.08);

}

.hero-overlay{

    position:absolute;
    inset:0;
    background:
    linear-gradient(to right,#030303 18%,rgba(3,3,3,.68) 48%,rgba(3,3,3,.45)),
    linear-gradient(to top,#050505,transparent 35%);

}

.hero-grid{

    position:relative;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:70px;
    z-index:10;

}

.eyebrow{

    display:inline-block;
    color:var(--gold);
    letter-spacing:3px;
    font-size:13px;
    margin-bottom:20px;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;
    font-size:74px;
    line-height:1.04;
    margin-bottom:28px;

}

.hero h1 span{

    color:var(--gold);

}

.hero p{

    max-width:620px;
    color:var(--text);
    line-height:1.9;
    font-size:18px;
    margin-bottom:38px;

}

.hero-buttons{

    display:flex;
    gap:18px;

}

.phone-frame{

    width:350px;
    margin:auto;
    border-radius:45px;
    overflow:hidden;
    border:10px solid #141414;
    box-shadow:0 40px 80px rgba(0,0,0,.45);

}

.floating-card{

    position:absolute;
    right:0;
    bottom:20px;
    width:300px;
    background:rgba(14,14,14,.94);
    backdrop-filter:blur(18px);
    border:1px solid rgba(216,179,106,.35);
    border-radius:22px;
    padding:28px;
    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.floating-card span{

    color:var(--gold);
    font-size:13px;
    letter-spacing:3px;

}

.floating-card h3{

    margin:15px 0;
    font-size:24px;

}

.floating-card p{

    margin:0;
    font-size:15px;
    line-height:1.8;

}

/*==================================
BUTTONS
==================================*/

.btn{

    padding:17px 36px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:var(--transition);
    font-weight:600;

}

.btn-primary{

    background:linear-gradient(135deg,var(--gold),#b88937);
    color:#111;

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-secondary{

    border:1px solid rgba(255,255,255,.15);

}

.btn-secondary:hover{

    background:#fff;
    color:#000;

}

/*==================================
HEADINGS
==================================*/

.section-tag{

    color:var(--gold);
    letter-spacing:3px;
    font-size:13px;
    display:block;
    margin-bottom:18px;

}

.section-heading{

    text-align:center;
    max-width:820px;
    margin:0 auto 70px;

}

.section-heading h2,
.intro h2,
.showcase h2,
.contact h2,
.cta h2{

    font-family:'Cormorant Garamond',serif;
    font-size:54px;
    line-height:1.1;

}

.intro p,
.showcase p,
.contact p{

    color:var(--text);
    line-height:1.9;
    margin-bottom:20px;

}

.section-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;

}

/*==================================
FEATURES
==================================*/

.feature-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;

}

.feature-card{

    background:#111;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:42px;
    transition:var(--transition);

}

.feature-card:hover{

    transform:translateY(-10px);
    border-color:rgba(216,179,106,.35);

}

.icon{

    font-size:42px;
    margin-bottom:22px;

}

.feature-card h3{

    margin-bottom:18px;

}

.feature-card p{

    color:var(--text);
    line-height:1.8;

}

/*==================================
SHOWCASE
==================================*/

.showcase-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.showcase-image img{

    border-radius:26px;

}

.showcase ul{

    margin-top:35px;

}

.showcase li{

    margin:15px 0;
    color:var(--text);

}

/*==================================
GALLERY
==================================*/

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;

}

.gallery-grid img{

    height:320px;
    width:100%;
    object-fit:cover;
    border-radius:18px;
    transition:.4s;

}

.gallery-grid img:hover{

    transform:scale(1.04);

}

/*==================================
CTA
==================================*/

.cta-box{

    background:linear-gradient(145deg,#131313,#0a0a0a);
    border-radius:30px;
    text-align:center;
    padding:90px 60px;
    border:1px solid rgba(216,179,106,.20);

}

.cta-box span{

    color:var(--gold);
    letter-spacing:3px;

}

.cta-box p{

    color:var(--text);
    max-width:700px;
    margin:25px auto 40px;

}

/*==================================
CONTACT
==================================*/

.contact-grid{

    display:grid;
    grid-template-columns:1fr 430px;
    gap:80px;

}

.contact-form{

    display:flex;
    flex-direction:column;
    gap:20px;

}

.contact-form input{

    background:#111;
    border:1px solid var(--border);
    color:#fff;
    padding:18px;
    border-radius:14px;

}

/*==================================
FOOTER
==================================*/

.footer{

    padding:40px 0;
    border-top:1px solid var(--border);
    text-align:center;
    color:#999;

}

/*==================================
SCROLL TOP
==================================*/

.scroll-top{

    position:fixed;
    right:30px;
    bottom:30px;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:var(--gold);
    color:#000;
    cursor:pointer;
    display:none;
    z-index:300;

}

.scroll-top.show{

    display:block;

}

/*==================================
ANIMATIONS
==================================*/

[data-animate]{

    opacity:0;
    transform:translateY(60px);
    transition:.8s ease;

}

[data-animate].active{

    opacity:1;
    transform:none;

}