:root {
    --bw-black: #1a1a1a;
    --bw-white: #ffffff;
    --bw-gray: #fcfcfc;
    --bw-mid: #6c757d;
    --brown-accent: #A67C52;
    --brown-light: #F5EFEB;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bw-white);
    color: var(--bw-black);
    scroll-behavior: smooth;
}

/* One Page Scroll Logic */
.snap-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

section {
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    text-decoration: none;
    color: var(--bw-black);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--bw-black);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--brown-accent);
}

.btn-contact-nav {
    background: var(--brown-accent);
    color: var(--bw-white) !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(166, 124, 82, 0.2);
}

.btn-contact-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 124, 82, 0.3);
    opacity: 0.9;
}

/* Hero Slider Section */
.hero {
    padding: 0;
    color: var(--bw-white);
    text-align: center;
    position: relative;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    pointer-events: auto;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Custom Carousel Styling */
.carousel-indicators [data-bs-target] {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    transition: all 0.3s;
}

.carousel-indicators .active {
    background-color: var(--brown-accent);
    width: 50px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 80px;
    opacity: 0;
    transition: all 0.3s;
    z-index: 5;
}

.hero:hover .carousel-control-prev,
.hero:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 60%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

/* Components */
.section-tag {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    color: var(--brown-accent);
}

.display-text {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

/* Who Are We */
.who-are-we {
    background-color: var(--bw-white);
}

.who-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Services */
.services {
    background-color: var(--bw-gray);
}

.service-card {
    background: var(--bw-white);
    border-radius: 24px;
    border: none;
    padding: 50px 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
}

.service-card ion-icon {
    color: var(--brown-accent);
    background: var(--brown-light);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Pricing */
.pricing {
    background-color: var(--bw-white);
}

.pricing-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    transition: all 0.4s;
    background: var(--bw-white);
}

.pricing-card.featured {
    background: var(--bw-black);
    color: var(--bw-white);
    transform: scale(1.05);
    border: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured .btn-plan {
    background: var(--brown-accent);
    border: none;
}

.pricing-card.featured .section-tag {
    color: var(--brown-accent);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(to right, #1a1a1a, #2c2c2c);
    color: var(--bw-white);
}

.quote-icon {
    color: var(--brown-accent);
    font-size: 60px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.quote-text {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

/* Contact */
.contact {
    background-color: var(--bw-white);
}

.contact-info-card {
    background: var(--brown-light);
    padding: 40px;
    border-radius: 24px;
    height: 100%;
}

/* WhatsApp Floating */
.wa-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse-green 2s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
.main-footer {
    background-color: var(--bw-black);
    color: rgba(255, 255, 255, 0.6);
    padding: 100px 0 50px;
    scroll-snap-align: end;
}

.footer-logo {
    color: #fff;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--brown-accent);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 3rem;
    }

    .display-text {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
    }

    .snap-container {
        height: auto;
        scroll-snap-type: none;
    }

    section {
        height: auto;
        min-height: 100vh;
        scroll-snap-align: none;
        padding: 100px 20px;
    }

    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }

    .hero-slider,
    .carousel-item {
        height: 70vh;
    }

    .hero {
        height: 70vh;
        min-height: 70vh;
    }
}