* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Top Contact Bar */
.top-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: #d4af37;
    color: black;
    transform: scale(1.1);
}

.contact-info {
    margin: 0 20px;
    display: inline-block;
    color: white;
    transition: color 0.3s;
}

.contact-info:hover {
    color: #d4af37;
}

.contact-info i {
    margin-right: 8px;
    color: #d4af37;
}

/* Main Navigation Bar */
.main-nav {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #d4af37 !important;
    letter-spacing: 2px;
}

.navbar-brand i {
    margin-right: 10px;
}

.navbar-nav .nav-link {
    margin: 0 15px;
    color: #333 !important;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.navbar-nav .nav-link:hover {
    color: #d4af37 !important;
    transform: translateY(-2px);
}

.gallery-section .section-title,
.gallery-section .section-subtitle {
    margin-bottom: 1rem;
}

.gallery-grid .gallery-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid .gallery-card:hover {
    transform: translateY(-6px);
}

.gallery-thumb {
    cursor: pointer;
}

.gallery-thumb:focus {
    outline: none;
}

.gallery-thumb-container {
    position: relative;
    overflow: hidden;
}

.gallery-thumb-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-thumb-container:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    transition: opacity 0.25s ease;
}

.gallery-thumb-container:hover .gallery-overlay {
    opacity: 1;
}

#galleryModal .modal-content {
    background: rgba(0, 0, 0, 0.9);
    border: none;
}

#galleryModal .modal-body {
    color: #fff;
}

#galleryModalImage {
    max-height: 70vh;
    object-fit: contain;
}

.navbar-nav .nav-link.active {
    color: #d4af37 !important;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 3px;
}

.navbar-nav .dropdown-menu {
    background: white;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-nav .dropdown-item {
    color: #333;
    transition: all 0.3s;
}

.navbar-nav .dropdown-item:hover {
    background: #f8f9fa;
    color: #d4af37;
    padding-left: 30px;
}

.btn-login {
    border: 2px solid #d4af37 !important;
    color: #d4af37 !important;
    border-radius: 5px;
    padding: 8px 20px !important;
    margin-left: 10px;
}

.btn-login:hover {
    background: #d4af37 !important;
    color: black !important;
}

/* Hero Section */
.hero {
    min-height: 600px;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1631049307038-da0ec89d4d0d?w=1200') center/cover;
    background-size: cover;
}

.about-company {
    background: #f6f4f1;
}

.about-company .about-label {
    display: inline-block;
    color: #6b7280;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-company .about-title {
    font-size: 44px;
    line-height: 1.08;
    margin-bottom: 24px;
    color: #111827;
}

.about-company .about-text {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.9;
    max-width: 720px;
}

.about-company .about-features {
    margin-top: 30px;
}

.about-feature {
    background: white;
    border-radius: 15px;
    padding: 18px 20px;
    border: 1px solid rgba(55, 65, 81, 0.08);
    color: #1f2937;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
}

.about-feature i {
    color: #d4af37;
    font-size: 14px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-quote {
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.about-quote p {
    font-size: 22px;
    color: #111827;
    font-weight: 700;
    margin: 0;
}

.about-quote .quote-mark {
    color: #d4af37;
    font-size: 42px;
    vertical-align: top;
}

.rooms-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(102,126,234,0.92), rgba(118,75,162,0.92)), url('https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1500&q=80') center/cover;
    background-size: cover;
    padding: 100px 0;
}

.rooms-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.rooms-hero p {
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,0.92);
}

