:root{
    --primary:#8b0000;
    --secondary:#d4af37;
    --dark:#0f0f0f;
    --dark-light:#171717;
    --white:#ffffff;
    --text:#d7d7d7;
    --border:rgba(255,255,255,.08);
    --shadow:0 15px 40px rgba(0,0,0,.25);
    --transition:.4s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#000;
    color:var(--text);
    overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Cinzel',serif;
    color:#fff;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.section-padding{
    padding:100px 0;
}

/* ==========================
   TOP BAR
========================== */

.top-bar{
    background:#050505;
    padding:10px 0;
    font-size:14px;
    border-bottom:1px solid var(--border);
}

.top-left i{
    color:var(--secondary);
    margin-right:8px;
}

.top-right{
    color:var(--secondary);
    font-weight:600;
}

/* ==========================
   NAVBAR
========================== */

.custom-navbar{
    background:rgba(0,0,0,.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--border);
}

.navbar-brand{
    font-family:'Cinzel',serif;
    font-size:30px;
    color:var(--secondary)!important;
    font-weight:700;
}

.navbar-toggler{
    border:none;
    color:#fff;
}

.nav-link{
    color:#fff!important;
    margin:0 10px;
    position:relative;
    transition:var(--transition);
}

.nav-link:hover{
    color:var(--secondary)!important;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:var(--transition);
}

.nav-link:hover::after{
    width:100%;
}

.call-btn{
    background:linear-gradient(45deg,#b8860b,#ffd700);
    color:#000;
    padding:12px 25px;
    border-radius:40px;
    font-weight:700;
    margin-left:20px;
    transition:var(--transition);
}

.call-btn:hover{
    transform:translateY(-3px);
    color:#000;
}

/* ==========================
   HERO SECTION
========================== */

.hero-section{
    position:relative;
    background:url('../images/bg1.png') center center/cover no-repeat;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    rgba(0,0,0,.85),
    rgba(0,0,0,.85)
    );
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-tag{
    display:inline-block;
    padding:10px 20px;
    border:1px solid rgba(212,175,55,.4);
    border-radius:50px;
    color:var(--secondary);
    margin-bottom:25px;
    font-size:14px;
}

.hero-content h1{
    font-size:70px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-content p{
    font-size:18px;
    line-height:1.9;
    max-width:650px;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);
}

.primary-btn{
    background:linear-gradient(45deg,#b8860b,#ffd700);
    color:#000;
}

.secondary-btn{
    background:#25D366;
    color:#fff;
}

.primary-btn:hover,
.secondary-btn:hover{
    transform:translateY(-4px);
}

/* ==========================
   CONSULTATION CARD
========================== */

.consultation-card{
    position:relative;
    z-index:2;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
    padding:35px;
    box-shadow:var(--shadow);
}

.consultation-card h3{
    text-align:center;
    margin-bottom:25px;
}

.consultation-card input,
.consultation-card select,
.consultation-card textarea{
    width:100%;
    background:#111;
    border:1px solid #222;
    color:#fff;
    padding:14px 15px;
    margin-bottom:15px;
    border-radius:10px;
    outline:none;
}

.consultation-card button{
    width:100%;
    border:none;
    padding:15px;
    border-radius:10px;
    background:linear-gradient(45deg,#b8860b,#ffd700);
    color:#000;
    font-weight:700;
}

/* ==========================
   SECTION HEADING
========================== */

.section-heading span{
    color:var(--secondary);
    display:block;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:48px;
    margin-bottom:20px;
}

/* ==========================
   ABOUT
========================== */

.about-section{
    background:rgba(0,0,0,.95);
}

.about-image img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

.about-section p{
    line-height:2;
    margin-bottom:20px;
}

.feature-item{
    margin-bottom:15px;
    font-weight:500;
}

.feature-item i{
    color:var(--secondary);
    margin-right:10px;
}

/* ==========================
   SERVICES
========================== */

.services-section{
    background:linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)), url('../images/bg1.png') center center/cover;
}

.service-box{
    background:#111;
    border:1px solid var(--border);
    padding:35px 25px;
    text-align:center;
    border-radius:20px;
    transition:var(--transition);
    margin-bottom:30px;
	font-size: 14px;
}

.service-box:hover{
    transform:translateY(-10px);
    border-color:var(--secondary);
}

.service-box i{
    font-size:18px;
    color:#000;
    margin-bottom:20px;
}

.service-box h4{
    margin-bottom:15px;
}
.service-box h4 a{
   color:#fff;
}
/* SERVICE IMAGE */

.service-image{
    width:100%;
    height:320px;
    overflow:hidden;
    border-radius:15px;
    margin-bottom:20px;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.service-box:hover .service-image img{
    transform:scale(1.1);
}

/* SERVICE BUTTON */

.service-btn{
    display:inline;
    margin-top:15px;
    padding:12px 25px;
    background:#fff;
    color:#000;
    font-weight:600;
    border-radius:50px;
    transition:.4s;
}

.service-btn:hover{
    color:#000;
    transform:translateY(-3px);
}

.service-btn i{
    margin-right:8px;
}
/* ==========================
   COUNTERS
========================== */

.counter-section{
    background:rgba(0,0,0,.95);
    padding:90px 0;
}

.counter-box{
    padding:25px;
}

.counter-box h3{
    font-size:55px;
    color:var(--secondary);
}

.counter-box p{
    color:#fff;
}
.issues-section{
    background:linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)), url('../images/bg1.png') center center/cover;
    padding:100px 0;
}

