:root{

--primary:#C7A24D;
--primary-dark:#9B7B30;

--secondary:#1A1A1A;
--secondary-light:#2D2D2D;

--white:#FFFFFF;
--offwhite:#F8F8F8;

--text:#555555;
--heading:#111111;

--success:#16A34A;
--danger:#DC2626;

--border:#E8E8E8;

--shadow-sm:0 5px 15px rgba(0,0,0,.08);
--shadow-md:0 15px 40px rgba(0,0,0,.12);
--shadow-lg:0 30px 80px rgba(0,0,0,.18);

}

/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f8f8;
    color:var(--text);
    font-size:16px;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
    transition:.3s;
}

ul{
    list-style:none;
}

button,
input,
textarea,
select{
    font-family:inherit;
    outline:none;
    border:none;
}

section{
    position:relative;
}

.container{
    width:min(1200px,92%);
    margin:auto;
}

.section-padding{
    padding:100px 0;
}

/* ==========================================================
   TYPOGRAPHY
========================================================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--primary);
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
}

.section-title h2{
    color:var(--heading);
    font-family:'Cinzel',serif;
    font-size:42px;
    margin:15px 0;
    line-height:1.3;
}

.section-title p{
    width:min(700px,100%);
    margin:auto;
    color:#666;
}

/* ==========================================================
   BUTTONS
========================================================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
    cursor:pointer;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
}

.btn-primary:hover{
    background:var(--primary-dark);
    transform:translateY(-3px);
    box-shadow:var(--shadow-md);
}

.btn-outline{
    border:2px solid var(--primary);
    color:var(--primary);
    background:#fff;
}

.btn-outline:hover{
    background:var(--primary);
    color:#fff;
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
}

.btn-whatsapp:hover{
    background:#1aa94d;
    transform:translateY(-3px);
}

/* ==========================================================
   LOADER
========================================================== */

#loader{
    position:fixed;
    inset:0;
    background:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.loader-content{
    text-align:center;
    color:#fff;
}

.loader-content img{
    width:90px;
    margin:auto auto 20px;
}

.loader-progress{
    width:220px;
    height:6px;
    background:#333;
    border-radius:20px;
    overflow:hidden;
    margin-top:25px;
}

.loader-progress span{
    display:block;
    width:40%;
    height:100%;
    background:var(--primary);
    animation:loading 1.2s linear infinite;
}

@keyframes loading{

0%{
transform:translateX(-120%);
}

100%{
transform:translateX(320%);
}

}

/* ==========================================================
   TOP BAR
========================================================== */

.topbar{
    background:#111;
    color:#fff;
    font-size:14px;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
}

.top-left,
.top-right{
    display:flex;
    gap:25px;
}

.topbar i{
    color:var(--primary);
    margin-right:8px;
}

/* ==========================================================
   HEADER
========================================================== */

#header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(10px);
    box-shadow:0 5px 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:500px;
}

.logo-text h2{
    color:#111;
    font-size:24px;
    font-family:'Cinzel',serif;
}

.logo-text p{
    color:#777;
    font-size:13px;
}

/* ==========================================================
   NAVIGATION
========================================================== */

.nav-menu{
    display:flex;
    gap:30px;
}

.nav-menu a{
    font-weight:500;
    color:#333;
    position:relative;
}

.nav-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;
}

.nav-menu a:hover::after{
    width:100%;
}

.header-buttons{
    display:flex;
    align-items:center;
    gap:15px;
}

.mobile-menu{
    display:none;
    background:none;
    font-size:26px;
    cursor:pointer;
}

/* ==========================================================
   HERO SECTION
========================================================== */

.hero{
    position:relative;
    min-height:90vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#111 0%,#1b1b1b 55%,#222 100%);
    overflow:hidden;
    color:#fff;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(199,162,77,.15),
    transparent 40%);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    z-index:1;
}

.hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:70px;
    padding:120px 0;
}

.hero-left{
    animation:fadeLeft 1s ease;
}

.hero-tag{
    display:inline-block;
    padding:10px 22px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50px;
    color:var(--primary);
    letter-spacing:2px;
    margin-bottom:30px;
    font-size:14px;
    font-weight:600;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(12px);
}

.hero h1{
    font-size:64px;
    line-height:1.15;
    font-family:'Cinzel',serif;
    margin-bottom:30px;
}

