﻿/* ============== PREMIUM THEME ============== */
:root {
    --primary: #1b2a49; /* deep navy blue */
    --primary-soft: #f4f6fb;
    --accent: #f5b461; /* warm gold */
    --accent-soft: #fff4de;
    --text-main: #27303f;
    --text-muted: #f7f9fc;
    --border-soft: rgba(148, 163, 184, 0.35);
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.10);
    --radius-card: 20px;
    --radius-pill: 999px;
}

/* ============== GLOBAL ============== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: radial-gradient(circle at top left, #ffffff 0, #f5f7fb 35%, #edf1ff 100%);
    color: var(--text-main);
    margin: 0;
    padding-top: 80px; /* fixed navbar space */
}

h1, h2, h3, h4, h5 {
    color: var(--primary);
    letter-spacing: 0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

/* ============== NAVBAR ============== */

.premium-nav {
    background: linear-gradient(135deg, #bba86c, #bba86c);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    z-index: 1030;
}

.navbar-brand {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff !important;
}

.brand-highlight {
    color: var(--accent);
}

/* navbar links */
.navbar-dark .navbar-nav .nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0.35rem;
    padding: 0.35rem 0.4rem;
    color: rgba(255, 255, 255, 0.85) !important;
    position: relative;
    transition: color 0.2s ease, transform 0.15s ease;
}

    .navbar-dark .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 0.6rem;
        right: 0.6rem;
        bottom: -0.2rem;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--accent), #ffd58b);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.18s ease-out;
    }

    .navbar-dark .navbar-nav .nav-link:hover::after,
    .navbar-dark .navbar-nav .nav-link.active::after {
        transform: scaleX(1);
    }

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: #ffffff !important;
        transform: translateY(-1px);
    }

/* nav CTA button */
.navbar .nav-cta {
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
}

/* mobile toggler icon white दिसण्यासाठी */
.navbar-dark .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

.navbar-dark .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* ============== BUTTONS ============== */

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #ffd58b);
    border: none;
    color: #3a2a16;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(245, 180, 97, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

    .btn-primary:hover,
    .btn-primary:focus {
        filter: brightness(0.97);
        transform: translateY(-1px);
        box-shadow: 0 16px 40px rgba(245, 180, 97, 0.55);
    }

    .btn-primary:active {
        transform: translateY(0);
        box-shadow: 0 8px 20px rgba(245, 180, 97, 0.45);
    }

/* ============== SECTIONS / CARDS ============== */

.container {
    max-width: 1100px;
}

section {
    margin-top: 40px;
}

.section-card {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 1.8rem 1.8rem 1.6rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

    .section-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(245, 180, 97, 0.16), transparent 55%);
        opacity: 0.9;
        pointer-events: none;
    }

    .section-card > * {
        position: relative;
        z-index: 1;
    }

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

    .section-title::before {
        content: "";
        width: 6px;
        height: 22px;
        border-radius: 999px;
        background: linear-gradient(180deg, var(--accent), #ffe1a9);
    }

.section-card ul {
    padding-left: 1.1rem;
    margin-bottom: 0.2rem;
}

.section-card li {
    margin-bottom: 0.35rem;
    color: var(--text-main);
}

/* ============== HERO SLIDER ============== */

#heroSlider {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.35);
}

    #heroSlider .carousel-item img {
        filter: brightness(0.82);
    }

    #heroSlider .carousel-caption {
        bottom: 18%;
        text-align: left;
        left: 8%;
        right: 8%;
        background: radial-gradient(circle at top left, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35));
        padding: 1.2rem 1.5rem;
        border-radius: 18px;
        backdrop-filter: blur(6px);
    }

        #heroSlider .carousel-caption h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
            color: #ffffff;
        }

        #heroSlider .carousel-caption p {
            margin-bottom: 0;
            color: #e5e7eb;
            font-size: 0.95rem;
        }

/* ============== GALLERY ============== */

.gallery-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(148, 163, 184, 0.5);
    position: relative;
}

.gallery-img {
    cursor: pointer;
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
    opacity: 0.92;
}

    .gallery-img:hover {
        transform: scale(1.04);
        filter: brightness(1.02);
        opacity: 1;
    }

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

    .lightbox img {
        max-width: 90%;
        max-height: 80%;
        border-radius: 16px;
        box-shadow: 0 0 25px rgba(0,0,0,0.8);
    }

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* ============== TESTIMONIALS ============== */

.testimonial-card {
    background: #f9fafc;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.testimonial-name {
    font-weight: 700;
    color: #2b4c7e;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: #777;
}

/* ============== FORM ============== */

.form-label {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-main);
}

.form-control,
.form-select {
    border-radius: 12px;
    border-color: rgba(148, 163, 184, 0.7);
    padding: 0.45rem 0.8rem;
}

    .form-control:focus,
    .form-select:focus {
        box-shadow: 0 0 0 0.15rem rgba(245, 180, 97, 0.35);
        border-color: var(--accent);
    }

.is-invalid {
    border-color: #dc3545;
}

/* ============== MAP ============== */

.map-container iframe {
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ============== FOOTER ============== */

.footer {
    background: #0f172a;
    color: #e5e7eb;
    border-top: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 0.9rem;
}

    .footer h5 {
        color: #ffffff;
        font-weight: 700;
    }

    .footer a {
        color: #e5e7eb;
    }

/* ============== FLOATING SOCIAL BUTTONS ============== */

.whatsapp-float,
.social-float {
    position: fixed;
    bottom: 20px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #25D366;
    z-index: 1040;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.social-float {
    background: #1877f2;
    right: 76px;
}

.social-ig {
    background: radial-gradient(circle at 30% 30%, #fdf497 0, #fd5949 40%, #d6249f 70%, #285AEB 100%);
    right: 134px;
}

.icon-img {
    width: 22px;
    height: 22px;
}

.whatsapp-float:hover,
.social-float:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.6);
}

/* ============== ANIMATIONS ============== */

.fade-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-section.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ============== RESPONSIVE ============== */

@media (max-width: 991.98px) {
    body {
        padding-top: 72px;
    }

    #heroSlider .carousel-caption {
        bottom: 12%;
        padding: 0.9rem 1rem;
    }

        #heroSlider .carousel-caption h2 {
            font-size: 1.4rem;
        }

        #heroSlider .carousel-caption p {
            font-size: 0.85rem;
        }

    .navbar .nav-cta {
        width: 100%;
        margin-top: 0.4rem;
    }
}

@media (max-width: 575.98px) {
    .section-card {
        padding: 1.3rem 1.1rem 1.1rem;
    }
}