.issues-section .section-heading h2{
    color:#fff;
    font-family:'Cinzel',serif;
    font-size:42px;
    font-weight:700;
    text-transform:uppercase;
    max-width:900px;
    line-height:1.3;
}

.issue-card{
    background:#050505;
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:35px;
    height:100%;
    transition:.4s;
    position:relative;
}

.issue-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 50px rgba(212,175,55,.15);
}

.issue-number{
    width:42px;
    height:42px;
    background:#2c2200;
    border:1px solid #d4af37;
    color:#ffd700;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-bottom:25px;
}

.issue-card h4{
    color:#fff;
    font-family:'Cinzel',serif;
    font-size:28px;
    margin-bottom:20px;
    line-height:1.3;
}

.issue-card p{
    color:#bdbdbd;
    line-height:1.9;
    margin-bottom:25px;
}

.issue-btn{
    display:inline-block;
    background:linear-gradient(45deg,#b8860b,#ffd700);
    color:#000;
    padding:12px 28px;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
}

.issue-btn:hover{
    color:#000;
    transform:translateY(-3px);
}

@media(max-width:768px){

    .issues-section .section-heading h2{
        font-size:28px;
    }

    .issue-card h4{
        font-size:22px;
    }

}
.services-grid-list{
    background:#000;
    padding:100px 0;
}

.section-title span{
    color:#d4af37;
    letter-spacing:2px;
    font-size:14px;
}

.section-title h2{
    color:#fff;
    font-size:52px;
    margin-top:15px;
    font-family:'Cinzel',serif;
}

.service-list-box{
    background:#0d0d0d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    height:100%;
    transition:.4s;
}

.service-list-box:hover{
    border-color:#d4af37;
    transform:translateY(-8px);
}

.service-list-box h4 i{
    color:#d4af37;
    margin-right:10px;
}

.service-list-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.service-list-box ul li{
    color:#d8d8d8;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
    position:relative;
    padding-left:28px;
}
.service-list-box ul li a{
    color:#fff;
     
}
.service-list-box ul li:last-child{
    border-bottom:none;
}

.service-list-box ul li::before{
    content:"★";
    position:absolute;
    left:0;
    color:#d4af37;
}

@media(max-width:768px){

.section-title h2{
    font-size:34px;
}

.service-list-box{
    margin-bottom:20px;
}

}
/* ==========================
   WHY US
========================== */

.why-us{
    background:linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)), url('../images/bg1.png') center center/cover;
}