.rooms-hero .btn-gold {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .rooms-hero {
        padding: 80px 15px;
    }
    .rooms-hero h1 {
        font-size: 36px;
    }
    .hero {
        min-height: auto;
    }
    .hero .carousel-item {
        min-height: 320px;
    }
    .hero .carousel-caption .hero-content {
        padding: 1.25rem;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 15px;
        margin-bottom: 18px;
    }
    .btn-gold {
        padding: 10px 24px;
        font-size: 14px;
    }
}
@media (max-width: 600px) {
    .hero .carousel-item {
        min-height: 280px;
    }
    .hero .carousel-caption .hero-content {
        padding: 0.9rem;
    }
    .hero-content h1 {
        font-size: 26px;
    }
    .hero-content p {
        font-size: 14px;
    }
    .btn-gold {
        padding: 9px 22px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero .carousel-item {
        min-height: 220px;
    }
    .hero .carousel-caption {
        background: rgba(0, 0, 0, 0.45);
    }
    .hero .carousel-caption .hero-content {
        padding: 0.65rem;
    }
    .hero-content h1 {
        font-size: 20px;
    }
    .hero-content p {
        font-size: 13px;
    }
    .btn-gold {
        padding: 8px 18px;
        font-size: 13px;
    }
}

.hero .carousel-item {
    background-size: cover;
    background-position: center;
    position: relative;
}

@media (min-width: 768px) {
    .hero .carousel-item {
        min-height: 600px;
    }
}

.hero .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero .carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero .carousel-caption .hero-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-gold {
    background-color: #d4af37;
    color: black;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: #f4d03f;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Achievements Section */
.achievements-section {
    padding: 80px 0;
    background: #f5f0e7;
}

.achievement-card {
    background: linear-gradient(135deg, #d4af37 0%, #c2952d 100%) !important;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, background 0.3s ease;
    color: #ffffff !important;
    padding: 45px 20px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.achievement-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #c2952d 0%, #ad7a23 100%) !important;
}

.achievement-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 36px;
}

.achievement-number {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 16px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.achievement-card .fas {
    color: #ffffff;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 28%),
                radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.12), transparent 32%),
                linear-gradient(180deg, #121212 0%, #1f1a10 100%);
}

.why-choose-section .section-title,
.why-choose-section .section-subtitle {
    color: #f8f8f8;
}

.why-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    min-height: 270px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.14);
}

.why-card-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.why-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: #f6e08c;
    color: #1f1f1f;
    font-size: 34px;
}

.why-card h3 {
    font-size: 22px;
    color: #111111;
    margin: 0;
}

.why-card p {
    color: #545454;
    line-height: 1.9;
    margin: 0;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Rooms Section */
.rooms-section {
    padding: 80px 0;
    background: #f8f4eb;
}

.rooms-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0b1d2e;
}

.section-header p {
    max-width: 720px;
    margin: 0 auto;
    color: #64748b;
    font-size: 17px;
}

.room-list-card {
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.room-list-image {
    min-height: 420px;
    background-size: cover;
    background-position: center;
}

.room-list-info {
    background: #fcfbf7;
}

.room-type {
    display: inline-block;
    color: #c77d2b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
}

.room-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #102a43;
}

.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #64748b;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.room-description {
    color: #334155;
    font-size: 17px;
    line-height: 1.9;
    max-width: 100%;
}

.room-divider {
    height: 1px;
    background: rgba(15, 23, 42, 0.08);
}

.room-price-text {
    font-size: 32px;
    font-weight: 800;
    color: #0b1d2e;
}

.discover-link {
    color: #0b1d2e;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.discover-link:hover {
    color: #c77d2b;
    border-color: #c77d2b;
}

