﻿:root {
    --dark: #050505;
    --black-soft: #0b0b0b;
    --gold: #d8a33d;
    --gold-light: #f3c76b;
    --cream: #f8f3e8;
    --white: #ffffff;
    --soft: #f7f4ef;
    --text: #2c2c2c;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}
.premium-navbar {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 22px 0;
    transition: all 0.3s ease;
    z-index: 1030;
}

.navbar-scrolled {
    background: rgba(0, 0, 0, 0.92);
    padding: 12px 0;
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.navbar-brand {
    padding: 0;
    line-height: 1;
}

.navbar-logo {
    transition: opacity 0.2s;
}

.navbar-brand:hover .navbar-logo {
    opacity: 0.85;
}

.navbar-nav .nav-link {
    color: #fff;
    margin-left: 18px;
    font-weight: 500;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold-light) !important;
}

.navbar-nav .nav-link.active:not(.btn-nav) {
    position: relative;
}

.navbar-nav .nav-link.active:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

.btn-nav {
    background: var(--gold);
    color: #111 !important;
    border-radius: 30px;
    padding: 9px 20px !important;
}

.hero-premium {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.75)),
        url('../images/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 10px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
    color: var(--gold-light);
    backdrop-filter: blur(8px);
}

.hero-premium h1 {
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    font-weight: 800;
    line-height: 1.02;
    max-width: 950px;
}

.hero-premium p {
    font-size: 1.25rem;
    max-width: 720px;
    margin-top: 24px;
    color: #eeeeee;
}

.hero-actions {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    color: #111;
    font-weight: 700;
    border-radius: 40px;
    padding: 13px 28px;
}

.btn-gold:hover {
    transform: translateY(-3px);
    color: #111;
}

.btn-glass {
    border: 1px solid rgba(255,255,255,0.45);
    color: #fff;
    border-radius: 40px;
    padding: 13px 28px;
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: #fff;
    color: #111;
}

.section-premium {
    padding: 95px 0;
}

.section-title {
    margin-bottom: 55px;
}

.section-title span,
.small-label {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.section-title h2,
.big-title {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 800;
    color: #111;
    margin-top: 12px;
}

.section-title p,
.lead-soft {
    color: #666;
    font-size: 1.1rem;
}

.premium-card {
    background: #fff;
    padding: 38px;
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    min-height: 285px;
    transition: 0.35s ease;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.13);
}

.card-icon {
    margin-bottom: 22px;
    line-height: 1;
}

.card-icon i {
    font-size: 2.6rem;
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-card h4 {
    font-weight: 800;
    margin-bottom: 14px;
}

.premium-card p {
    color: #666;
}

.premium-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

.portfolio-preview {
    background: #080808;
    padding: 95px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}

.portfolio-item {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: block;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.12), rgba(0,0,0,0.38));
    transition: background 0.35s ease;
    z-index: 1;
}

.portfolio-item:hover img {
    transform: scale(1.06);
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(rgba(0,0,0,0.04), rgba(0,0,0,0.22));
}

.portfolio-item:hover {
    box-shadow: 0 20px 55px rgba(0,0,0,0.4);
}

.portfolio-item.tall {
    grid-row: span 2;
}

.portfolio-item.wide {
    grid-column: span 2;
}

.bg-light-soft {
    background: var(--soft);
}

.feature-list {
    margin-top: 28px;
    display: grid;
    gap: 14px;
    font-weight: 600;
}

.image-showcase-wrapper {
    position: relative;
    display: block;
}

.image-showcase-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
    display: block;
}

.showcase-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 65%;
    height: 65%;
    border: 3px solid var(--gold);
    border-radius: 32px;
    z-index: 1;
    opacity: 0.6;
}

.showcase-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 3;
    background: rgba(5,5,5,0.78);
    backdrop-filter: blur(12px);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid rgba(216,163,61,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .image-showcase-wrapper {
        margin-top: 40px;
    }

    .image-showcase-img {
        height: 380px;
    }

    .showcase-accent {
        right: -12px;
        bottom: -12px;
    }
}

.cta-premium {
    padding: 100px 0;
    background:
        linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
        url('../images/hero.png') center/cover no-repeat;
    color: #fff;
}

.cta-premium h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
}

.cta-premium p {
    color: #e5e5e5;
    max-width: 720px;
    margin: 18px auto 30px;
    font-size: 1.15rem;
}

