:root {

    --gold: #C89B5A;

    --gold-light: #dbb07c;

    --dark: #111111;

    --light-bg: #f8f6f2;

    --white: #ffffff;

    --black: #000;

    --font-body: 'Poppins', sans-serif;

    --font-display: 'Playfair Display', serif;

}



body {

    font-family: var(--font-body);

    background: var(--white);

    color: #222;

    overflow-x: hidden;

}



h1,

h2,

h3,

h4,

h5,

.display-font {

    font-family: var(--font-display);

    font-weight: 600;

}



.gold-text {

    color: var(--gold);

}



.gold-bg {

    background: var(--gold);

}



.dark-bg {

    background: var(--dark);

}



.light-bg {

    background: var(--light-bg);

}



.text-gold-hover:hover {

    color: var(--gold) !important;

    transition: 0.3s;

}



a {

    text-decoration: none;

    transition: 0.3s;

}



.btn-gold {

    background: var(--gold);

    color: #fff;

    border: 1px solid var(--gold);

    font-weight: 500;

    padding: 10px 30px;

    border-radius: 50px;

    transition: 0.3s;

}



.btn-gold:hover {

    background: transparent;

    color: var(--gold);

    border-color: var(--gold);

}



.btn-outline-gold {

    background: transparent;

    color: var(--gold);

    border: 1px solid var(--gold);

    font-weight: 500;

    padding: 10px 30px;

    border-radius: 50px;

    transition: 0.3s;

}



.btn-outline-gold:hover {

    background: var(--gold);

    color: #fff;

}



/* Top bar */

.top-bar {

    background: var(--dark);

    color: #ddd;

    font-size: 0.85rem;

    padding: 6px 0;

    border-bottom: 1px solid rgba(200, 155, 90, 0.2);

}



.top-bar a {

    color: #ccc;

    margin: 0 6px;

    transition: 0.3s;

}



.top-bar a:hover {

    color: var(--gold);

}



.top-bar .social-icons a {

    font-size: 0.9rem;

    display: inline-block;

}



/* Navbar */

.navbar {

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(4px);

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);

    padding: 12px 0;

    transition: 0.4s;

}



.navbar.sticky {

    position: fixed;

    top: 0;

    width: 100%;

    z-index: 999;

    animation: slideDown 0.4s ease;

    background: rgba(255, 255, 255, 0.98);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);

}



@keyframes slideDown {

    from {

        transform: translateY(-100%);

        opacity: 0;

    }



    to {

        transform: translateY(0);

        opacity: 1;

    }

}



.navbar-brand img {

    height: 44px;

    /* width: auto; */
    width: 270px;

}



.nav-link {

    font-weight: 500;

    color: #222 !important;

    margin: 0 12px;

    position: relative;

    font-size: 0.95rem;

}



.nav-link::after {

    content: '';

    position: absolute;

    bottom: -4px;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: 0.3s;

}



.nav-link:hover::after,

.nav-link.active::after {

    width: 100%;

}



.nav-link:hover {

    color: var(--gold) !important;

}



.cta-call {

    background: var(--gold);

    color: #fff !important;

    padding: 8px 24px;

    border-radius: 50px;

    font-weight: 500;

}



.cta-call:hover {

    background: var(--dark);

    color: var(--gold) !important;

}



/* Hero slider */

.swiper-slide {

    /* min-height: 88vh; */

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    position: relative;

}



.swiper-slide::before {

    content: '';

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 1;

}



.slide-content {

    position: relative;

    z-index: 2;

    color: #fff;

    max-width: 760px;

    padding: 20px;

}



.slide-content h1 {

    font-size: 4rem;

    font-weight: 700;

    line-height: 1.1;

}



.slide-content p {

    font-size: 1.25rem;

    opacity: 0.9;

    font-weight: 300;

}



.swiper-pagination-bullet-active {

    background: var(--gold) !important;

}



/* Section titles */

section{

    overflow: hidden;

}

.section-title {

    font-size: 2.8rem;

    font-weight: 700;

    letter-spacing: -0.5px;

}



.gold-line {

    width: 70px;

    height: 3px;

    background: var(--gold);

    margin: 12px auto 20px;

}



/* Cards */

.service-card {

    background: #fff;

    border-radius: 16px;

    padding: 30px 20px;

    transition: all 0.35s ease;

    border: 1px solid rgba(200, 155, 90, 0.08);

    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.02);

    height: 100%;

    text-align: center;

}