.hero h1 span{
    display:block;
    color:var(--primary);
}

.hero p{
    font-size:18px;
    color:#ddd;
    margin-bottom:35px;
    max-width:650px;
}

/* ==========================================================
   HERO FEATURES
========================================================== */

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:45px;
}

.hero-features div{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-weight:500;
}

.hero-features i{
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(199,162,77,.15);
    color:var(--primary);
}

/* ==========================================================
   HERO BUTTONS
========================================================== */

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:45px;
}

/* ==========================================================
   GOOGLE RATING
========================================================== */

.hero-rating{
    display:flex;
    align-items:center;
    gap:18px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    padding:20px 28px;
    border-radius:18px;
    width:max-content;
}

.hero-rating div{
    color:#FFD700;
    font-size:24px;
    letter-spacing:3px;
}

.hero-rating p{
    margin:0;
    color:#eee;
    font-size:15px;
}

/* ==========================================================
   PROFILE CARD
========================================================== */

.hero-right{
    display:flex;
    justify-content:center;
    animation:fadeRight 1s ease;
}

.profile-card{
    background:#fff;
    width:420px;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 35px 70px rgba(0,0,0,.30);
    transition:.45s;
}

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

.profile-card img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.profile-content{
    padding:30px;
    text-align:center;
}

.profile-content h3{
    color:#111;
    font-family:'Cinzel',serif;
    margin-bottom:10px;
    font-size:28px;
}

.profile-content p{
    color:#666;
}

/* ==========================================================
   TRUST STRIP
========================================================== */

.trust-strip{
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    position:relative;
    z-index:5;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:45px 0;
}

.trust-grid div{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
}

.trust-grid i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(199,162,77,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    font-size:22px;
    transition:.35s;
}

.trust-grid div:hover i{
    background:var(--primary);
    color:#fff;
    transform:rotate(360deg);
}

.trust-grid span{
    color:#222;
    font-weight:600;
}

/* ==========================================================
   HERO ANIMATIONS
========================================================== */

@keyframes fadeLeft{

0%{
opacity:0;
transform:translateX(-80px);
}

100%{
opacity:1;
transform:none;
}

}

@keyframes fadeRight{

0%{
opacity:0;
transform:translateX(80px);
}

100%{
opacity:1;
transform:none;
}

}

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(50px);
}

100%{
opacity:1;
transform:none;
}

}

/* ==========================================================
   ABOUT SECTION
========================================================== */

.about{
    background:#f8f8f8;
}

.about-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.image-frame{
    overflow:hidden;
    border-radius:25px;
    box-shadow:var(--shadow-lg);
    background:#fff;
}

.image-frame img{
    width:100%;
    height:560px;
    object-fit:cover;
    transition:.5s;
}

.image-frame:hover img{
    transform:scale(1.06);
}

.experience-box{
    position:absolute;
    bottom:-35px;
    right:-30px;
    width:180px;
    background:var(--primary);
    color:#fff;
    text-align:center;
    padding:30px 20px;
    border-radius:20px;
    box-shadow:var(--shadow-md);
}

.experience-box h2{
    font-size:48px;
    line-height:1;
    margin-bottom:10px;
}

.experience-box span{
    display:block;
    font-size:15px;
    line-height:1.5;
    font-weight:500;
}

/* ==========================================================
   ABOUT CONTENT
========================================================== */

.about-content h3{
    font-family:'Cinzel',serif;
    color:var(--heading);
    font-size:40px;
    margin-bottom:8px;
}

.about-content h4{
    color:var(--primary);
    font-size:18px;
    margin-bottom:25px;
    font-weight:600;
}

.about-content>p{
    color:#666;
    margin-bottom:40px;
}

/* ==========================================================
   ABOUT GRID
========================================================== */

.about-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-bottom:45px;
}

.about-grid div{
    background:#fff;
    padding:28px;
    border-radius:18px;
    box-shadow:var(--shadow-sm);
    transition:.35s;
}

.about-grid div:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-md);
}

.about-grid i{
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(199,162,77,.12);
    color:var(--primary);
    font-size:24px;
    margin-bottom:20px;
}

.about-grid h5{
    font-size:20px;
    margin-bottom:12px;
    color:var(--heading);
}