.why-box{
    background:#111;
    padding:40px 25px;
    text-align:center;
    border-radius:20px;
    border:1px solid var(--border);
    transition:var(--transition);
}

.why-box:hover{
    transform:translateY(-8px);
}

.why-box i{
    font-size:55px;
    color:var(--secondary);
    margin-bottom:20px;
}

.why-box h4{
    margin-bottom:15px;
}
.consultation-methods{
    background:#000;
    padding:100px 0;
}

.consultation-heading{
    max-width:850px;
    margin:auto;
}

.consultation-badge{
    display:inline-block;
    padding:10px 25px;
    border:1px solid #7d6400;
    border-radius:50px;
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
}

.consultation-heading h2{
    margin-top:25px;
    font-size:65px;
    line-height:1.2;
    color:#fff;
    font-family:'Cinzel',serif;
}

.consultation-heading h2 span{
    display:block;
    color:#d4af37;
}

.consultation-heading p{
    color:#bdbdbd;
    margin-top:20px;
    font-size:18px;
    line-height:1.8;
}

.consult-card{
    background:#050505;
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    overflow:hidden;
    position:relative;
    transition:.4s;
    height:100%;
}

.consult-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 60px rgba(212,175,55,.15);
}

.consult-icon{
    position:absolute;
    top:18px;
    left:18px;
    width:50px;
    height:50px;
    border-radius:15px;
    background:#111;
    border:1px solid #3f3200;
    color:#ffd700;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:5;
    font-size:20px;
}

.consult-icon.whatsapp{
    color:#25D366;
}

.consult-image{
   
    overflow:hidden;
}

.consult-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.consult-card:hover .consult-image img{
    transform:scale(1.08);
}

.consult-content{
    padding:30px;
}

.consult-content h4{
    color:#fff;
    font-size:30px;
    margin-bottom:15px;
    font-family:'Cinzel',serif;
}

.consult-content p{
    color:#bdbdbd;
    line-height:1.8;
    margin-bottom:25px;
}

.consult-content a{
    color:#fff;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:.4s;
}

.consult-content a:hover{
    color:#d4af37;
}

@media(max-width:991px){

.consultation-heading h2{
    font-size:48px;
}

}

@media(max-width:768px){

.consultation-heading h2{
    font-size:36px;
}

.consult-content h4{
    font-size:24px;
}

.consult-image{
    height:220px;
}

}
/* ==========================
   TESTIMONIAL
========================== */

.testimonial-section{
    background:linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)), url('../images/bg1.png') center center/cover;
}

.testimonial-box{
    background:#111;
    border-radius:20px;
    padding:30px;
    border:1px solid var(--border);
    text-align:center;
    margin-bottom:30px;
}

.testimonial-box p{
    margin:20px 0;
    line-height:1.8;
}

.testimonial-box h5{
    color:var(--secondary);
}
.client-info{
    display:flex;
    align-items:center;
    margin-bottom:20px;
}

.client-info img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #d4af37;
    margin-right:15px;
}

.client-info h5{
    color:#fff;
    margin-bottom:5px;
    font-size:20px;
}

.client-info span{
    color:#d4af37;
    font-size:14px;
}

.testimonial-card{
    background:#0f0f0f;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:30px;
}

.testimonial-card p{
    color:#cfcfcf;
    line-height:1.9;
}
.featured-services{
    background:#000;
    padding:100px 0;
}

.section-title span{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    color:#fff;
    font-size:52px;
    margin:15px 0;
    font-family:'Cinzel',serif;
}

.section-title p{
    color:#bdbdbd;
    max-width:700px;
    margin:auto;
}

.service-card-new{
    background:#050505;
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    overflow:hidden;
    transition:.4s;
    height:100%;
}

.service-card-new:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 50px rgba(212,175,55,.15);
}

.service-card-new img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.service-content{
    padding:25px;
}

.service-content h4{
    color:#fff;
    margin-bottom:15px;
    font-family:'Cinzel',serif;
}
.service-content h4 a{
   color:#fff;
}
.service-content p{
    color:#bdbdbd;
    line-height:1.8;
    margin-bottom:20px;
}

