:root {
    --primary-gold: #d4af37;
    --dark-bg: #0a1121;
    --accent-dark: #1a2338;
    --text-light: #f0f4f8;
    --text-muted: #a0b0c0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

/* ===== PREMIUM NAVBAR ===== */
.navbar-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 17, 33, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-premium.scrolled {
    background: rgba(10, 17, 33, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== LOGO SECTION ===== */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 45px;
    width: auto;
    transition: filter 0.3s ease;
}

.navbar-logo:hover .logo-img {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: -0.5px;
    display: none;
}

@media (min-width: 1200px) {
    .logo-text {
        display: block;
    }
}

/* ===== DESKTOP MENU ===== */
.navbar-menu {
    display: none;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 992px) {
    .navbar-menu {
        display: flex;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: translateY(-2px);
}

/* ===== AUTH SECTION ===== */
.navbar-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Nav Buttons */
.btn-nav-secondary,
.btn-nav-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-nav-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-nav-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-2px);
}

.btn-nav-primary {
    background: linear-gradient(135deg, var(--primary-gold), #b8972e);
    color: var(--dark-bg);
    border: 2px solid var(--primary-gold);
}

.btn-nav-primary:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* ===== USER MENU ===== */
.user-menu {
    position: relative;
}

.user-avatar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-avatar:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.user-avatar i.fa-user-circle {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.chevron-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.user-avatar:hover .chevron-icon {
    transform: rotate(180deg);
}

.user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    min-width: 220px;
    background: rgba(26, 35, 56, 0.98);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--primary-gold);
}

.dropdown-divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    margin: 0.5rem 0;
}

.logout-item {
    color: #ef4444;
}

