:root {
    --primary: #5a0a05;
    --secondary: #a63a00;
    --accent: #f39c12;
    --light: #fff8f1;
    --dark: #2d1b12;
    --white: #ffffff;
    --soft: #f7ede5;
    --border: #ead8c8;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-space {
    padding: 70px 0;
}

.soft-bg {
    background: var(--light);
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    gap: 20px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.brand-text h1 {
    font-size: 20px;
    color: var(--primary);
    line-height: 1.2;
}

.brand-text p {
    font-size: 13px;
    color: var(--secondary);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.main-nav a {
    color: var(--dark);
    font-weight: 600;
    transition: 0.3s;
}

.main-nav a:hover {
    color: var(--secondary);
}

.btn-nav,
.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-primary,
.btn-nav {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.btn-primary:hover,
.btn-nav:hover {
    opacity: 0.92;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.menu-toggle {
    display: none;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(45, 27, 18, 0.55), rgba(45, 27, 18, 0.45)),
        url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: var(--white);
}

.hero-content {
    width: 100%;
}

.hero-text {
    max-width: 650px;
    padding: 70px 0;
}

.tagline {
    display: inline-block;
    background: rgba(243, 156, 18, 0.18);
    color: #ffd27a;
    padding: 8px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 14px;
}

.hero-text h2 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title p {
    color: #6d574c;
    max-width: 700px;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.promo-box {
    background: var(--white);
    border-left: 6px solid var(--accent);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
}

.page-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-banner h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.content-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.package-card {
    text-align: left;
}

.package-card .btn-primary {
    margin-top: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary);
}

.site-footer {
    background: var(--primary);
    color: var(--white);
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    padding: 50px 0 30px;
}

.footer-grid h3,
.footer-grid h4 {
    margin-bottom: 12px;
}

.footer-grid p,
.footer-grid a {
    color: #f5dfd5;
    margin-bottom: 8px;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    padding: 16px;
    color: #f5dfd5;
}

.admin-login-preview {
    min-height: 100vh;
    background: var(--light);
    display: flex;
    align-items: center;
}

.admin-box {
    max-width: 500px;
    margin: auto;
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow);
    text-align: center;
}

.admin-box h2 {
    color: var(--primary);
    margin-bottom: 12px;
}

@media (max-width: 992px) {
    .grid-3,
    .footer-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-text h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: var(--white);
        position: absolute;
        top: 92px;
        right: 4%;
        width: 92%;
        padding: 20px;
        border-radius: 14px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border);
    }

    .main-nav.show {
        display: flex;
    }

    .brand-text h1 {
        font-size: 16px;
    }

    .brand-text p {
        font-size: 11px;
    }

    .hero {
        min-height: 75vh;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .grid-3,
    .footer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .promo-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-banner h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 94%;
    }

    .hero-text {
        padding: 40px 0;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .btn-primary,
    .btn-outline,
    .btn-nav {
        width: 100%;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
    }
}

.w-100 {
    width: 100%;
}

.alert {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-weight: 600;
}

.alert-success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.login-body {
    background: linear-gradient(135deg, #fff8f1, #f7ede5);
    min-height: 100vh;
}

.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-wrapper {
    width: 100%;
    max-width: 1100px;
    min-height: 650px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.login-left {
    background:
        linear-gradient(rgba(90, 10, 5, 0.55), rgba(166, 58, 0, 0.45)),
        url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-overlay {
    text-align: center;
    color: var(--white);
}

.login-logo {
    width: 120px;
    margin: 0 auto 18px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    padding: 10px;
}

.login-overlay h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.login-overlay p {
    font-size: 18px;
    color: #ffe7cc;
}

.login-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.login-card {
    width: 100%;
    max-width: 430px;
}

.login-card h2 {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 8px;
}

.login-card > p {
    color: #6d574c;
    margin-bottom: 22px;
}

.login-note {
    margin-top: 18px;
    color: #7a6659;
    font-size: 13px;
    background: var(--light);
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 10px;
}

.back-site-link {
    margin-top: 18px;
}

.back-site-link a {
    color: var(--secondary);
    font-weight: 700;
}

.admin-body {
    background: #f8f5f2;
    color: var(--dark);
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    background: linear-gradient(180deg, var(--primary), #3f0603);
    color: var(--white);
    padding: 24px 18px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 1100;
    transition: 0.3s ease;
}

.admin-brand {
    text-align: center;
    margin-bottom: 28px;
}

.admin-brand img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    padding: 8px;
    margin: 0 auto 12px;
}

.admin-brand h2 {
    font-size: 24px;
    margin-bottom: 4px;
}

.admin-brand p {
    color: #f3d8ca;
    font-size: 14px;
}

.admin-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-menu a {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--white);
    font-weight: 600;
    transition: 0.3s;
}

.admin-menu a:hover {
    background: rgba(255,255,255,0.12);
}

.danger-link:hover {
    background: rgba(220, 38, 38, 0.25) !important;
}

.admin-main {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.admin-topbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.admin-menu-toggle {
    display: none;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
}

.admin-user-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.admin-user-box strong {
    color: var(--primary);
}

.admin-user-box span {
    font-size: 13px;
    color: #7a6659;
    text-transform: capitalize;
}

.admin-content {
    padding: 28px 24px;
}

.admin-page-header {
    margin-bottom: 24px;
}

.admin-page-header h1 {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 5px;
}

.admin-page-header p {
    color: #6d574c;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 24px;
}

.stat-card h3 {
    font-size: 34px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.stat-card p {
    color: #6d574c;
    font-weight: 600;
}

.admin-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.panel-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 24px;
}

.panel-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.quick-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .login-wrapper {
        grid-template-columns: 1fr;
    }

    .login-left {
        min-height: 260px;
    }
}

@media (max-width: 900px) {
    .admin-sidebar {
        left: -290px;
    }

    .admin-sidebar.show {
        left: 0;
    }

    .admin-main {
        margin-left: 0;
    }

    .admin-menu-toggle {
        display: inline-block;
    }

    .admin-grid-2,
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-content {
        padding: 20px 14px;
    }

    .admin-topbar {
        padding: 14px;
    }

    .login-overlay h1 {
        font-size: 26px;
    }

    .login-card h2 {
        font-size: 26px;
    }
}
.admin-page-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    text-align: left;
}

.admin-table th {
    background: #fbf3ec;
    color: var(--primary);
    font-size: 14px;
}

.table-thumb {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.no-thumb {
    width: 70px;
    height: 55px;
    border-radius: 10px;
    border: 1px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #7a6659;
    background: #faf7f4;
}

.preview-image {
    width: 180px;
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.table-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-sm {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.btn-edit {
    background: #a63a00;
}

.btn-delete {
    background: #b91c1c;
}

.text-center {
    text-align: center;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.destination-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.destination-image-wrap {
    height: 220px;
    background: #f8eee6;
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a6659;
    font-weight: 700;
}

.destination-card-body {
    padding: 20px;
}

.destination-card-body h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.destination-meta {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 10px;
}

.center-btn {
    text-align: center;
    margin-top: 28px;
}

@media (max-width: 992px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }

    .admin-page-flex {
        align-items: flex-start;
    }
}
.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-muted {
    background: #f3f4f6;
    color: #4b5563;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.package-card-new {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.package-image-wrap {
    height: 230px;
    background: #f8eee6;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-card-body {
    padding: 20px;
}

.package-card-body h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.package-destination {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 8px;
}

.package-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.package-meta span {
    background: #fbf3ec;
    color: var(--primary);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.package-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.price-main {
    display: block;
    color: var(--secondary);
    font-size: 24px;
    font-weight: 800;
}

.price-old {
    display: inline-block;
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 14px;
}

.package-details-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    align-items: start;
}

.details-image-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.details-main-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.package-details-side {
    position: sticky;
    top: 110px;
}

.booking-summary-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 24px;
}

.booking-summary-card h3 {
    color: var(--primary);
    margin-bottom: 14px;
}

.details-info-list {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
    color: #5b4a3f;
}

.details-price-box {
    background: #fff8f1;
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: 16px;
    margin-bottom: 18px;
}

@media (max-width: 992px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-details-layout {
        grid-template-columns: 1fr;
    }

    .package-details-side {
        position: static;
    }
}

@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
    }

    .package-price-row {
        align-items: flex-start;
    }

    .details-main-image {
        height: 280px;
    }
}
.stats-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.badge-info {
    background: #dbeafe;
    color: #1d4ed8;
}

.booking-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    align-items: start;
}

.booking-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 24px;
}