.service-call-btn{
    display:inline-block;
    background:linear-gradient(
    45deg,
    #b8860b,
    #ffd700
    );
    color:#000;
    padding:12px 28px;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
}

.service-call-btn:hover{
    color:#000;
    transform:translateY(-3px);
}

@media(max-width:768px){

.section-title h2{
    font-size:34px;
}

}
.premium-cta{
    background:linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)), url('../images/bg1.png') center center/cover;
    padding:100px 0;
}

.cta-wrapper{
    background:#0a0a0a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:70px;
    position:relative;
    overflow:hidden;
}

.cta-wrapper::before{
    content:'';
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background:
    radial-gradient(
    circle,
    rgba(212,175,55,.06),
    transparent 70%
    );
    pointer-events:none;
}

.cta-header{
    position:relative;
    z-index:2;
}

.cta-badge{
    display:inline-block;
    padding:10px 25px;
    border:1px solid #6f5600;
    border-radius:50px;
    color:#d4af37;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.cta-header h2{
    margin-top:25px;
    font-size:62px;
    color:#fff;
    font-family:'Cinzel',serif;
    line-height:1.2;
}

.cta-header h2 span{
    display:block;
    color:#d4af37;
}

.cta-header p{
    max-width:700px;
    margin:20px auto 0;
    color:#bdbdbd;
    line-height:1.8;
}

.cta-feature{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:30px;
    text-align:center;
    height:100%;
    transition:.4s;
}

.cta-feature:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.feature-icon{
    width:60px;
    height:60px;
    background:#221b00;
    border:1px solid #d4af37;
    border-radius:15px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon i{
    color:#ffd700;
    font-size:24px;
}

.cta-feature h4{
    color:#fff;
    margin-bottom:15px;
    font-family:'Cinzel',serif;
}

.cta-feature p{
    color:#bdbdbd;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:40px;
    flex-wrap:wrap;
}

.whatsapp-cta{
    background:linear-gradient(
    45deg,
    #b8860b,
    #ffd700
    );
    color:#000;
    padding:14px 32px;
    border-radius:50px;
    font-weight:700;
}

.call-cta{
    background:#2c2c2c;
    color:#fff;
    padding:14px 32px;
    border-radius:50px;
    font-weight:700;
}

.whatsapp-cta:hover,
.call-cta:hover{
    transform:translateY(-3px);
}

.cta-note{
    margin-top:25px;
    text-align:center;
    color:#8f8f8f;
    font-size:13px;
    line-height:1.8;
}

@media(max-width:991px){

.cta-wrapper{
    padding:40px;
}

.cta-header h2{
    font-size:42px;
}

}

@media(max-width:768px){

.cta-header h2{
    font-size:32px;
}

.cta-wrapper{
    padding:30px 20px;
}

.cta-buttons{
    flex-direction:column;
}

.whatsapp-cta,
.call-cta{
    width:100%;
    text-align:center;
}

}
.footer-cta{
    background:#000;
    padding:50px 0 0;
}

.footer-cta-box{
    background:linear-gradient(
    135deg,
    #0f0f0f,
    #171717
    );
    border:1px solid rgba(212,175,55,.15);
    border-radius:25px;
    padding:60px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.footer-cta-box::before{
    content:'';
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background:
    radial-gradient(
    circle,
    rgba(212,175,55,.05),
    transparent 70%
    );
    pointer-events:none;
}

.footer-badge{
    display:inline-block;
    padding:10px 22px;
    border:1px solid #6f5600;
    border-radius:50px;
    color:#d4af37;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.footer-cta-box h2{
    margin:25px 0 20px;
    color:#fff;
    font-size:52px;
    font-family:'Cinzel',serif;
}

.footer-cta-box h2 span{
    display:block;
    color:#d4af37;
}

.footer-cta-box p{
    color:#bdbdbd;
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.9;
}

.footer-cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.footer-whatsapp-btn{
    background:linear-gradient(
    45deg,
    #b8860b,
    #ffd700
    );
    color:#000;
    padding:14px 30px;
    border-radius:50px;
    font-weight:700;
}

.footer-call-btn{
    background:#2b2b2b;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    font-weight:700;
}

.footer-whatsapp-btn:hover,
.footer-call-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:768px){

.footer-cta-box{
    padding:35px 20px;
}

.footer-cta-box h2{
    font-size:32px;
}

.footer-cta-buttons{
    flex-direction:column;
}

.footer-whatsapp-btn,
.footer-call-btn{
    width:100%;
}

}

/* ==========================
   FOOTER
========================== */
.custom-footer{
    background:linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)), url('../images/bg1.png') center center/cover;
    padding:80px 0;
}