.about-grid p{
    color:#666;
    font-size:15px;
}

.about-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* ==========================================================
   ACHIEVEMENT SECTION
========================================================== */

.achievement-section{
    background:#111;
    color:#fff;
    padding:90px 0;
}

.achievement-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.achievement-card{
    background:#1d1d1d;
    border-radius:22px;
    padding:45px 25px;
    text-align:center;
    transition:.35s;
}

.achievement-card:hover{
    transform:translateY(-10px);
    background:#222;
}

.achievement-card i{
    width:80px;
    height:80px;
    margin:auto auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(199,162,77,.12);
    color:var(--primary);
    font-size:34px;
}

.achievement-card h2{
    font-size:48px;
    color:#fff;
    margin-bottom:12px;
}

.achievement-card p{
    color:#bbb;
}

/* ==========================================================
   WHY SECTION
========================================================== */

.why{
    background:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:var(--shadow-sm);
    position:relative;
    overflow:hidden;
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.why-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:var(--primary);
}

.why-number{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(199,162,77,.12);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
}

.why-card h3{
    color:var(--heading);
    font-size:24px;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
}

/* ==========================================================
   COMMON CARD EFFECT
========================================================== */

.about-grid div,
.why-card,
.achievement-card{
    border:1px solid transparent;
}

.about-grid div:hover,
.why-card:hover{
    border-color:rgba(199,162,77,.30);
}

/* ==========================================================
   SECTION BACKGROUND SHAPES
========================================================== */

.about::before,
.why::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(199,162,77,.05);
    border-radius:50%;
    filter:blur(100px);
    z-index:0;
}

.about::before{
    top:-100px;
    left:-100px;
}

.why::before{
    right:-120px;
    bottom:-120px;
}

.about .container,
.why .container{
    position:relative;
    z-index:2;
}

/* ==========================================================
   PRACTICE AREA
========================================================== */

.practice{
    background:#f5f5f5;
}

.practice-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.practice-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    padding:40px 35px;
    box-shadow:var(--shadow-sm);
    transition:.4s;
    overflow:hidden;
}

.practice-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:var(--primary);
    transform:scaleX(0);
    transition:.4s;
}

.practice-card:hover{
    transform:translateY(-12px);
    box-shadow:var(--shadow-lg);
}

.practice-card:hover::before{
    transform:scaleX(1);
}

.practice-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(199,162,77,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    font-size:34px;
    margin-bottom:25px;
}

.practice-card h3{
    font-size:28px;
    color:var(--heading);
    margin-bottom:18px;
    font-family:'Cinzel',serif;
}

.practice-card p{
    color:#666;
    margin-bottom:25px;
}

.practice-card ul{
    margin-bottom:35px;
}

.practice-card li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
    color:#555;
}

.practice-card li i{
    color:var(--success);
}

