:root {
    /* New Premium Color Scheme */
    --dark-kesariya: #CC6600;
    --primary-saffron: #FF9933;
    --light-saffron: #FFE5CC;
    --secondary-gold: #D4AF37;
    --accent-gold: #FFD700;

    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #1A1A1A;
    --cream: #FFF8F0;
    --light-gray: #F5F5F5;
    --gray: #666666;

    /* Gradients */
    --gradient-kesariya: linear-gradient(135deg, #CC6600, #FF9933);
    --gradient-gold: linear-gradient(135deg, #D4AF37, #FFD700);
    --gradient-premium: linear-gradient(135deg, #CC6600 0%, #FF9933 50%, #D4AF37 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    overflow-x: hidden;
    background-color: var(--white);
    line-height: 1.7;
    max-width: 100vw;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Marcellus', serif;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Premium Animations & Keyframes
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes shine {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(204, 102, 0, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(204, 102, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Premium Navigation Bar
   ======================================== */
.navbar {
    padding: 1.2rem 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Mobile: Always show background */
@media (max-width: 991px) {
    .navbar {
        background-color: var(--white);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }
}

.navbar-brand {
    font-family: 'Marcellus', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.navbar-brand i {
    color: var(--dark-kesariya);
    font-size: 2.2rem;
    animation: float 3s ease-in-out infinite;
}

.navbar-brand:hover i {
    color: var(--primary-saffron);
    transform: rotate(10deg);
}

.navbar-nav .nav-link {
    color: var(--black) !important;
    margin: 0 15px;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    font-size: 1.05rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-kesariya);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover {
    color: var(--dark-kesariya) !important;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: 2px solid var(--dark-kesariya);
    color: var(--dark-kesariya);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(204, 102, 0, 0.25);
}

/* ========================================
   Premium Hero Section (2-Column Layout)
   ======================================== */
.hero {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    overflow: hidden;
}



.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--black);
}

.hero h1 i {
    color: var(--dark-kesariya);
    font-size: 3rem;
    margin-right: 10px;
}

.hero .lead {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--dark-kesariya);
    font-weight: 600;
}

.hero .sub-heading {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--gray);
    line-height: 1.8;
}

.hero .cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(204, 102, 0, 0.25);
    border: 10px solid var(--white);
    position: relative;
    z-index: 2;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--dark-kesariya);
    border-radius: 30px;
    z-index: 1;
}

.hero-image::after {
    content: '🔱';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
}

/* ========================================
   Premium Buttons
   ======================================== */
.btn-kesariya {
    background: linear-gradient(135deg, #CC6600, #FF9933);
    color: white;
    padding: 16px 40px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(204, 102, 0, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-kesariya::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-kesariya:hover::before {
    left: 100%;
}

.btn-kesariya:hover {
    background: linear-gradient(135deg, #B35900, #E07500);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(204, 102, 0, 0.5);
    color: white;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 16px 40px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
    color: white;
}

.btn-outline-kesariya {
    background: transparent;
    color: var(--dark-kesariya);
    padding: 16px 40px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    border: 3px solid var(--dark-kesariya);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-kesariya:hover {
    background: var(--dark-kesariya);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(204, 102, 0, 0.3);
}

/* ========================================
   Premium Trust Section
   ======================================== */
.trust-section {
    background: var(--cream);
    padding: 80px 0;
    position: relative;
    border-top: 5px solid var(--dark-kesariya);
}

.trust-card {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.trust-card i {
    font-size: 4rem;
    color: var(--dark-kesariya);
    margin-bottom: 20px;
    display: inline-block;
}

.trust-card:hover i {
    animation: float 1.5s ease-in-out;
}

.trust-card h4 {
    font-size: 2.5rem;
    color: var(--dark-kesariya);
    margin-bottom: 10px;
    font-weight: 700;
}

.trust-card p {
    font-size: 1.05rem;
    color: var(--gray);
    font-weight: 500;
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 70px;
    position: relative;
    padding-bottom: 25px;
    color: var(--black);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: var(--gradient-kesariya);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: -50px auto 50px;
    line-height: 1.8;
}

/* ========================================
   Premium Service Cards
   ======================================== */
.service-card {
    background: var(--white);
    border: none;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border-top: 6px solid var(--dark-kesariya);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(204, 102, 0, 0.05), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--primary-saffron);
}

.service-card .card-body {
    padding: 40px 30px;
    text-align: center;
}

.service-card .card-body i {
    font-size: 3.5rem;
    color: var(--secondary-gold);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover .card-body i {
    transform: scale(1.25) rotate(12deg);
    color: var(--dark-kesariya);
}

.service-card h4,
.service-card h5 {
    color: var(--black);
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ========================================
   Premium Gallery Section (Jalkiya)
   ======================================== */
.gallery-section {
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--dark-kesariya);
    transform: rotate(90deg);
}

/* ========================================
   Premium CTA Sections
   ======================================== */
.cta-section {
    background: var(--gradient-premium);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: float 8s ease-in-out infinite;
}

.cta-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-section .btn-white {
    background: white;
    color: var(--dark-kesariya);
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.cta-section .btn-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--cream);
}

/* ========================================
   Process/Steps Section
   ======================================== */
.process-section {
    background: var(--white);
}

.process-step {
    position: relative;
    padding: 40px;
    background: var(--cream);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-kesariya);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(204, 102, 0, 0.3);
}

.process-step h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
}

.process-step p {
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   Testimonials Premium
   ======================================== */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 6px solid var(--dark-kesariya);
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    color: var(--light-saffron);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--primary-saffron);
}

.testimonial-card .text-warning i {
    font-size: 1.3rem;
    color: var(--dark-kesariya);
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-card h6 {
    font-style: normal;
    color: var(--black);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* ========================================
   Contact Form Premium
   ======================================== */
.contact-section {
    background: var(--cream);
}

.contact-form {
    background: white;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    border-top: 6px solid var(--dark-kesariya);
}

.contact-form h2 {
    color: var(--black);
    margin-bottom: 35px;
    font-size: 2.5rem;
}

.form-control {
    border-radius: 15px;
    padding: 16px 20px;
    border: 2px solid #E5E5E5;
    background: var(--light-gray);
    color: var(--black);
    transition: var(--transition);
    font-size: 1.05rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(204, 102, 0, 0.15);
    border-color: var(--dark-kesariya);
    background: white;
}

.form-label {
    color: var(--black);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

/* ========================================
   Premium Footer
   ======================================== */
footer {
    background: var(--white);
    color: var(--black);
    padding: 80px 0 30px;
    border-top: 5px solid var(--dark-kesariya);
}

footer h5 {
    color: var(--dark-kesariya);
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 700;
}

footer p,
footer a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.8;
}

footer a:hover {
    color: var(--dark-kesariya);
    padding-left: 5px;
}

footer .social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--dark-kesariya);
    margin-right: 12px;
    transition: var(--transition);
    font-size: 1.3rem;
}

footer .social-links a:hover {
    background: var(--dark-kesariya);
    color: white;
    transform: translateY(-5px);
    padding-left: 0;
    box-shadow: 0 8px 20px rgba(204, 102, 0, 0.3);
}

footer hr {
    border-color: #E5E5E5;
    margin: 40px 0 25px;
}

footer .copyright {
    text-align: center;
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========================================
   Sticky CTA & Scroll to Top
   ======================================== */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.sticky-btn:hover {
    transform: scale(1.2);
    color: white;
    animation: none;
}

.sticky-call {
    background: var(--dark-kesariya);
}

.sticky-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

#scrollToTop {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #CC6600, #FF9933);
    color: white;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollToTop.show {
    opacity: 1;
    visibility: visible;
}

#scrollToTop:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #B35900, #E07500);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 140px 20px 80px;
        background-attachment: scroll;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h1 i {
        font-size: 2rem;
    }

    .hero .lead {
        font-size: 1.2rem;
    }

    .hero .sub-heading {
        font-size: 1rem;
    }

    .hero .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        margin-top: 30px;
    }

    .hero-image {
        margin-top: 40px;
        text-align: center;
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero-image::before,
    .hero-image::after {
        display: none;
    }

    section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .contact-form {
        padding: 40px 25px;
    }

    .trust-card {
        margin-bottom: 20px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        width: 60px;
        height: 60px;
    }

    #scrollToTop {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item {
        height: 300px;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {

    .btn-kesariya,
    .btn-whatsapp,
    .btn-outline-kesariya {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .service-card .card-body i {
        font-size: 3rem;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-kesariya {
    color: var(--dark-kesariya) !important;
}

.bg-cream {
    background-color: var(--cream) !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}