.footer-logo{
    color:#d4af37;
    font-size:38px;
    font-weight:700;
    margin-bottom:25px;
}

.footer-widget p{
    color:#ddd;
    line-height:2;
    font-size:17px;
}

.footer-widget h4{
    color:#fff;
    font-size:28px;
    margin-bottom:30px;
    position:relative;
    font-family:'Cinzel',serif;
}

.footer-widget h4::after{
    content:'';
    width:90px;
    height:4px;
    background:#d4af37;
    position:absolute;
    left:0;
    bottom:-12px;
}

.footer-widget ul{
    list-style:none;
    padding:0;
}

.footer-widget ul li{
    margin-bottom:18px;
}

.footer-widget ul li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-widget ul li a:hover{
    color:#d4af37;
    padding-left:8px;
}

.footer-widget ul li a::before{
    content:'›';
    color:#d4af37;
    margin-right:12px;
    font-size:22px;
}

.footer-social{
    margin-top:35px;
}

.footer-social a{
    width:55px;
    height:55px;
    background:#1a1a1a;
    color:#fff;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:10px;
    font-size:20px;
    transition:.3s;
}

.footer-social a:hover{
    background:#d4af37;
    color:#000;
}

.contact-item{
    display:flex;
    align-items:center;
    margin-bottom:25px;
}

.contact-icon{
    width:58px;
    height:58px;
    background:#d40000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;
}

.contact-icon i{
    color:#fff;
    font-size:22px;
}

.contact-item span{
    color:#fff;
    font-size:20px;
}

@media(max-width:991px){

.footer-widget{
    margin-bottom:40px;
}

.footer-logo{
    font-size:30px;
}

.footer-widget h4{
    font-size:28px;
}

}
footer{
    background:#000;
    border-top:1px solid var(--border);
    padding:40px 0;
}

.footer-content{
    text-align:center;
}

.footer-content h3{
    color:var(--secondary);
    margin-bottom:15px;
}

.footer-content p{
    margin-bottom:10px;
}

/* ==========================
   FLOATING BUTTONS
========================== */

