*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
background:#0b1220;
color:#fff;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#08101d;
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid rgba(255,255,255,.1);
}

.brand{
display:flex;
align-items:center;
gap:12px;
}

.brand-icon{
font-size:40px;
}

.brand h1{
font-size:26px;
}

.brand p{
color:#fbbf24;
font-size:13px;
}

.menu a{
color:white;
text-decoration:none;
margin-left:25px;
font-weight:600;
}

.hero{
min-height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:40px;
background:
linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1600&q=80');
background-size:cover;
background-position:center;
}

.law-icon{
font-size:70px;
margin-bottom:20px;
}

.hero h2{
font-size:60px;
margin-bottom:10px;
}

.hero h3{
font-size:24px;
color:#fbbf24;
margin-bottom:20px;
}

.hero p{
max-width:800px;
margin:auto;
font-size:18px;
line-height:1.7;
}

.hero-actions{
margin-top:30px;
}

.btn{
    display:inline-block;
    padding:14px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    margin:10px;
    transition:all 0.3s ease;
    box-shadow:0 4px 15px rgba(255,215,0,0.25);
}
.section .btn{
    display:block;
    width:fit-content;
    margin:20px auto;
}

.gold{
background:#fbbf24;
color:black;
}
.gold:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 25px rgba(255,215,0,0.4);
}

.outline{
border:2px solid #fbbf24;
color:#fbbf24;
}
.outline:hover{
    background:#fbbf24;
    color:black;
    transform:translateY(-3px);
    box-shadow:0 8px 25px rgba(255,215,0,0.4);
}
.trust{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
padding:40px 8%;
background:#111827;
}

.trust div{
background:#1f2937;
padding:20px;
border-radius:12px;
text-align:center;
}

.section{
padding:80px 8%;
}

.section h2{
text-align:center;
font-size:40px;
margin-bottom:10px;
}