.service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(200, 155, 90, 0.12);

    border-color: var(--gold);

}



.service-card i {

    font-size: 3.2rem;

    color: var(--gold);

    margin-bottom: 16px;

}



/* Counter */

.counter-box {

    text-align: center;

    padding: 24px 12px;

}



.counter-box .number {

    font-size: 3.2rem;

    font-weight: 700;

    color: var(--gold);

    font-family: var(--font-display);

}



/* Gallery */

.gallery-item {

    overflow: hidden;

    border-radius: 16px;

    transition: 0.4s;

}



.gallery-item img {

    transition: 0.4s;

    width: 100%;

    height: 260px;

    object-fit: cover;

}



.gallery-item:hover img {

    transform: scale(1.05);

}



.gallery-section {

    background: #f8f9fa;

}



.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 12px;

}



.gallery-item img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    transition: .5s;

}



.gallery-item:hover img {

    transform: scale(1.1);

}



.gallery-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .6);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition: .4s;

}



.gallery-item:hover .gallery-overlay {

    opacity: 1;

}



/* Lightbox */



#lightbox {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .95);

    display: none;

    justify-content: center;

    align-items: center;

    z-index: 99999;

}



#lightbox img {

    max-width: 90%;

    max-height: 85vh;

    border-radius: 10px;

    animation: zoomIn .4s ease;

}



.close-btn {

    position: absolute;

    top: 20px;

    right: 35px;

    color: #fff;

    font-size: 45px;

    cursor: pointer;

    transition: .3s;

}



.close-btn:hover {

    color: #ffc107;

}



@keyframes zoomIn {

    from {

        transform: scale(.7);

        opacity: 0;

    }



    to {

        transform: scale(1);

        opacity: 1;

    }

}



/* Responsive */



@media(max-width:768px) {



    .gallery-item img {

        height: 220px;

    }



    .close-btn {

        font-size: 35px;

        right: 20px;

    }



    #lightbox img {

        max-width: 95%;

    }

}



/* Testimonial */

.testimonial-card {

    background: #fff;

    padding: 32px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);

    border: 1px solid #eee;

}



.testimonial-card .stars {

    color: var(--gold);

    letter-spacing: 4px;

}



/* Process */

.process-step {

    text-align: center;

    position: relative;

}



.process-step .circle {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    background: var(--dark);

    color: var(--gold);

    font-size: 1.8rem;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 16px;

    border: 3px solid var(--gold);

    transition: 0.3s;

    font-family: var(--font-display);

}



.process-step:hover .circle {

    background: var(--gold);

    color: #fff;

    transform: scale(1.05);

}



/* Contact */

.contact-info-card {

    background: #fff;

    padding: 20px;

    border-radius: 16px;

    border-left: 4px solid var(--gold);

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);

}



.contact-info-card i {

    color: var(--gold);

    font-size: 1.4rem;

    width: 40px;

}



/* CTA */

.cta-section {

    background: var(--dark);

    padding: 80px 0;

    color: #fff;

}



.cta-section h2 {

    font-size: 3rem;

}



/* Footer */

.footer-dark {

    background: #0a0a0a;

    color: #bbb;

}



.footer-dark a {

    color: #ccc;

    transition: 0.3s;

}



.footer-dark a:hover {

    color: var(--gold);

}



.footer-bottom {

    border-top: 1px solid #222;

    padding: 16px 0;

    font-size: 0.9rem;

}



/* floating */

.float-btn {

    position: fixed;

    z-index: 999;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    color: #fff;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);

    transition: 0.3s;

}



.float-btn:hover {

    transform: scale(1.08);

    color: #fff;

}



.float-call {

    bottom: 30px;

    left: 30px;

    background: var(--gold);

}



.float-wa {

    bottom: 30px;

    right: 30px;

    background: #25D366;

}



/* responsive */

@media (max-width: 992px) {

    .slide-content h1 {

        font-size: 2.8rem;

    }



    .section-title {

        font-size: 2.2rem;

    }



    .top-bar .d-none.d-md-flex {

        display: none !important;

    }



    .navbar .cta-call {

        padding: 6px 18px;

        font-size: 0.85rem;

    }

}



@media (max-width: 576px) {

    .slide-content h1 {

        font-size: 2.2rem;

    }



    .process-step .circle {

        width: 60px;

        height: 60px;

        font-size: 1.4rem;

    }



    .float-btn {

        width: 50px;

        height: 50px;

        font-size: 22px;

    }

}