.service-btn{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.service-btn:hover{
    background:var(--primary-dark);
}

/* ==========================================================
   FEATURED CARD
========================================================== */

.practice-card.featured{

    background:linear-gradient(135deg,#111,#222);

    color:#fff;

}

.practice-card.featured h3{

    color:#fff;

}

.practice-card.featured p{

    color:#ddd;

}

.practice-card.featured li{

    color:#eee;

}

.featured-tag{

    position:absolute;
    top:25px;
    right:-45px;

    width:170px;

    text-align:center;

    background:#FFD700;

    color:#111;

    padding:8px;

    font-weight:700;

    transform:rotate(45deg);

}

/* ==========================================================
   PROCESS SECTION
========================================================== */

.process{

    background:#111;

    color:#fff;

}

.process .section-title h2{

    color:#fff;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.process-card{

    text-align:center;

    background:#1d1d1d;

    border-radius:22px;

    padding:40px 25px;

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-10px);

}

.step{

    width:80px;

    height:80px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto auto 25px;

    font-size:34px;

    font-weight:700;

}

.process-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.process-card p{

    color:#bbb;

}

/* ==========================================================
   CONSULTATION BANNER
========================================================== */

.consult-banner{

    background:linear-gradient(135deg,#C7A24D,#9B7B30);

    color:#fff;

    text-align:center;

    padding:90px 0;

}

.consult-content h2{

    font-family:'Cinzel',serif;

    font-size:48px;

    margin-bottom:20px;

}

.consult-content p{

    max-width:700px;

    margin:auto auto 40px;

    font-size:18px;

}

.consult-actions{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/* ==========================================================
   GOOGLE REVIEWS
========================================================== */

.reviews{

    background:#fff;

}

.google-rating-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#f8f8f8;

    padding:50px;

    border-radius:25px;

    box-shadow:var(--shadow-sm);

    margin-bottom:50px;

}

.rating-left h2{

    color:#FFD700;

    font-size:44px;

}

.rating-left h3{

    font-size:30px;

    margin:10px 0;

    color:var(--heading);

}

.rating-left p{

    color:#666;

}

.rating-right{

    display:flex;

    gap:20px;

}

.review-highlights{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.review-highlights div{

    background:#fff;

    padding:28px;

    text-align:center;

    border-radius:18px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.review-highlights div:hover{

    transform:translateY(-8px);

}

.review-highlights i{

    font-size:30px;

    color:var(--primary);

    margin-bottom:18px;

}

/* ==========================================================
   RESOURCES
========================================================== */

.resources{

    background:#f5f5f5;

}

.resource-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.resource-card{

    position:relative;

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.resource-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.resource-card span{

    position:absolute;

    top:18px;

    right:18px;

    background:#111;

    color:#fff;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

}

.resource-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    margin:auto auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(199,162,77,.12);

    color:var(--primary);

    font-size:34px;

}

.resource-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.resource-card p{

    color:#666;

    margin-bottom:25px;

}

.resource-card a{

    color:var(--primary);

    font-weight:600;

}

/* ==========================================================
   ARTICLES
========================================================== */

.articles{
    background:#fff;
}

.articles-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.article-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:.35s;
}

.article-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.article-image{
    overflow:hidden;
}

.article-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.article-card:hover img{
    transform:scale(1.08);
}

.article-content{
    padding:30px;
}

.article-category{
    display:inline-block;
    background:rgba(199,162,77,.12);
    color:var(--primary);
    padding:6px 16px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:18px;
}

.article-content h3{
    font-size:26px;
    color:var(--heading);
    margin-bottom:18px;
}

.article-content p{
    color:#666;
    margin-bottom:22px;
}

.article-content a{
    color:var(--primary);
    font-weight:600;
}

/* ==========================================================
   GALLERY
========================================================== */

.gallery{
    background:#f7f7f7;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:18px;
    transition:.4s;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.04);
    box-shadow:var(--shadow-lg);
}

/* ==========================================================
   FAQ
========================================================== */

.faq{
    background:#fff;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:16px;
    box-shadow:var(--shadow-sm);
    margin-bottom:20px;
    overflow:hidden;
}

.faq-item button{
    width:100%;
    background:none;
    padding:22px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
}

.faq-item div{
    display:none;
    padding:0 30px 25px;
    color:#666;
}

.faq-item.active div{
    display:block;
}

.faq-item.active i{
    transform:rotate(45deg);
}

/* ==========================================================
   CONTACT
========================================================== */

.contact{
    background:#f8f8f8;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:320px 320px 1fr;
    gap:35px;
}

.office-card,
.contact-form{
    background:#fff;
    border-radius:22px;
    padding:35px;
    box-shadow:var(--shadow-sm);
}

.office-card h3{
    margin-bottom:20px;
    color:var(--heading);
}

.office-card p,
.office-card li{
    color:#666;
    margin-bottom:15px;
}

.office-card ul{
    list-style:none;
}

.office-card strong{
    color:#111;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:12px;
    margin-bottom:18px;
    font-size:15px;
}

.contact-form textarea{
    resize:vertical;
}

.contact-form button{
    width:100%;
}

/* ==========================================================
   GOOGLE MAP
========================================================== */

.map-section iframe{
    width:100%;
    height:500px;
    border:0;
}

/* ==========================================================
   FOOTER
========================================================== */

.footer{
    background:#111;
    color:#fff;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:50px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.footer-logo img{
    width:200px;
}

.footer-column h3{
    margin-bottom:22px;
    font-size:24px;
}

.footer-column ul li{
    margin-bottom:12px;
}

.footer-column ul a:hover,
.footer-column a:hover{
    color:var(--primary);
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.footer-social a{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#222;
}

.footer-social a:hover{
    background:var(--primary);
    color:#fff;
}

/* ==========================================================
   COPYRIGHT
========================================================== */

.copyright{
    background:#0b0b0b;
    color:#bbb;
    padding:18px 0;
}

.copyright-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-legal{
    display:flex;
    gap:25px;
}

.footer-legal a:hover{
    color:var(--primary);
}

/* ==========================================================
   FLOATING BUTTONS
========================================================== */

.floating-whatsapp,
.floating-call,
#backToTop{
    position:fixed;
    right:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    z-index:999;
    box-shadow:var(--shadow-md);
}

.floating-whatsapp{
    bottom:160px;
    background:#25D366;
}

.floating-call{
    bottom:90px;
    background:var(--primary);
}

#backToTop{
    bottom:20px;
    background:#111;
    cursor:pointer;
}

/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
}

