/*====================================================
 TETI & COMPANY ADVOCATES
 Premium Law Firm Website
======================================================*/

/*==============================
 GOOGLE FONTS
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/*==============================
 RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#444;
    overflow-x:hidden;
    line-height:1.8;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}

/*==============================
 COLORS
==============================*/

:root{

    --primary:#07111f;
    --secondary:#101c2d;
    --gold:#c89b3c;
    --gold-light:#dcb760;
    --gold-dark:#aa7e23;

    --white:#fff;
    --light:#f7f8fa;

    --text:#666;

    --shadow:
    0 20px 50px rgba(0,0,0,.12);

    --transition:.4s ease;

}

/*==============================
 GLOBAL
==============================*/

section{
    padding:100px 0;
}

.section-subtitle{

    display:inline-block;

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}

.section-title{

    font-family:'Cormorant Garamond',serif;

    font-size:52px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:25px;

}

p{

    color:var(--text);

}

/*==============================
 TOP BAR
==============================*/

.top-bar{

    background:#02070f;

    color:#ddd;

    padding:10px 0;

    font-size:14px;

}

.top-left{

    display:flex;

    justify-content:flex-end;

    gap:35px;

}

.top-left i{

    color:var(--gold);

    margin-right:8px;

}

/*==============================
 NAVBAR
==============================*/

.navbar{

    position:sticky;

    top:0;

    z-index:999;

    background:rgba(7,17,31,.97);

    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(255,255,255,.05);

    padding:18px 0;

    transition:var(--transition);

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo h6{

    color:var(--gold);

    font-family:'Cormorant Garamond',serif;

    font-size:1.1rem;

    font-weight:700;

    margin:0;

    line-height:1.2;

    white-space:nowrap;

}

.logo small{

    display:block;

    color:#fff;

    font-size:0.65rem;

    letter-spacing:1px;

    line-height:1.1;

    white-space:nowrap;

}

.logo-text h2{

    color:var(--gold);

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    margin:0;

    font-weight:700;

}

.logo-text span{

    color:var(--gold);

    font-size:12px;

    letter-spacing:4px;

}

.nav-link{

    color:white !important;

    margin-left:20px;

    font-weight:500;

    position:relative;

    transition:var(--transition);

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.35s;

}

.nav-link:hover{

    color:var(--gold)!important;

}

.nav-link:hover::after,

.nav-link.active::after{

    width:100%;

}

.nav-link.active{

    color:var(--gold)!important;

}

/*==============================
 BRAND LOGO
==============================*/

.brand-logo{

    width:auto;

    max-height:75px;

    object-fit:contain;

    border-radius:6px;

}

/*==============================
 BUTTONS
==============================*/

.btn-gold{

    background:var(--gold);

    color:white;

    border:none;

    padding:15px 38px;

    border-radius:6px;

    font-weight:600;

    transition:var(--transition);

    box-shadow:0 12px 30px rgba(200,155,60,.25);

}

.btn-gold:hover{

    background:var(--gold-dark);

    color:white;

    transform:translateY(-4px);

}

.btn-outline-light{

    padding:15px 38px;

    border:2px solid white;

    transition:var(--transition);

}

.btn-outline-light:hover{

    background:white;

    color:var(--primary);

}

/*==============================
 HERO
==============================*/

.hero{

    min-height:60vh;

    display:flex;

    align-items:center;

    position:relative;

    background:
    linear-gradient(rgba(4,10,20,.80),rgba(4,10,20,.80)),
    url("images/hero.jpg.jpeg");

    background-size:cover;

    background-position:center;

    color:white;

}

.hero-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:3px;

    margin-bottom:15px;

}

.hero h1{

    font-size:78px;

    line-height:1.1;

    font-family:'Cormorant Garamond',serif;

    margin-bottom:25px;

    font-weight:700;

}

.hero h1 span{

    color:var(--gold);

}

.hero .lead{

    color:#ddd;

    font-size:20px;

    margin-bottom:40px;

    max-width:650px;

}