.premium-footer {
    background: #050505;
    color: #aaa;
    padding: 75px 0 0;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    display: none;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-brand span {
    color: var(--gold-light);
}

.footer-desc {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 320px;
}

.premium-footer h6 {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    margin-bottom: 18px;
}

.premium-footer a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.93rem;
    transition: color 0.2s;
}

.premium-footer a:hover {
    color: var(--gold-light);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 0;
    transition: all 0.25s;
}

.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #111;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.93rem;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
    color: #888;
    text-decoration: none;
    display: inline;
    margin-bottom: 0;
}

.footer-contact-item a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
    color: #555;
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 16px 0 28px;
    font-size: 0.76rem;
    color: #444;
    text-align: center;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.footer-disclaimer i {
    color: #555;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .premium-navbar {
        background: #050505;
    }

    .navbar-nav {
        padding-top: 18px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .hero-premium {
        min-height: 92vh;
    }

    .hero-premium h1 {
        font-size: 2.5rem;
    }

    .hero-premium p {
        font-size: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section-premium,
    .portfolio-preview,
    .cta-premium {
        padding: 65px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .portfolio-item.tall,
    .portfolio-item.wide {
        grid-row: auto;
        grid-column: auto;
    }

    .image-showcase {
        min-height: 340px;
    }
}

.page-hero {
    padding: 170px 0 100px;
    background:
        linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
        url('../images/hero.jpg') center/cover no-repeat;
    color: #fff;
}

.page-hero span {
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-top: 15px;
}

.page-hero p {
    max-width: 720px;
    margin: 20px auto 0;
    color: #e5e5e5;
    font-size: 1.15rem;
}

.premium-form-card {
    border: none;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.form-control,
.form-select {
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(216, 163, 61, 0.18);
}

#pageLoader {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-logo {
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 8px;
    animation: pulseLuxury 1.5s infinite alternate;
}

body.loaded #pageLoader {
    opacity: 0;
    visibility: hidden;
}

@keyframes pulseLuxury {
    from {
        opacity: 0.35;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-premium::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 35%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    animation: heroReveal 1.2s ease both;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(45px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.luxury-gallery {
    columns: 3 280px;
    column-gap: 22px;
}

.luxury-gallery-item {
    width: 100%;
    height: 360px;
    margin-bottom: 22px;
    border: none;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    display: block;
    break-inside: avoid;
    cursor: pointer;
    transition: all 0.45s ease;
    box-shadow: 0 20px 55px rgba(0,0,0,0.12);
}

.luxury-gallery-item:nth-child(3n) {
    height: 480px;
}

.luxury-gallery-item:nth-child(4n) {
    height: 300px;
}

.luxury-gallery-item:hover {
    transform: scale(1.025);
    filter: brightness(1.08);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 88vw;
    max-height: 88vh;
    border-radius: 18px;
    box-shadow: 0 30px 100px rgba(0,0,0,0.8);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.lightbox-close {
    top: 28px;
    right: 35px;
    font-size: 42px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    width: 72px;
    height: 92px;
    border-radius: 22px;
}

.lightbox-prev {
    left: 35px;
}

.lightbox-next {
    right: 35px;
}

@media (max-width: 768px) {
    .luxury-gallery {
        columns: 1;
    }

    .luxury-gallery-item,
    .luxury-gallery-item:nth-child(3n),
    .luxury-gallery-item:nth-child(4n) {
        height: 320px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 70px;
        font-size: 42px;
    }
}

.luxury-img {
    filter: saturate(0.95) contrast(1.05);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.album-slide-img {
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.album-slide-img:hover {
    transform: scale(1.03);
}

@media (max-width: 576px) {
    .album-slide-img { height: 160px; }
}

.premium-card:hover .luxury-img {
    transform: scale(1.06);
    filter: saturate(1.1) contrast(1.12);
}

.service-options {
    list-style: none;
    padding-left: 0;
    font-size: 0.93rem;
    margin-bottom: 0;
}

.service-options li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.service-options li i {
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-included {
    color: #2c2c2c;
    font-weight: 500;
}

.feature-included i {
    color: var(--gold);
}

.feature-excluded {
    color: #bbb;
    font-weight: 400;
}

.feature-excluded i {
    color: #d5d5d5;
}

.feature-info {
    color: #555;
    font-weight: 500;
}

.feature-info i {
    color: var(--gold);
}

.detail-yes {
    color: var(--gold);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-no {
    color: #ccc;
    font-weight: 400;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-detail-hero {
    min-height: 85vh;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
}

.service-detail-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    max-width: 900px;
    line-height: 1;
    margin-top: 20px;
}

.service-detail-hero p {
    max-width: 720px;
    font-size: 1.2rem;
    color: #e7e7e7;
    margin-top: 25px;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-feature {
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
}

.service-feature strong {
    display: block;
    color: #111;
    margin-bottom: 8px;
}

.service-feature span {
    color: var(--gold);
    font-weight: 800;
}

.service-booking-card {
    position: sticky;
    top: 110px;
    background: #111;
    color: #fff;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

.service-booking-card h3 {
    font-size: 2rem;
    font-weight: 800;
}

.service-booking-card p {
    color: #ddd;
}

.price-box {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-light);
    margin: 25px 0;
}

@media (max-width: 768px) {
    .service-feature-grid {
        grid-template-columns: 1fr;
    }

    .service-booking-card {
        position: static;
        margin-top: 20px;
    }
}

.testimonial-card {
    background: #111;
    color: #fff;
    padding: 35px;
    border-radius: 28px;
    min-height: 220px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.05rem;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-size: 0.98rem;
    color: #ddd;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.testimonial-card strong {
    color: var(--gold-light);
    display: block;
    font-size: 0.95rem;
}

.testimonial-event {
    color: #666;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-faq {
    max-width: 900px;
    margin: auto;
}

.luxury-faq .accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.luxury-faq .accordion-button {
    font-weight: 700;
    padding: 20px 24px;
}

.luxury-faq .accordion-button:not(.collapsed) {
    background: #111;
    color: #fff;
}

.luxury-faq .accordion-body {
    padding: 22px 24px;
    color: #555;
}

.album-page {
    padding-top: 130px;
    padding-bottom: 90px;
}

.album-header {
    margin-bottom: 60px;
}

.album-header span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.album-header h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #111;
    margin-bottom: 18px;
}

.album-header p {
    color: #777;
    font-size: 1.15rem;
}

.album-photo-btn {
    border: none;
    background: transparent;
    padding: 0;
    width: 100%;
    cursor: zoom-in;
}

.album-photo-btn img {
    height: 320px;
    object-fit: cover;
    transition: 0.35s ease;
}

.album-photo-btn:hover img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

#scrollTop {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 990;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #111;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(216,163,61,0.35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

#scrollTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(216,163,61,0.5);
}

@media (max-width: 576px) {
    #scrollTop {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.address-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    z-index: 999;
    overflow: hidden;
    margin-top: 6px;
}

.address-suggestion {
    padding: 14px 18px;
    cursor: pointer;
    transition: 0.2s;
}

.address-suggestion:hover {
    background: #f5f5f5;
}

/* ── FAQ Chat Section ── */
.faq-chat-section {
    padding: 95px 0;
    background:
        linear-gradient(rgba(0,0,0,0.70), rgba(0,0,0,0.70)),
        url('../images/camera2.jpg') center/cover no-repeat;
    position: relative;
}

/* ── AI Chat Widget ── */
.ai-chat-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.ai-chat-header {
    background: #111;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ai-avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #f3c76b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #111;
    flex-shrink: 0;
}

.ai-chat-header strong {
    color: #fff;
    font-size: .95rem;
}

.ai-online {
    font-size: .75rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ai-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: .4; }
}

.ai-chat-body {
    padding: 24px;
    min-height: 260px;
    max-height: 380px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #f2f2f2;
}

.ai-msg {
    display: flex;
}

.ai-msg-user {
    justify-content: flex-end;
}

.ai-msg-bot {
    justify-content: flex-start;
}

.ai-msg-content {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: .88rem;
    line-height: 1.6;
}

.ai-msg-user .ai-msg-content {
    background: #111;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.ai-msg-bot .ai-msg-content {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid #d8d8d8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Typing indicator */
.ai-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 18px;
}

.ai-typing span {
    width: 7px;
    height: 7px;
    background: #c9a84c;
    border-radius: 50%;
    animation: typing-bounce 1.2s infinite;
}

.ai-typing span:nth-child(2) { animation-delay: .2s; }
.ai-typing span:nth-child(3) { animation-delay: .4s; }

@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30%            { transform: translateY(-7px); }
}

.ai-chat-footer {
    padding: 18px 24px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}

.ai-chat-footer .form-control:focus {
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