@media (max-width: 991px) {
    .room-list-image {
        min-height: 320px;
    }
    .room-list-info {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .room-title {
        font-size: 32px;
    }
}

.room-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.testimonials-section {
    background: #fffef8;
}

.testimonial-card {
    background: white;
    border-radius: 18px;
    padding: 30px;
    min-height: 320px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-rating {
    color: #f5b106;
    font-size: 16px;
    margin-bottom: 18px;
}

.testimonial-rating .active {
    color: #d4af37;
}

.testimonial-message {
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 22px;
    min-height: 120px;
}

.testimonial-name {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.testimonial-role {
    color: #64748b;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-details {
    padding: 25px;
}

.room-details h4 {
    color: #d4af37;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
}

.room-price {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

.room-features {
    list-style: none;
    margin-bottom: 20px;
}

.room-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.room-detail-section {
    padding: 80px 0;
}

.room-carousel-banner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.room-carousel-banner .carousel-item {
    background: #f0f0f0;
    height: 500px;
}

.room-carousel-banner .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.room-carousel-banner .carousel-indicators {
    bottom: 20px;
}

.room-carousel-banner .carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.6);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.room-carousel-banner .carousel-indicators button.active {
    background-color: #d4af37;
}

.room-carousel-banner .carousel-control-prev,
.room-carousel-banner .carousel-control-next {
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.room-carousel-banner .carousel-control-prev {
    left: 20px;
}

.room-carousel-banner .carousel-control-next {
    right: 20px;
}

.room-detail-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.room-detail-image {
    width: 100%;
    min-height: 420px;
    background-size: cover;
    background-position: center;
}

.room-detail-content h3 {
    font-size: 32px;
    font-weight: 700;
}

.room-detail-content p {
    color: #555;
}

.room-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.room-sidebar {
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.room-sidebar h4,
.room-sidebar h5 {
    margin-bottom: 20px;
}

.room-sidebar ul li {
    margin-bottom: 12px;
    color: #555;
}

.room-sidebar .btn-gold {
    width: 100%;
}

.room-booking-card {
    border-radius: 20px;
}

.text-gold {
    color: #d4af37;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: white;
}

.booking-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 40px;
}

.booking-form input, .booking-form select {
    border: none;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.booking-form input:focus, .booking-form select:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
    outline: none;
}

.btn-book {
    width: 100%;
    padding: 12px;
    background-color: #d4af37;
    color: black;
    border: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-book:hover {
    background-color: #f4d03f;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.testimonial-stars {
    color: #d4af37;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: #333;
}

/* Footer */
.footer-main {
    background: #111111;
    color: white;
    padding: 0;
    overflow: hidden;
}

.footer-main .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.footer-content {
    padding: 60px 0 30px;
    background: #171717;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h5 {
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #d4af37;
    margin-left: 5px;
}

.social-icons-footer {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons-footer a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-gold-sm {
    background-color: #d4af37;
    color: black;
    border: none;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 3px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-gold-sm:hover {
    background-color: #f4d03f;
    transform: translateY(-2px);
}

/* Alerts */
.alert {
    border-radius: 8px;
    border: none;
    padding: 12px 16px;
    margin-bottom: 15px;
    animation: slideIn 0.3s ease-in-out;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.alert i {
    margin-right: 8px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-header {
    background: linear-gradient(135deg, rgba(102,126,234,0.9), rgba(118,75,162,0.9)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1500&q=80') center/cover;
    background-size: cover;
    padding: 120px 0 80px;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,0.92);
}

.contact-page {
    padding: 80px 0;
}

.contact-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.contact-card h3 {
    color: #333;
    margin-bottom: 25px;
}

.contact-card p {
    color: #555;
}

.contact-info-item h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #d4af37;
}

.contact-info-item p {
    color: #666;
    margin-bottom: 0;
}

.contact-form .form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 14px 16px;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.map-placeholder {
    min-height: 420px;
    overflow: hidden;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .contact-header {
        padding: 80px 0 60px;
    }
    .contact-header h1 {
        font-size: 36px;
    }
}

.contact-footer {
    color: #ccc;
}

.contact-footer p {
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-footer i {
    color: #d4af37;
    margin-right: 10px;
    width: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.newsletter-form input {
    flex: 1 1 220px;
    min-width: 220px;
    padding: 10px 14px;
    border: none;
    border-radius: 6px;
}

.newsletter-form button {
    white-space: nowrap;
}

.btn-gold-sm {
    background-color: #d4af37;
    color: black;
    border: none;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 3px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-gold-sm:hover {
    background-color: #f4d03f;
    transform: translateY(-2px);
}

.footer-bottom {
    background: #111111;
    padding: 20px 0;
    border-top: 1px solid #333;
    color: #999;
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #d4af37;
}

@media (max-width: 767px) {
    .footer-main .row {
        gap: 30px;
    }
    .footer-bottom .col-md-6 {
        text-align: center !important;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .footer-section {
        margin-bottom: 30px;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    .newsletter-form input {
        width: 100%;
    }
}

/* Split FAQ + Image layout */
.split-faq {
    padding: 60px 0;
}
.faq-list {
    max-width: 720px;
}
.faq-card {
    background: #f6efe6;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(16,24,40,0.06);
}
.faq-question {
    font-weight: 700;
    font-size: 18px;
    color: #1f2937;
}
.faq-answer {
    padding-top: 12px;
    color: #334155;
    line-height: 1.9;
}
.image-column img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(2,6,23,0.12);
}
.chev {
    transition: transform 0.25s ease;
    color: #222;
}
.chev.rot {
    transform: rotate(180deg);
}

/* Floating VR Walkthrough button */
.vr-walk-btn {
    position: fixed;
    left: 18px;
    bottom: 18px;
    background: white;
    border: 3px solid #7b3cf8;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(123,60,248,0.12);
    z-index: 9999;
}

/* Dark split section (Cafe) */
.split-dark {
    padding: 80px 0;
}
.split-dark .dark-left {
    background: #0f2929;
    color: #f1f5f4;
    padding: 60px;
    border-radius: 12px 0 0 12px;
}
.split-dark h2 {
    font-size: 56px;
    margin-bottom: 18px;
    font-family: 'Georgia', serif;
    color: #fff;
}
.split-dark p.lead {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(241,245,244,0.95);
    max-width: 720px;
}
.dark-ctas {
    margin-top: 28px;
    display: flex;
    gap: 18px;
    align-items: center;
}
.btn-outline {
    border: 2px solid rgba(255,255,255,0.25);
    color: #fff;
    background: transparent;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 700;
}
.btn-outline:hover {
    border-color: #fff;
    transform: translateY(-3px);
}
.btn-gradient {
    background: linear-gradient(90deg,#ff6b6b 0%, #ff9a3c 100%);
    color: #fff;
    padding: 14px 36px;
    border-radius: 40px;
    border: none;
    font-weight: 700;
}
.split-dark .image-right img {
    width: 100%;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 30px 80px rgba(2,6,23,0.2);
}

@media (max-width: 991px) {
    .split-dark .dark-left {
        border-radius: 12px 12px 0 0;
    }
    .split-dark .image-right img {
        border-radius: 0 0 12px 12px;
    }
}

/* Blog Styles */
.blog-header {
    background: linear-gradient(135deg, rgba(102,126,234,0.9), rgba(118,75,162,0.9)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1500&q=80') center/cover;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.blog-header h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.blog-header p {
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,0.92);
}

.blog-list-section {
    background: #f8f9fa;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card-img, .blog-card-img-placeholder {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-card-body {
    padding: 25px;
}

.blog-card-body h5 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #0b1d2e;
}

.blog-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #999;
}

.blog-card-meta small {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Single Blog Post */
.blog-single-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
}

.blog-single-header h1 {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 30px;
    font-size: 14px;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-single-content {
    padding: 60px 0;
    background: white;
}

.blog-featured-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.blog-body p {
    margin-bottom: 15px;
}

.blog-sidebar {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.blog-sidebar h4 {
    font-size: 18px;
    font-weight: bold;
    color: #0b1d2e;
    margin-bottom: 15px;
}

.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.recent-posts li:last-child {
    border-bottom: none;
}

.recent-posts a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.recent-posts a:hover {
    color: #f4d03f;
}

.recent-posts small {
    display: block;
    color: #999;
    font-size: 12px;
    margin-top: 5px;
}

.blog-nav {
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

@media (max-width: 767px) {
    .blog-header h1 {
        font-size: 32px;
    }
    
    .blog-single-header h1 {
        font-size: 28px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
}