.logout-item:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.logout-item i {
    color: #ef4444;
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover .hamburger-line {
    background: white;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: rgba(26, 35, 56, 0.98);
    backdrop-filter: blur(20px);
    border-left: 2px solid rgba(212, 175, 55, 0.2);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.mobile-close {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.mobile-menu-body {
    padding: 1rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-link:hover,
.mobile-link.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    transform: translateX(5px);
}

.mobile-link i {
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-gold);
}

.mobile-divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    margin: 1rem 0;
}

.mobile-link-logout {
    color: #ef4444;
}

.mobile-link-logout:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.mobile-link-logout i {
    color: #ef4444;
}

.mobile-link-primary {
    background: linear-gradient(135deg, var(--primary-gold), #b8972e);
    color: var(--dark-bg);
    font-weight: 700;
}

.mobile-link-primary:hover {
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .navbar-wrapper {
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    .logo-img {
        height: 40px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 90%);
    animation: glowPulse 6s infinite ease-in-out;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content .logo-img {
    max-width: 220px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.4));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    animation: fadeInDown 1.2s ease-out;
}

.hero-content p {
    font-size: 1.6rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 1.4s ease-out;
}


@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Carousel Section */
.carousel-section {
    background: var(--accent-dark);
    padding: 5rem 0;
    position: relative;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%230a1121" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,128C960,160,1056,224,1152,224C1248,224,1344,160,1392,128L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    opacity: 0.05;
}

.carousel-item {
    transition: transform 0.6s ease;
}

.carousel-item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 2rem;
    filter: brightness(0.65) contrast(1.1);
    transition: all 0.4s ease;
}

.carousel-item.active img {
    filter: brightness(0.85) contrast(1.2);
}

.carousel-caption {
    background: rgba(10, 17, 33, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    bottom: 3rem;
    left: 5%;
    max-width: 450px;
    text-align: left;
    transition: transform 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.carousel-item.active .carousel-caption {
    transform: translateY(-10px);
}

.carousel-caption h5 {
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.carousel-caption p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.carousel-caption .btn {
    background: linear-gradient(135deg, var(--primary-gold), #b8972e);
    border: none;
    border-radius: 30px;
    padding: 0.7rem 2rem;
    color: var(--dark-bg);
    font-weight: 600;
    transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.carousel-control-prev, .carousel-control-next {
    width: 8%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-size: 60%;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg), var(--accent-dark));
    position: relative;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: radial-gradient(circle at 50% 0, rgba(212, 175, 55, 0.1), transparent);
}

.feature-card {
    background: rgba(26, 35, 56, 0.8);
    backdrop-filter: blur(15px);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-card h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Footer */
/* Footer - Feature Card Style */
footer {
    background: linear-gradient(135deg, rgba(10, 17, 33, 1), rgba(0, 0, 0, 0.1)), url('images/intro6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 17, 33, 0.9), rgba(26, 35, 56, 0.1));
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Cards - Like Feature Cards */
.footer-card {
    background: rgba(26, 35, 56, 0.1);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.footer-card:hover::before {
    opacity: 1;
}

/* Icon Wrapper */
.footer-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.footer-card:hover .footer-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.footer-icon {
    font-size: 2rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

/* Footer Headings */
.footer-card h5 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-card h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

/* Footer Logo */
.footer-logo {
    max-width: 120px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease;
}

.footer-card:hover .footer-logo {
    transform: scale(1.05);
}

/* Footer Text */
.footer-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-links li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links li i {
    color: var(--primary-gold);
    font-size: 0.7rem;
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-links li:hover i {
    transform: translateX(5px);
}

.footer-links li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links li:hover a {
    color: var(--primary-gold);
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    text-align: left;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.contact-item a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

/* Address Box */
.address-box {
    text-align: left;
}

.address-box p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.map-link:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .social-links {
        justify-content: flex-end;
    }
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-card {
        margin-bottom: 1.5rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .address-box {
        text-align: center;
    }
}
/* CTA Section for spaces.php Hero */
.cta-section {
    background: linear-gradient(135deg, var(--primary-gold), #b8972e);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 1rem;
}

.cta-content .logo-img {
    max-width: 120px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-content h1 {
    color: var(--dark-bg);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInScale 1.2s ease-out;
}

.cta-content p {
    color: rgba(10, 17, 33, 0.9);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.cta-content .btn {
    background: var(--dark-bg);
    color: var(--primary-gold);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-content .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Unified Button Styles */
.cta-button {
    background: linear-gradient(135deg, var(--primary-gold), #b8972e);
    color: var(--dark-bg);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

.cta-button.secondary {
    background: var(--dark-bg);
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, var(--primary-gold), #b8972e);
    color: var(--dark-bg);
    border: none;
}

.cta-button:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
}

/* Filter Section */
.filter-section {
    background: rgba(26, 35, 56, 0.8);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.filter-section .form-label {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.filter-section .form-select,
.filter-section .form-control {
    background-color: var(--accent-dark);
    color: var(--text-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.filter-section .form-select:focus,
.filter-section .form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.filter-section .form-select option {
    background-color: var(--accent-dark);
    color: var(--text-light);
}

.filter-section .form-control::placeholder {
    color: var(--text-muted);
}

.filter-btn {
    background: linear-gradient(135deg, var(--primary-gold), #b8972e);
    color: var(--dark-bg);
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.clear-btn {
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.clear-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

/* Space Card */
.space-card {
    background: rgba(26, 35, 56, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.space-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.space-card img {
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    filter: brightness(0.85) contrast(1.1);
}

.space-card .card-body {
    padding: 1.5rem;
}

.space-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.space-card .card-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.space-card .btn {
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    border-radius: 0.5rem;
    font-weight: 600;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.space-card .btn:hover {
    background: linear-gradient(135deg, var(--primary-gold), #b8972e);
    color: var(--dark-bg);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

/* Ad Banner */
.ad-banner {
    background: rgba(26, 35, 56, 0.8);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.ad-banner img {
    max-width: 100%;
    border-radius: 1rem;
    filter: brightness(0.9);
}

/* Alert */
.alert-info {
    background: rgba(26, 35, 56, 0.8);
    color: var(--text-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

/* Styles for space-details.php */
.details-container {
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.space-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.space-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.space-details {
    color: var(--text-light);
    line-height: 1.6;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.booking-form {
    background: rgba(26, 35, 56, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.booking-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.booking-form h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.booking-form .form-label {
    color: var(--text-light);
    font-weight: 500;
}

.booking-form .form-control {
    background: var(--accent-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.booking-form .form-control::placeholder {
    color: var(--text-muted);
}

.booking-form .form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.time-slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.time-slot-btn {
    background: var(--accent-dark);
    color: var(--text-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.time-slot-btn:hover:not(.disabled-btn) {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
}

.time-slot-btn.disabled-btn {
    background: var(--text-muted);
    color: var(--dark-bg);
    border: 1px solid var(--text-muted);
    opacity: 0.7;
    cursor: not-allowed;
}

.time-slot-btn.selected {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
}

.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.amenities-list i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.social-sharing-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.similar-spaces .card {
    background: rgba(26, 35, 56, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.similar-spaces .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.similar-spaces .card-body {
    padding: 1.5rem;
}

.similar-spaces .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.similar-spaces .card-text {
    color: var(--text-muted);
}

.table-dark {
    background: var(--accent-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    color: var(--text-light);
}

.table-dark th {
    color: var(--primary-gold);
}

.table-dark td {
    border-color: rgba(212, 175, 55, 0.1);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .booking-form {
        position: sticky;
        top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-content p {
        font-size: 1.3rem;
    }
    .carousel-item img {
        height: 400px;
    }
    .carousel-caption {
        max-width: 90%;
        left: 5%;
        padding: 1.5rem;
    }
    .feature-card {
        margin-bottom: 2rem;
    }
    footer {
        text-align: center;
    }
    footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
	
	
	

	
	.cta-section {
    background: linear-gradient(135deg, var(--primary-gold), #b8972e);
    padding: 1rem 0; /* Reduced from 3rem to 1rem */
    text-align: center;
    position: relative;
    overflow: hidden;
    height: auto; /* Changed from 30vh to auto */
    display: block; /* Changed from flex to block */
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0.5rem 1rem; /* Reduced padding */
    margin: 0 auto; /* Center the content */
}

.cta-content .logo-img {
    max-width: 100px; /* Reduced from 120px */
    margin-bottom: 0.5rem; /* Reduced from 1rem */
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-content h1 {
    color: var(--dark-bg);
    font-size: 2rem; /* Reduced from 3rem */
    font-weight: 800;
    margin-bottom: 0.5rem; /* Reduced from 1rem */
    animation: fadeInScale 1.2s ease-out;
}

.cta-content p {
    color: rgba(10, 17, 33, 0.9);
    font-size: 1.1rem; /* Reduced from 1.4rem */
    margin-bottom: 1rem; /* Reduced from 1.5rem */
}

.cta-content .btn {
    background: var(--dark-bg);
    color: var(--primary-gold);
    padding: 0.75rem 2rem; /* Reduced from 1rem 3rem */
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-content .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

	
	
	
    .image-gallery {
        grid-template-columns: 1fr;
    }
    .booking-form {
        margin-top: 2rem;
    }
    .space-title {
        font-size: 2rem;
    }
    .space-subtitle {
        font-size: 1rem;
    }
}
.container.my-3 {
    margin-top: 1rem !important;
}
/* Main content padding to avoid navbar overlap */
main {
    padding-top: 80px;
}
/* ===== SECTION BADGES ===== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.section-badge i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.section-badge span {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== ABOUT BCH SECTION ===== */
.about-bch-section {
    position: relative;
    padding: 6rem 0;
}

.about-bch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 17, 33, 0.9), rgba(26, 35, 56, 0.95));
    z-index: 1;
}

.about-bch-section .container {
    position: relative;
    z-index: 2;
}

/* Enhanced Feature Cards */
.feature-card-enhanced {
    background: rgba(26, 35, 56, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 2rem;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-enhanced:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.feature-card-enhanced:hover::before {
    opacity: 1;
}

/* Accent Card Variant */
.feature-card-accent {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.9) 0%, rgba(26, 32, 44, 0.95) 100%);
    border-color: rgba(246, 173, 85, 0.3);
}

.feature-card-accent:hover {
    border-color: rgba(246, 173, 85, 0.5);
}

/* Card Icon Header */
.card-icon-header {
    margin-bottom: 2rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.feature-card-enhanced:hover .icon-circle {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.icon-circle i {
    font-size: 2.2rem;
    color: var(--primary-gold);
}

.icon-circle-accent {
    border-color: rgba(246, 173, 85, 0.4);
}

.icon-circle-accent i {
    color: #f6ad55;
}

/* Card Content */
.card-title-enhanced {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.25rem;
    text-align: center;
}

.card-text-enhanced {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Highlight Box */
.highlight-box {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #f6ad55;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-box i {
    color: #f6ad55;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-box p {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Action Buttons */
.btn-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-gold), #b8972e);
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-card-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: var(--dark-bg);
}

.btn-card-action-accent {
    background: linear-gradient(135deg, #f6ad55, #ed8936);
}

/* ===== OUR SPACES SECTION ===== */
.our-spaces-section {
    position: relative;
    padding: 6rem 0;
}

.our-spaces-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 17, 33, 0.9), rgba(26, 35, 56, 0.95));
    z-index: 1;
}

.our-spaces-section .container {
    position: relative;
    z-index: 2;
}

/* Space Cards */
.space-card {
    background: rgba(26, 35, 56, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.space-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.15), transparent);
    transition: top 0.4s ease;
}

.space-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.space-card:hover::before {
    top: 0;
}

/* Space Icon */
.space-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.space-card:hover .space-icon-wrapper {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.space-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-gold);
}

/* Space Content */
.space-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
}

.space-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    min-height: 45px;
}

/* Space Features */
.space-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.space-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.space-feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.space-feature-item i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.space-feature-item span {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Café Featured Card */
.cafe-card-featured {
    background: rgba(26, 35, 56, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 2rem;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cafe-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cafe-card-featured:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cafe-card-featured:hover::before {
    opacity: 1;
}

/* Café Icon */
.cafe-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.cafe-card-featured:hover .cafe-icon-large {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.cafe-icon-large i {
    font-size: 3rem;
    color: var(--primary-gold);
}

/* Café Content */
.cafe-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.cafe-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Café Badges */
.cafe-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cafe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cafe-badge:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.cafe-badge i {
    color: var(--primary-gold);
}

/* Café Explore Button */
.btn-cafe-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-gold), #b8972e);
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-cafe-explore:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: var(--dark-bg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-bch-section,
    .our-spaces-section {
        padding: 4rem 0;
    }
    
    .feature-card-enhanced {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .space-card {
        margin-bottom: 1.5rem;
    }
    
    .cafe-card-featured {
        padding: 2rem;
    }
    
    .cafe-card-featured .row > div {
        margin-bottom: 1.5rem;
    }
    
    .cafe-highlights {
        justify-content: center;
    }
}
/* ===== MODERN HERO SECTION ===== */
.hero-section-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a2847 0%, #2d3e5f 100%);
    overflow: hidden;
    padding: 8rem 0 4rem;
}

/* Background Pattern */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.hero-section-modern .container {
    position: relative;
    z-index: 2;
}

/* ===== LEFT CONTENT ===== */
.hero-text-content {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Line Decoration */
.hero-line-decoration {
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 10px;
    margin-bottom: 2rem;
}

/* Main Title */
.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-highlight {
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-hero-main {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--primary-gold);
    color: #1a2847;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    border: 3px solid var(--primary-gold);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
   
	background: transparent;
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-hero-main:hover {
    background: black;
    color: var(--primary-gold);
    transform: translateY(-3px);
	color: white;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.hero-website-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== RIGHT IMAGE CONTAINER ===== */
.hero-image-container {
    position: relative;
    height: 600px;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Decorative Circles */
.hero-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero-circle-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-gold), #b8972e);
    top: -30px;
    left: -30px;
    opacity: 0.9;
    animation: float 6s ease-in-out infinite;
}

.hero-circle-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f6ad55, #ed8936);
    bottom: 100px;
    right: -20px;
    opacity: 0.8;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-circle-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), #b8972e);
    top: 50%;
    left: -40px;
    opacity: 0.7;
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Tilted Image Card */
.hero-tilted-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    transform: rotate(-8deg);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 8px solid var(--primary-gold);
    z-index: 2;
    transition: all 0.5s ease;
    animation: tiltFloat 6s ease-in-out infinite;
}

@keyframes tiltFloat {
    0%, 100% {
        transform: rotate(-8deg) translateY(0);
    }
    50% {
        transform: rotate(-8deg) translateY(-15px);
    }
}

.hero-tilted-card:hover {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.hero-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-tilted-card:hover .hero-card-img {
    transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-section-modern {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image-container {
        height: 500px;
        margin-top: 3rem;
    }
    
    .hero-tilted-card {
        max-width: 400px;
        height: 400px;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-line-decoration {
        width: 60px;
        height: 3px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .btn-hero-main {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .hero-image-container {
        height: 400px;
    }
    
    .hero-tilted-card {
        max-width: 100%;
        height: 350px;
    }
    
    .hero-circle-1 {
        width: 100px;
        height: 100px;
    }
    
    .hero-circle-2 {
        width: 70px;
        height: 70px;
    }
    
    .hero-circle-3 {
        width: 60px;
        height: 60px;
    }
}
/* ===== CLEAR BACKGROUND FIX ===== */
/* Remove dark overlays to show background images clearly */

.about-bch-section::before {
    display: none !important;
}

.our-spaces-section::before {
    display: none !important;
}

/* Make sure backgrounds are visible */


/* Ensure cards are still readable with slight background */
.about-bch-section .feature-card-enhanced,
.about-bch-section .section-badge,
.about-bch-section .display-4,
.about-bch-section .lead {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.our-spaces-section .space-card,
.our-spaces-section .cafe-card-featured,
.our-spaces-section .section-badge,
.our-spaces-section .lead {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Make card backgrounds slightly more opaque for readability */
.feature-card-enhanced {
    background: rgba(26, 35, 56, 0.1) !important;
}

.space-card {
    background: rgba(26, 35, 56, 0.1) !important;
}

.cafe-card-featured {
    background: rgba(26, 35, 56, 0.1) !important;
}
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start; /* Or center if preferred */
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa; /* Light bg for visibility */
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    pointer-events: auto; /* Ensure clickable */
    z-index: 10;
}

.social-icon:hover {
    background-color: var(--primary-gold); /* Blue hover for all, or customize per icon */
    color: black;
    transform: scale(1.1); /* Subtle animation */
}

.social-icon i {
    font-size: 1.2rem;
    pointer-events: none; /* Icons don't block clicks */
}

/* Facebook-specific hover */
.social-icon[title="Facebook"]:hover {
    background-color: var(--primary-gold);
}

/* Instagram-specific */
.social-icon[title="Instagram"]:hover {
    background-color:var(--primary-gold);
}

/* LinkedIn-specific */
.social-icon[title="LinkedIn"]:hover {
    background-color: var(--primary-gold);
}