.booking-form-card h3 {
    color: var(--primary);
    margin-bottom: 18px;
}

.booking-side-card {
    position: sticky;
    top: 110px;
}

.booking-side-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin-top: 14px;
}

.success-box {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 36px;
    text-align: center;
}

.success-box h3 {
    color: var(--primary);
    margin-bottom: 14px;
}

.booking-ref-box {
    display: inline-block;
    margin: 16px 0;
    padding: 14px 20px;
    border-radius: 14px;
    background: #fff8f1;
    border: 1px dashed var(--secondary);
    color: var(--secondary);
    font-size: 22px;
    font-weight: 800;
}

.booking-admin-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.note-box {
    background: #faf7f4;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    color: #5b4a3f;
    min-height: 80px;
}

@media (max-width: 1200px) {
    .stats-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .booking-layout,
    .booking-admin-layout {
        grid-template-columns: 1fr;
    }

    .booking-side-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .stats-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .stats-grid-6 {
        grid-template-columns: 1fr;
    }

    .success-box {
        padding: 24px 18px;
    }

    .booking-ref-box {
        font-size: 18px;
        word-break: break-word;
    }
}
.card .btn-primary {
    margin-top: 10px;
}

.contact-grid .card {
    height: 100%;
}

.note-box:empty::before {
    content: "No details provided.";
    color: #8b7a6f;
}
.hero-slider {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
}

