/* =========================
   GLOBAL CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#111;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* =========================
   COLORS
========================= */

:root{
    --gold:#d4af37;
    --gold-dark:#b8860b;
    --black:#111111;
    --white:#ffffff;
    --light:#f8f8f8;
    --shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   HEADER
========================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(12px);
    box-shadow:0 2px 20px rgba(0,0,0,.08);
}

.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:70px;
}

.logo-text h3{
    font-size:24px;
    color:var(--gold-dark);
    margin-bottom:2px;
}

.logo-text span{
    font-size:12px;
    color:#666;
}

.navbar ul{
    display:flex;
    gap:35px;
}

.navbar ul li a{
    color:#111;
    font-weight:500;
    transition:.3s;
}

.navbar ul li a:hover{
    color:var(--gold);
}

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.desktop-call{
    background:linear-gradient(135deg,var(--gold),var(--gold-dark));
    color:#fff;
    padding:12px 22px;
    border-radius:50px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
}

.mobile-icons{
    display:none;
}

.menu-toggle{
    display:none;
    cursor:pointer;
}

.menu-toggle i{
    font-size:30px;
    color:var(--gold);
}
.hidden-animation{
opacity:0;
transform:translateY(50px);
transition:.8s ease;
}

.show-animation{
opacity:1;
transform:translateY(0);
}

.scroll-top{
position:fixed;
bottom:25px;
right:25px;
width:50px;
height:50px;
border:none;
border-radius:50%;
background:#d4af37;
color:#fff;
cursor:pointer;
font-size:18px;
z-index:999;
opacity:0;
visibility:hidden;
transition:.4s;
}

.scroll-top.show{
opacity:1;
visibility:visible;
}

.whatsapp-float{
position:fixed;
bottom:25px;
left:25px;
width:60px;
height:60px;
border-radius:50%;
background:#25D366;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
z-index:9999;
box-shadow:0 10px 25px rgba(0,0,0,.2);
transition:.3s;
}

.whatsapp-float:hover{
transform:scale(1.1);
}
/* =========================
   HERO SECTION
========================= */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding-top:120px;
    background:
    linear-gradient(
    135deg,
    #ffffff,
    #f8f8f8
    );
}

.hero::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:rgba(212,175,55,.08);
    top:-250px;
    right:-250px;
}

.hero::after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(212,175,55,.06);
    bottom:-150px;
    left:-150px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
    position:relative;
    z-index:10;
}

.hero-tag{
    display:inline-block;
    background:rgba(212,175,55,.12);
    color:var(--gold-dark);
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:50px;
    line-height:1.15;
    margin-bottom:25px;
    font-family:'Playfair Display',serif;
}

.hero-content p{
    font-size:15px;
    line-height:1.8;
    color:#666;
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.btn-primary{
    background:linear-gradient(
    135deg,
    var(--gold),
    var(--gold-dark)
    );
    color:#fff;
    padding:16px 32px;
    border-radius:50px;
    font-weight:600;
}

.btn-secondary{
    border:2px solid var(--gold);
    color:var(--gold-dark);
    padding:16px 32px;
    border-radius:50px;
    font-weight:600;
}

.hero-image{
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:500px;
    margin:auto;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }

}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
}

.feature{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:600;
}

.feature i{
    color:var(--gold);
}

/* =========================
   TRUST SECTION
========================= */

.trust-section{
    padding:100px 0;
    background:#fafafa;
}

.trust-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.trust-box{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.4s;
}

.trust-box:hover{
    transform:translateY(-10px);
}

.trust-box i{
    font-size:45px;
    color:var(--gold);
    margin-bottom:20px;
}

.trust-box h4{
    margin-bottom:15px;
    font-size:22px;
}

.trust-box p{
    color:#666;
    line-height:1.8;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

.hero-content h1{
    font-size:35px;
}

}

@media(max-width:992px){

.navbar{
    position:fixed;
    top:90px;
    right:-100%;
    width:300px;
    height:100vh;
    background:#d4af37;
    transition:.4s;
    padding:40px 25px;
}

.navbar.active{
    right:0;
}

.navbar ul{
    flex-direction:column;
    gap:25px;
}

.navbar ul li a{
    color:black;
}

.menu-toggle{
    display:block;
}

.desktop-call{
    display:none;
}

.mobile-icons{
    display:flex;
    gap:10px;
}

.mobile-icons a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--gold);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
}

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-content h1{
    font-size:30px;
}