/*==============================
 CONSULTATION CARD
==============================*/

.consult-card{

    background:rgba(16,28,45,.98);

    border-radius:20px;

    padding:45px;

    border:1px solid rgba(200,155,60,.25);

    box-shadow:0 30px 60px rgba(0,0,0,.35);

}

.consult-card h3{

    color:white;

    margin-bottom:25px;

}

.consult-card li{

    color:#ddd;

    margin-bottom:18px;

}

.consult-card li i{

    color:var(--gold);

    margin-right:12px;

}
/*====================================================
 STATISTICS
======================================================*/

.stats{

    position:relative;
    margin-top:-70px;
    z-index:100;
    background:transparent;

}

.stat-box{

    background:#fff;
    border-radius:20px;
    padding:45px 25px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:var(--transition);
    height:100%;

}

.stat-box:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.18);

}

.stat-box i{

    font-size:42px;
    color:var(--gold);
    margin-bottom:20px;

}

.stat-box h2{

    font-size:46px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:10px;

}

.stat-box p{

    color:#666;
    margin:0;

}

/*====================================================
 ABOUT
======================================================*/

.about{

    background:#fff;

}

.about img{

    border-radius:20px;
    box-shadow:var(--shadow);

}

.about h2{

    font-family:'Cormorant Garamond',serif;
    font-size:50px;
    color:var(--primary);
    margin-bottom:25px;

}

.about p{

    margin-bottom:20px;
    color:#666;
    font-size:17px;

}

/*====================================================
 WHY CHOOSE US
======================================================*/

.why-us{

    background:#f8f9fa;

}

.why-us img{

    border-radius:20px;
    box-shadow:var(--shadow);

}

.why-us h2{

    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    color:var(--primary);

}

.choose-list{

    margin-top:30px;

}

.choose-list li{

    margin-bottom:18px;
    font-size:17px;
    color:#444;

}

.choose-list i{

    color:var(--gold);
    margin-right:12px;

}

/*====================================================
 PRACTICE AREAS
======================================================*/

.practice{

    background:var(--primary);

}

.practice .section-title{

    color:white;

}

.practice-card{

    background:var(--secondary);

    border-radius:20px;

    padding:45px 30px;

    text-align:center;

    border:1px solid rgba(200,155,60,.15);

    transition:var(--transition);

    height:100%;

}

.practice-card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

    box-shadow:0 30px 60px rgba(0,0,0,.30);

}

.practice-card i{

    font-size:50px;

    color:var(--gold);

    margin-bottom:20px;

}

.practice-card h4{

    color:white;

    margin-bottom:18px;

}

.practice-card p{

    color:#d7d7d7;

}

/*====================================================
 CASE RESULTS
======================================================*/

.case-results{

    background:#0b1628;
    color:white;

}

.case-results .section-title{

    color:white;

}

.result-box{

    padding:35px;
    transition:var(--transition);

}

.result-box:hover{

    transform:translateY(-8px);

}

.result-box i{

    font-size:48px;
    color:var(--gold);
    margin-bottom:20px;

}

.result-box h5{

    color:white;
    margin-bottom:12px;

}

.result-box p{

    color:#d8d8d8;

}
/*====================================================
 TEAM
======================================================*/

.team{

    background:#ffffff;

}

.team-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

    height:100%;

}

.team-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.18);

}

.team-card img{

    width:100%;

    height:350px;

    object-fit:cover;

}

.team-content{

    padding:35px;

}

.team-content h4{

    color:var(--primary);

    margin-bottom:8px;

    font-size:26px;

}

.team-content h6{

    color:var(--gold);

    margin-bottom:18px;

    font-weight:600;

}

.team-content p{

    color:#666;

    font-size:15px;

}

/*====================================================
 TESTIMONIALS
======================================================*/

.testimonials{

    background:#f8f9fa;

}