.sub{
text-align:center;
color:#cbd5e1;
margin-bottom:40px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.card{
background:#111827;
padding:25px;
border-radius:15px;
transition:.3s;
}

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

.card h4{
color:#fbbf24;
margin-bottom:10px;
font-size:22px;
}

.about{
padding:80px 8%;
}

.about-card{
background:#111827;
padding:40px;
border-radius:15px;
text-align:center;
}

.steps{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.steps div{
background:#111827;
padding:25px;
border-radius:15px;
}

.steps b{
font-size:35px;
color:#fbbf24;
}

.fees{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.fee-card{
background:#111827;
padding:30px;
border-radius:15px;
text-align:center;
}

.highlight{
border:2px solid #fbbf24;
}

.price{
font-size:45px;
font-weight:bold;
color:#fbbf24;
margin:15px 0;
}

.faq-box{
background:#111827;
padding:20px;
margin-bottom:15px;
border-radius:12px;
}

.contact{
text-align:center;
padding:80px 8%;
background:#111827;
}

.contact p{
margin:10px 0;
font-size:18px;
}

footer{
text-align:center;
padding:25px;
background:#08101d;
color:#94a3b8;
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
width:65px;
height:65px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size:30px;
font-weight:bold;
}

@media(max-width:768px){

.menu{
display:none;
}

.hero h2{
font-size:32px;
}

.hero h3{
font-size:18px;
}

.section h2{
font-size:30px;
}

.trust{
grid-template-columns:1fr;
}
}
.hero-logo{
width:100px;
height:100px;
border-radius:50%;
object-fit:cover;
display:block;
margin:0 auto 20px;
box-shadow:0 0 25px rgba(251,191,36,.5);
}
.hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.hero-left{
    flex:1;
    min-width:300px;
}

.hero-right{
    flex:1;
    text-align:center;
}

.hero-right img{
    width:350px;
    max-width:100%;
    border-radius:20px;
    border:4px solid #d4af37;
    box-shadow:0 0 25px rgba(212,175,55,0.4);
}

.hero-logo{
    width:120px;
    margin-bottom:15px;
}

.hero-badge{
    display:inline-block;
    background:#d4af37;
    color:#111827;
    padding:8px 16px;
    border-radius:30px;
    font-weight:bold;
    margin-bottom:15px;
}

.hero h2{
    font-size:48px;
    margin-bottom:10px;
}

.hero h3{
    color:#d4af37;
    margin-bottom:15px;
}

.hero p{
    font-size:18px;
    line-height:1.7;
}

@media(max-width:768px){
    .hero-container{
        flex-direction:column-reverse;
        text-align:center;
    }

    .hero h2{
        font-size:36px;
    }

    .hero-right img{
        width:280px;
    }
}
.contact-card{
    max-width:700px;
    margin:0 auto;
    padding:35px;
    border:1px solid rgba(251,191,36,0.35);
    border-radius:20px;
    background:rgba(15,23,42,0.75);
    box-shadow:0 10px 35px rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
transition: all 0.3s ease;
    .contact-card:hover{
    transform: translateY(-5px);
    box-shadow:0 15px 40px rgba(251,191,36,0.3);
}
}
@media(max-width:768px){

  .section{
    padding:45px 18px;
  }

  .grid{
    gap:18px;
  }

  .card{
    padding:22px 18px;
    min-height:auto;
  }

  .card h3{
    font-size:24px;
    margin-bottom:10px;
  }

  .card p{
    font-size:18px;
    line-height:1.5;
  }

  .hero{
    min-height:auto;
    padding:60px 18px;
  }

  .hero h2{
    font-size:42px;
  }

  .hero p{
    font-size:20px;
  }

  .floating-whatsapp{
    width:65px;
    height:65px;
    font-size:28px;
  }
}
@media(max-width:768px){

  .hero{
    padding:35px 18px 45px !important;
  }

  .hero-logo{
    width:120px !important;
  }

  .hero h2{
    font-size:38px !important;
    line-height:1.1;
  }

  .hero h3{
    font-size:24px !important;
  }

  .hero p{
    font-size:18px !important;
  }

  .floating-whatsapp{
    width:58px !important;
    height:58px !important;
    bottom:80px !important;
  }
}
/* Booking Form */

.booking-section{
    padding:80px 20px;
    background:#071224;
    text-align:center;
}

.booking-section h2{
    font-size:42px;
    color:#fff;
    margin-bottom:10px;
}

.booking-section p{
    color:#cfcfcf;
    margin-bottom:30px;
}

.booking-form{
    max-width:700px;
    margin:auto;
    background:#0d1b33;
    padding:30px;
    border-radius:20px;
    border:1px solid rgba(255,193,7,.3);
}

.booking-form label{
    display:block;
    text-align:left;
    color:#fff;
    margin-top:15px;
    margin-bottom:8px;
    font-weight:600;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
    width:100%;
    padding:14px;
    border-radius:12px;
    border:1px solid #444;
    background:#08111f;
    color:#fff;
    font-size:16px;
}

.booking-form textarea{
    resize:vertical;
}

.booking-form .btn{
    width:100%;
    margin-top:20px;
    padding:15px;
    border:none;
    border-radius:12px;
    background:#d18a00;
    color:#fff;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
}

.booking-form .btn:hover{
    background:#f0a500;
}
.booking-section .container{
    max-width:800px;
    margin:0 auto;
}

.booking-form{
    display:block;
    max-width:700px;
    margin:30px auto;
    background:#0d1b33;
    padding:30px;
    border-radius:20px;
    border:1px solid rgba(255,193,7,.3);
}

.booking-form label{
    display:block;
    text-align:left;
    margin-top:15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
    display:block;
    width:100%;
    box-sizing:border-box;
    margin-bottom:12px;
}
@media(max-width:768px){

  .hero-logo{
    width:95px !important;
    height:95px !important;
  }

  .hero-badge{
    font-size:14px !important;
    padding:8px 14px !important;
  }

  .hero h2{
    font-size:32px !important;
    line-height:1.1 !important;
  }

  .hero h3{
    font-size:22px !important;
    line-height:1.25 !important;
  }

  .hero p{
    font-size:17px !important;
    line-height:1.5 !important;
  }

  .trust-badges p{
    font-size:16px !important;
    margin:5px 0 !important;
  }
}
@media(max-width:768px){
  .hero .hero-logo{
    display:none !important;
  }
}
@media(max-width:768px){
  .hero-badge{
    display:none;
  }
}
.trust-badges p{
    display:flex;
    align-items:center;
    gap:10px;
    margin:12px 0;
}

.trust-badges{
    max-width:320px;
    margin:20px auto;
    text-align:left;
}
.hero .hero-logo{
  display:none;
}
@media (max-width: 768px) {
  .hero h3 {
    font-size: 32px;
    line-height: 1.2;
  }
}
html{
  scroll-behavior:smooth;
}

/* Legal Team Section */

#team .card{
    border:1px solid rgba(212,160,23,0.5);
    transition:all 0.3s ease;
}

#team .card:hover{
    transform:translateY(-5px);
    border-color:#d4a017;
    box-shadow:0 8px 20px rgba(212,160,23,0.25);
}

#team h3{
    margin-bottom:8px;
}

#team p{
    color:#d4a017;
    font-weight:600;
}
.founder-card{
    border:2px solid #d4a017 !important;
    box-shadow:0 0 15px rgba(212,160,23,0.4);
}

.founder-card h3{
    color:#d4a017;
}
@media(max-width:768px){
  .about img{
    width:200px !important;
    height:auto;
  }
}
.fee-card.highlight p{
  text-align:left;
  width:fit-content;
  margin:6px auto;
}
.hero-left h2{
   font-size: 56px;
}