.floating-buttons{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:999;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.call-float,
.whatsapp-float{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.call-float{
    background:#c62828;
}

.whatsapp-float{
    background:#25D366;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

.hero-content{
    text-align:center;
    margin-bottom:50px;
}

.hero-content h1{
    font-size:48px;
}

.hero-buttons{
    justify-content:center;
}

.section-heading h2{
    font-size:36px;
}

.call-btn{
    display:none;
}

}

@media(max-width:768px){

.section-padding{
    padding:70px 0;
}

.hero-content h1{
    font-size:38px;
}

.hero-content p{
    font-size:16px;
}

.counter-box h3{
    font-size:40px;
}

.section-heading h2{
    font-size:30px;
}

.consultation-card{
    padding:25px;
}

}

@media(max-width:576px){

.hero-content h1{
    font-size:32px;
}

.primary-btn,
.secondary-btn{
    width:100%;
    text-align:center;
}

.navbar-brand{
    font-size:24px;
}

}
.about-hero{
    background:#000;
    padding:100px 0;
}

.about-tag{
    color:#d4af37;
    letter-spacing:2px;
}

.about-hero h1{
    color:#fff;
    font-size:60px;
    margin:20px 0;
    font-family:'Cinzel', serif;
}

.about-hero p,
.about-content p{
    color:#cfcfcf;
    line-height:1.9;
}
.about-hero strong{
    color:#ffd700;
     
}
.about-btn,
.cta-whatsapp{
    background:linear-gradient(45deg,#b8860b,#ffd700);
    color:#000;
    padding:14px 30px;
    border-radius:50px;
    display:inline-block;
    font-weight:700;
    text-decoration:none;
}

.why-box{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    padding:30px;
    border-radius:20px;
    text-align:center;
}

.why-box h4{
    color:#fff;
}

.why-box p{
    color:#cfcfcf;
}

.cta-box{
    background:#111;
    padding:60px;
    border-radius:25px;
    text-align:center;
}
.services-hero{
    background:#000;
    padding:120px 0 80px;
    text-align:center;
}

.section-tag{
    color:#d4af37;
    letter-spacing:2px;
    text-transform:uppercase;
}

.services-hero h1{
    color:#fff;
    font-size:60px;
    margin:20px 0;
    font-family:'Cinzel',serif;
}

.services-hero p{
    color:#cfcfcf;
    max-width:700px;
    margin:auto;
}

.services-page-section{
    background:#000;
    padding:40px 0 100px;
}

.service-box{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
     
    transition:.4s;
}

.service-box:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.service-box h3{
    color:#fff;
    font-size:28px;
    margin-bottom:15px;
}

.service-box p{
    color:#cfcfcf;
    line-height:1.8;
}

.service-box a{
    color:#d4af37;
    text-decoration:none;
    font-weight:600;
}

.services-cta{
    background:#000;
    padding-bottom:100px;
}

.cta-box{
    background:linear-gradient(135deg,#111,#1a1a1a);
    border:1px solid rgba(212,175,55,.2);
    border-radius:25px;
    padding:60px;
    text-align:center;
}

.cta-box h2{
    color:#fff;
    font-size:48px;
    margin-bottom:15px;
}

.cta-box p{
    color:#cfcfcf;
}

.call-btn,
.whatsapp-btn{
    display:inline-block;
    margin:10px;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.call-btn{
    background:#d4af37;
    color:#000;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}
.service-details-hero{
    background:linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)), url('../images/bg1.png') center center/cover;
    padding:120px 0 80px;
    text-align:center;
}

.service-tag{
    color:#d4af37;
    letter-spacing:2px;
}

.service-details-hero h1{
    color:#fff;
    font-size:60px;
    margin:20px 0;
    font-family:'Cinzel',serif;
}

.service-details-hero p{
    color:#cfcfcf;
    max-width:700px;
    margin:auto;
}

.service-details{
    background:#000;
    padding:80px 0;
}

.service-content img{
    border-radius:20px;
    margin-bottom:30px;
}

.service-content h2,
.service-content h3{
    color:#fff;
    margin-bottom:20px;
}

.service-content p{
    color:#cfcfcf;
    line-height:1.9;
}

.service-list{
    color:#d4af37;
}

.service-list li{
    margin-bottom:12px;
}

.benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.benefit-box{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    padding:15px;
    border-radius:12px;
    color:#fff;
}

.service-sidebar,
.sidebar-cta{
    background:#111;
    padding:30px;
    border-radius:20px;
    margin-bottom:30px;
}

.service-sidebar h4,
.sidebar-cta h4{
    color:#fff;
    margin-bottom:20px;
}

.service-sidebar ul{
    list-style:none;
    padding:0;
}

.service-sidebar li{
    margin-bottom:15px;
}

.service-sidebar a{
    color:#d4af37;
    text-decoration:none;
}

.call-btn,
.wa-btn{
    display:block;
    text-align:center;
    padding:14px;
    border-radius:50px;
    margin-top:15px;
    text-decoration:none;
    font-weight:600;
}

.call-btn{
    background:#d4af37;
    color:#000;
}

.wa-btn{
    background:#25D366;
    color:#fff;
}