.hero-slide {
    min-height: 88vh;
    display: none;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-slide.active {
    display: flex;
}

.hero-slide-content {
    max-width: 760px;
    padding: 90px 0;
}

.hero-slide-content h2 {
    font-size: 54px;
    line-height: 1.12;
    margin-bottom: 16px;
}

.hero-slide-content p {
    font-size: 18px;
    margin-bottom: 24px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: #f39c12;
    margin-bottom: 10px;
    font-size: 18px;
}

.testimonial-text {
    color: #5b4a3f;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card h4 {
    color: var(--primary);
    margin-bottom: 4px;
}

.testimonial-card span {
    color: #8b7a6f;
    font-size: 14px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow);
    min-height: 240px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.05));
    color: white;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1200;
    background: #25d366;
    color: white;
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    font-weight: 700;
}

.ai-chat-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1200;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    font-weight: 700;
    cursor: pointer;
}

.ai-chat-box {
    position: fixed;
    left: 20px;
    bottom: 80px;
    width: 340px;
    max-width: calc(100vw - 40px);
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
    overflow: hidden;
    z-index: 1300;
    display: none;
}

.ai-chat-box.show {
    display: block;
}

.ai-chat-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-chat-header button {
    background: transparent;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.ai-chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 14px;
    background: #fffdfb;
}

.ai-msg {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    max-width: 88%;
    font-size: 14px;
    line-height: 1.5;
}

.ai-msg.bot {
    background: #f7ede5;
    color: #3d2a20;
}

.ai-msg.user {
    background: #f39c12;
    color: white;
    margin-left: auto;
}

.ai-chat-form {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--border);
}

.ai-chat-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.ai-chat-form button {
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    padding: 0 16px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-slide-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .testimonial-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider,
    .hero-slide {
        min-height: 76vh;
    }

    .hero-slide-content h2 {
        font-size: 32px;
    }

    .slider-nav {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }

    .ai-chat-float {
        left: 14px;
        bottom: 14px;
    }

    .ai-chat-box {
        left: 14px;
        bottom: 68px;
    }
}
.chat-history-box {
    display: grid;
    gap: 14px;
}

.chat-history-message {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.chat-history-message.user {
    background: #fff8f1;
}

.chat-history-message.bot {
    background: #f7ede5;
}

.chat-history-message small {
    display: block;
    margin-top: 8px;
    color: #8b7a6f;
}
/*
========================================
TOP BAR
========================================
*/

.top-bar {
    background: #5A0A05;
    color: #fff;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    margin-right: 6px;
}

.top-bar-right a {
    color: #fff;
    margin-left: 12px;
    font-size: 16px;
    transition: 0.3s;
}

.top-bar-right a:hover {
    color: #f39c12;
}

/*
========================================
MOBILE TOP BAR
========================================
*/

@media (max-width: 768px) {

.top-bar-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.top-bar-left span {
    display: block;
}

}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-image-wrap {
    height: 240px;
    background: #f8eee6;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 20px;
}

.blog-card-body h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.blog-date {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-details-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    align-items: start;
}

.blog-details-side {
    position: sticky;
    top: 110px;
}

.recent-posts-list {
    display: grid;
    gap: 14px;
}

.recent-post-item {
    display: block;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.recent-post-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}

.recent-post-item span {
    color: #7a6659;
    font-size: 13px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-details-layout {
        grid-template-columns: 1fr;
    }

    .blog-details-side {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}