.hero-btns{
    justify-content:center;
}

.hero-features{
    justify-content:center;
}

.trust-wrapper{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.hero-content h1{
    font-size:42px;
}

.hero-content p{
    font-size:16px;
}

.trust-wrapper{
    grid-template-columns:1fr;
}

}

@media(max-width:576px){

.logo img{
    width:55px;
}

.logo-text h3{
    font-size:18px;
}

.logo-text span{
    display:none;
}

.hero{
    padding-top:140px;
}

.hero-content h1{
    font-size:30px;
}

.hero-btns{
    flex-direction:column;
}

.btn-primary,
.btn-secondary{
    width:100%;
    text-align:center;
}

.mobile-icons{
    gap:6px;
}

.mobile-icons a{
    width:36px;
    height:36px;
}

}

@media(max-width:375px){

.hero-content h1{
    font-size:28px;
}

.hero-content p{
    font-size:15px;
}

}


/* =========================
   NEW BENEFITS SECTION
========================= */

.benefits-section {
    padding: 120px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.benefit-box {
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    background: #fff;
    border: 1px solid #eee;
}

.benefit-box h3 {
    font-size: 22px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.risk-box h3 {
    color: #c92a2a;
}

.solution-box h3 {
    color: var(--gold-dark);
}

.benefit-box ul li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
    position: relative;
    padding-left: 25px;
}

.risk-box ul li::before {
    content: "•";
    color: #c92a2a;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -4px;
}

.solution-box ul li::before {
    content: "✓";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.benefits-footer-text {
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    margin-top: 50px;
    color: #222;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================
WHY UAE WILL
========================= */

.uae-will-section{
padding:120px 0;
background:#fafafa;
}

.will-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:60px;
}

.will-card{
background:#fff;
padding:40px;
border-radius:30px;
box-shadow:var(--shadow);
transition:.4s;
position:relative;
overflow:hidden;
}

.will-card:hover{
transform:translateY(-12px);
}

.card-head{
display:flex;
align-items:center;
gap:15px;
margin-bottom:25px;
}

.card-head i{
font-size:40px;
color:var(--gold);
}

.will-card ul li{
margin-bottom:16px;
padding-left:25px;
position:relative;
line-height:1.8;
}

.will-card ul li::before{
content:"✓";
position:absolute;
left:0;
color:var(--gold);
font-weight:bold;
}

.danger-card{
border-top:5px solid #ff5a5a;
}

.success-card{
border-top:5px solid #28c76f;
}

.will-bottom{
margin-top:50px;
text-align:center;
background:#111;
padding:40px;
border-radius:25px;
color:#fff;
}

/* =========================
TABLES
========================= */

.comparison-section,
.will-types-section{
padding:120px 0;
background:#fff;
}

.table-wrapper{
overflow-x:auto;
border-radius:20px;
box-shadow:var(--shadow);
}

.comparison-table{
width:100%;
border-collapse:collapse;
min-width:900px;
background:#fff;
}

.comparison-table th{
background:linear-gradient(135deg,#d4af37,#b8860b);
color:#fff;
padding:20px;
font-size:16px;
}

.comparison-table td{
padding:18px;
border-bottom:1px solid #eee;
text-align:center;
}

.comparison-table td:first-child{
font-weight:600;
text-align:left;
}

.comparison-table tr:hover{
background:#fafafa;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px){

.will-grid{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.uae-will-section,
.comparison-section,
.will-types-section{
padding:80px 0;
}

.will-card{
padding:25px;
}

.card-head h3{
font-size:20px;
}

.will-bottom{
padding:25px;
}

.will-bottom h3{
font-size:20px;
line-height:1.6;
}

}

/* =========================
   COMMON SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--gold);
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:48px;
    margin-top:15px;
    margin-bottom:15px;
    font-family:'Playfair Display',serif;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
}

/* =========================
   PACKAGES SECTION
========================= */

.packages-section{
    padding:120px 0;
    background:#fff;
}

.packages-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.package-card{
    background:#fff;
    border-radius:30px;
    padding:45px;
    box-shadow:var(--shadow);
    position:relative;
    transition:.4s;
    border:1px solid #eee;
}

.package-card:hover{
    transform:translateY(-12px);
}

.package-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(212,175,55,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.package-icon i{
    font-size:35px;
    color:var(--gold);
}

.package-card h3{
    font-size:30px;
    margin-bottom:15px;
}

.package-card h4{
    font-size:45px;
    color:var(--gold-dark);
    margin-bottom:5px;
}

.package-card span{
    color:#666;
    display:block;
    margin-bottom:25px;
}

.package-card ul li{
    margin-bottom:15px;
    color:#555;
}

.package-card ul li i{
    color:var(--gold);
    margin-right:10px;
}

.package-btn{
    margin-top:30px;
    display:inline-block;
    padding:15px 30px;
    border-radius:50px;
    background:linear-gradient(
    135deg,
    var(--gold),
    var(--gold-dark)
    );
    color:#fff;
    font-weight:600;
}

.featured{
    border:2px solid var(--gold);
}

.popular-tag{
    position:absolute;
    top:20px;
    right:20px;
    background:var(--gold);
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

/* =========================
   WHY CHOOSE US
========================= */

.why-section{
    padding:120px 0;
    background:#fafafa;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    font-size:45px;
    color:var(--gold);
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

/* =========================
   REGISTRATION
========================= */

.registration-section{
    padding:120px 0;
    background:#fff;
}

.registration-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.registration-card{
    padding:40px;
    border-radius:25px;
    background:#fff;
    box-shadow:var(--shadow);
    border-top:5px solid var(--gold);
    transition:.4s;
}

.registration-card:hover{
    transform:translateY(-10px);
}

.registration-card h3{
    margin-bottom:25px;
    font-size:28px;
}

.registration-card ul li{
    margin-bottom:15px;
    color:#555;
    padding-left:20px;
    position:relative;
}

.registration-card ul li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:var(--gold);
}

/* =========================
   PROCESS SECTION
========================= */

.process-section{
    padding:120px 0;
    background:#fafafa;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.process-box{
    background:#fff;
    border-radius:25px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.4s;
}

.process-box:hover{
    transform:translateY(-10px);
}

.step-number{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:linear-gradient(
    135deg,
    var(--gold),
    var(--gold-dark)
    );
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
}

.process-box h3{
    margin-bottom:15px;
}

.process-box p{
    color:#666;
    line-height:1.8;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

.process-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:992px){

.packages-grid{
    grid-template-columns:1fr;
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.registration-grid{
    grid-template-columns:1fr;
}

.process-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-title h2{
    font-size:40px;
}

}

@media(max-width:768px){

.why-grid{
    grid-template-columns:1fr;
}

.process-grid{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:34px;
}

.package-card{
    padding:30px;
}

.package-card h4{
    font-size:35px;
}

}

@media(max-width:576px){

.section-title h2{
    font-size:28px;
}

.package-card h3{
    font-size:24px;
}

.package-card h4{
    font-size:30px;
}

.registration-card,
.why-card,
.process-box{
    padding:25px;
}

}

/* =========================
ABOUT
========================= */

.about-section{
padding:120px 0;
background:#fff;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:30px;
box-shadow:var(--shadow);
}

.about-content span{
color:var(--gold);
font-weight:600;
}

.about-content h2{
font-size:48px;
margin:15px 0;
}

.about-content p{
color:#666;
line-height:1.8;
margin-bottom:30px;
}

.qualification-item{
margin-bottom:15px;
font-weight:500;
}

/* =========================
FAQ
========================= */

.faq-section{
padding:120px 0;
background:#fafafa;
}

.faq-wrapper{
max-width:900px;
margin:auto;
}

.faq-item{
background:#fff;
border-radius:15px;
margin-bottom:20px;
overflow:hidden;
box-shadow:var(--shadow);
}

.faq-question{
padding:25px;
cursor:pointer;
font-weight:600;
font-size:18px;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:.4s;
padding:0 25px;
line-height:1.8;
color:#666;
}

.faq-item.active .faq-answer{
max-height:300px;
padding:0 25px 25px;
}
.faq-question{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:25px;
    cursor:pointer;
    font-weight:600;
    font-size:18px;
}

.faq-icon{
    color:var(--gold);
    font-size:18px;
    transition:0.3s ease;
}

.faq-item.active .faq-icon{
    transform:rotate(180deg);
}

/* =========================
CONTACT
========================= */

.contact-section{
padding:120px 0;
background:#fff;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.contact-content span{
color:var(--gold);
font-weight:600;
}

.contact-content h2{
font-size:50px;
margin:15px 0;
}

.contact-content p{
line-height:1.8;
color:#666;
margin-bottom:30px;
}

.contact-info div{
margin-bottom:15px;
font-size:18px;
}

.contact-info i{
color:var(--gold);
margin-right:10px;
}

.contact-form{
background:#fff;
padding:40px;
border-radius:25px;
box-shadow:var(--shadow);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:15px;
margin-bottom:20px;
border:1px solid #ddd;
border-radius:10px;
font-family:inherit;
}

.contact-form button{
width:100%;
padding:16px;
border:none;
background:linear-gradient(
135deg,
var(--gold),
var(--gold-dark)
);
color:#fff;
font-weight:600;
border-radius:10px;
cursor:pointer;
}

/* =========================
CTA
========================= */

.bottom-cta{
padding:100px 0;
background:#111;
text-align:center;
color:#fff;
}

.bottom-cta h2{
font-size:50px;
margin-bottom:20px;
}

.bottom-cta p{
margin-bottom:30px;
color:#ddd;
}

.bottom-cta a{
display:inline-block;
padding:16px 35px;
background:var(--gold);
color:#fff;
border-radius:50px;
font-weight:600;
}

/* =========================
FOOTER
========================= */

.footer{
background:#000;
color:#fff;
padding-top:60px;
}

.footer-content{
text-align:center;
}

.footer-content img{
width:90px;
margin:auto;
margin-bottom:20px;
}

.footer-content h3{
margin-bottom:10px;
}

.footer-content p{
color:#bbb;
}

.footer-bottom{
text-align:center;
padding:25px 0;
margin-top:40px;
border-top:1px solid rgba(255,255,255,.1);
color:#999;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px){

.about-grid,
.contact-grid{
grid-template-columns:1fr;
}

.about-content h2,
.contact-content h2,
.bottom-cta h2{
font-size:38px;
}

}

@media(max-width:768px){

.about-content h2,
.contact-content h2,
.bottom-cta h2{
font-size:30px;
}

.contact-form{
padding:25px;
}

}

@media(max-width:576px){

.about-section,
.contact-section,
.faq-section{
padding:80px 0;
}

.bottom-cta h2{
font-size:26px;
}

.contact-content h2{
font-size:28px;
}

.about-content h2{
font-size:28px;
}

}

.schedule-calendar{
    padding:120px 0;
    background:#fafafa;
}

.calendar-frame{
    background:#fff;
    padding:15px;
    border-radius:25px;
    box-shadow:var(--shadow);
}

.calendar-frame{
    background:#fff;
    padding:15px;
    border-radius:25px;
    box-shadow:var(--shadow);
    overflow:hidden;
}

.calendly-inline-widget{
    width:100%;
    min-width:100%;
    height:750px;
    border-radius:20px;
}

@media(max-width:768px){
    .calendar-frame iframe{
        height:550px;
    }
    .calendly-inline-widget{
        height:700px;
    }
}

.hidden-animation{
    opacity:0;
    transform:translateY(80px) scale(.95);
    transition:
    opacity .9s ease,
    transform .9s ease;
}

.show-animation{
    opacity:1;
    transform:translateY(0) scale(1);
}

.table-wrapper.hidden-animation{
    opacity:0;
    transform:translateY(100px);
}

.table-wrapper.show-animation{
    opacity:1;
    transform:translateY(0);
}

.calendar-frame.hidden-animation{
    opacity:0;
    transform:perspective(1000px)
              rotateX(15deg)
              translateY(80px);
}

.calendar-frame.show-animation{
    opacity:1;
    transform:perspective(1000px)
              rotateX(0deg)
              translateY(0);
}