.testimonial{

    background:#fff;

    border-radius:20px;

    padding:40px;

    box-shadow:var(--shadow);

    transition:var(--transition);

    border-top:4px solid var(--gold);

    height:100%;

}

.testimonial:hover{

    transform:translateY(-10px);

}

.testimonial i{

    font-size:34px;

    color:var(--gold);

    margin-bottom:20px;

}

.testimonial p{

    font-style:italic;

    color:#666;

}

.testimonial h5{

    color:var(--primary);

    margin-top:25px;

}

/*====================================================
 CONTACT
======================================================*/

.contact{

    background:#ffffff;

}

.contact h2{

    margin-bottom:25px;

}

.contact p{

    margin-bottom:18px;

}

.contact i{

    color:var(--gold);

    margin-right:10px;

}

.contact .form-control{

    border-radius:10px;

    padding:15px;

    border:1px solid #ddd;

    margin-bottom:18px;

    transition:.3s;

}

.contact .form-control:focus{

    border-color:var(--gold);

    box-shadow:0 0 0 .2rem rgba(200,155,60,.2);

}

.contact textarea{

    min-height:180px;

    resize:none;

}

/*====================================================
 FOOTER
======================================================*/

footer{

    background:var(--primary);

    color:#ddd;

    padding:90px 0 30px;

}

footer h3,
footer h5{

    color:white;

    margin-bottom:25px;

}

footer p{

    color:#bbb;

}

footer ul{

    padding:0;

}

footer ul li{

    margin-bottom:14px;

}

footer ul li a{

    color:#ddd;

    transition:.3s;

}

footer ul li a:hover{

    color:var(--gold);

    padding-left:5px;

}

footer hr{

    margin:40px 0;

    border-color:rgba(255,255,255,.1);

}

/*====================================================
 SOCIAL ICONS
======================================================*/

.social{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.social a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:var(--secondary);

    color:white;

    transition:var(--transition);

}

.social a:hover{

    background:var(--gold);

    transform:translateY(-5px);

}

/*====================================================
 WHATSAPP BUTTON
======================================================*/

.whatsapp{

    position:fixed;

    bottom:25px;

    right:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.1);

    color:white;

}

/*====================================================
 SMOOTH ANIMATIONS
======================================================*/

.practice-card,
.stat-box,
.team-card,
.testimonial,
.result-box,
.consult-card,
.btn-gold{

    transition:all .35s ease;

}

.practice-card:hover,
.stat-box:hover,
.team-card:hover,
.testimonial:hover,
.result-box:hover,
.consult-card:hover{

    transform:translateY(-10px);

}

/*====================================================
 SCROLLBAR
======================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gold-dark);

}

/*====================================================
 RESPONSIVE
======================================================*/

@media (min-width: 992px) and (max-width: 1200px){

.nav-link{

    margin-left:10px;

    font-size:14px;

}

}

@media(max-width:991px){

.top-left{

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

.hero{

    text-align:center;

    padding-top:120px;

}

.hero h1{

    font-size:56px;

}

.hero-buttons{

    justify-content:center;

}

.consult-card{

    margin-top:50px;

}

.section-title{

    font-size:42px;

}

}

@media(max-width:768px){

.stat-box{

    padding:22px 12px;
    border-radius:14px;

}

.stat-box i{

    font-size:28px;
    margin-bottom:10px;

}

.stat-box h2{

    font-size:26px;
    margin-bottom:4px;

}

.stat-box p{

    font-size:13px;

}

.hero{

    min-height:auto;

    padding:120px 0 80px;

}

.hero h1{

    font-size:42px;

}

.hero .lead{

    font-size:17px;

}

.logo-text h2{

    font-size:26px;

}

.logo-text span{

    font-size:10px;

    letter-spacing:2px;

}

.section-title{

    font-size:34px;

}

.team-card img{

    height:280px;

}

footer{

    text-align:center;

}

.social{

    justify-content:center;

}

.whatsapp{

    width:55px;

    height:55px;

    font-size:28px;

}

}