::-webkit-scrollbar-track{
    background:#eee;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1200px){

.hero-grid,
.about-wrapper,
.contact-wrapper,
.footer-grid{
    grid-template-columns:1fr;
}

.practice-grid,
.articles-grid,
.resource-grid,
.review-highlights,
.achievement-grid,
.process-grid,
.why-grid,
.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:992px){

.nav-menu{
    display:none;
}

.mobile-menu{
    display:block;
}

.hero h1{
    font-size:48px;
}

.section-title h2{
    font-size:34px;
}

}

@media(max-width:768px){

.topbar{
    display:none;
}

.hero-grid,
.about-grid,
.practice-grid,
.resource-grid,
.articles-grid,
.gallery-grid,
.review-highlights,
.process-grid,
.achievement-grid,
.why-grid,
.contact-wrapper,
.footer-grid{
    grid-template-columns:1fr;
}

.hero{
    text-align:center;
}

.hero-buttons,
.about-buttons,
.consult-actions,
.rating-right{
    justify-content:center;
}

.hero-rating{
    margin:auto;
}

.logo-text p{
    display:none;
}

.footer-legal,
.copyright-wrapper{
    flex-direction:column;
    text-align:center;
}

}

@media(max-width:576px){

.hero h1{
    font-size:38px;
}

.section-padding{
    padding:70px 0;
}

.section-title h2{
    font-size:28px;
}

.btn{
    width:100%;
}

.profile-card{
    width:100%;
}

}

/* Sticky Header */

#header.sticky{

padding:0;

background:#fff;

box-shadow:0 10px 35px rgba(0,0,0,.08);

}

/* Mobile Menu */

.nav-menu.active{

display:flex;

flex-direction:column;

position:absolute;

top:90px;

left:0;

width:100%;

background:#fff;

padding:30px;

box-shadow:0 15px 40px rgba(0,0,0,.1);

}

.nav-menu a.active{

color:var(--primary);

}

/* Reveal Animation */

.practice-card,
.about-grid div,
.why-card,
.article-card,
.resource-card,
.process-card,
.achievement-card{

opacity:0;

transform:translateY(60px);

transition:.7s;

}

.animate{

opacity:1;

transform:none;

}

/* Consultation Popup */

.consult-popup{

position:fixed;

right:30px;

bottom:30px;

background:#fff;

width:340px;

padding:30px;

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.2);

display:none;

z-index:9999;

}

.consult-popup.show{

display:block;

animation:popup .5s ease;

}

@keyframes popup{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:none;

}

}

/* Search Modal */

.modal{

position:fixed;

inset:0;

background:rgba(0,0,0,.7);

display:none;

align-items:center;

justify-content:center;

z-index:99999;

}

.modal.show{

display:flex;

}

.modal-box{

background:#fff;

padding:40px;

border-radius:20px;

width:min(600px,90%);

}

.modal-box input{

width:100%;

padding:16px;

border:1px solid #ddd;

margin-top:20px;

}

/* Gallery Viewer */

.image-viewer{

position:fixed;

inset:0;

background:rgba(0,0,0,.9);

display:flex;

align-items:center;

justify-content:center;

z-index:999999;

}

.image-viewer img{

max-width:90%;

max-height:90%;

border-radius:15px;

}

.viewer-close{

position:absolute;

top:30px;

right:40px;

font-size:45px;

color:#fff;

cursor:pointer;

}