/* =============================================
   China Builders & Developers - Main Stylesheet
   Brand Colors:
   - Primary (Dark Blue): #0A1A3A
   - Secondary (Gold): #C9A14A
   - White: #FFFFFF
   ============================================= */

:root {
    --primary: #0A1A3A;
    --secondary: #C9A14A;
    --white: #FFFFFF;
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow: 0 5px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

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

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: #0d2347;
    border-color: #0d2347;
    transform: translateY(-2px);
}

.btn-gold, .btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

.btn-gold:hover, .btn-secondary:hover {
    background: #b8923f;
    border-color: #b8923f;
    color: var(--primary);
    transform: translateY(-2px);
}

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

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

/* Section Titles */
.section-title {
    margin-bottom: 50px;
}

.section-title .subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Top Bar - Hidden */
.top-bar {
    display: none;
    background: var(--primary);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.top-bar-info li {
    color: rgba(255,255,255,0.8);
}

.top-bar-info li i {
    color: var(--secondary);
    margin-right: 8px;
}

.social-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.social-links li a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.social-links li a:hover {
    color: var(--secondary);
}

/* Main Navbar */
.main-navbar {
    background: var(--primary);
    box-shadow: none;
    padding: 0;
    min-height: 60px;
}

.main-navbar .container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    padding: 0;
}

.navbar-brand img {
    height: 36px !important;
    width: auto;
}

.navbar-brand:hover {
    color: var(--secondary);
}

.brand-text {
    color: var(--white);
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 6px 12px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary);
}

/* Header Quote Button - smaller */
.main-navbar .btn-gold {
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Navbar toggler for mobile - light icon on dark bg */
.main-navbar .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
    padding: 4px 8px;
}

.main-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 8px 0;
    background: var(--white);
}

.dropdown-item {
    padding: 8px 18px;
    font-weight: 500;
    color: var(--primary);
}

.dropdown-item:hover {
    background: var(--light);
    color: var(--secondary);
}

/* Dropdown toggle arrow color */
.main-navbar .dropdown-toggle::after {
    border-top-color: rgba(255,255,255,0.9);
}

/* Hero Slider */
.hero-slider {
    position: relative;
}

.heroSwiper {
    width: 100%;
    height: calc(100vh - 60px);
    min-height: 400px;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 58, 0.65);
}

.slide-bg > .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
}

.slide-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    font-weight: 700;
}

.slide-content p {
    color: rgba(255,255,255,0.95);
    font-size: 1.15rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: var(--white);
    background: rgba(201, 161, 74, 0.4);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: var(--transition);
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: var(--secondary);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 1rem;
}

.heroSwiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--secondary);
    opacity: 1;
}

/* Hero slider button */
.slide-content .btn {
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Intro Section */
.intro-section {
    background: var(--white);
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    background: var(--primary);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-heading);
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Category Cards */
.categories-section {
    background: var(--light);
    padding: 80px 0;
}

.category-card {
    display: block;
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #1a3a5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.category-card p {
    color: var(--gray);
    margin-bottom: 15px;
}

.category-link {
    color: var(--secondary);
    font-weight: 600;
}

/* Project Cards */
.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-image .no-image {
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image .no-image i {
    font-size: 4rem;
    color: var(--gray);
}

.project-status {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-completed, .badge.status-completed {
    background: #28a745;
    color: var(--white);
}

.status-ongoing, .badge.status-ongoing {
    background: #ffc107;
    color: var(--dark);
}

.status-upcoming, .badge.status-upcoming {
    background: #17a2b8;
    color: var(--white);
}

.project-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-info {
    padding: 25px;
}

.project-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.project-info .location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.project-info .location i {
    color: #dc3545;
    margin-right: 5px;
}

.project-info .description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), #dbb860);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: var(--primary);
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 58, 0.85);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    background: none;
    justify-content: center;
    margin: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.page-header .breadcrumb-item.active {
    color: var(--secondary);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* About Page */
.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--secondary);
    padding: 25px 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.experience-badge .text {
    color: var(--primary);
    font-weight: 500;
}

.about-content {
    color: var(--gray);
    line-height: 1.8;
}

/* Mission Vision */
.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #1a3a5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mv-icon i {
    font-size: 1.8rem;
    color: var(--secondary);
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--gray);
    margin: 0;
}

/* Why Us */
.reason-item {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
}

.reason-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.reason-item span {
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
    padding: 80px 0;
}

.stat-box {
    text-align: center;
    color: var(--white);
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-box p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Projects Filter */
.projects-filter {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-group label {
    font-weight: 600;
    color: var(--primary);
}

.btn-filter {
    background: var(--light);
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    color: var(--gray);
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--primary);
    color: var(--white);
}

/* Contact Page */
.contact-info-box {
    background: var(--primary);
    padding: 40px;
    border-radius: 15px;
    color: var(--white);
    height: 100%;
}

.contact-info-box h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info-box > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 161, 74, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item .icon i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.contact-item h5 {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

.contact-item p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form-box h3 {
    margin-bottom: 25px;
}

.contact-form .form-control {
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
}

.contact-form .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(201, 161, 74, 0.15);
}

.map-section .map-container {
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Inquiry/Booking Box */
.inquiry-box,
.booking-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.inquiry-box h4,
.booking-box h4 {
    margin-bottom: 10px;
}

.inquiry-box .form-control,
.booking-box .form-control {
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
}

.inquiry-box .form-control:focus,
.booking-box .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(201, 161, 74, 0.15);
}

.contact-quick p {
    margin-bottom: 10px;
    color: var(--gray);
}

.contact-quick i {
    width: 20px;
    margin-right: 10px;
}

/* Project Detail */
.project-gallery,
.banquet-gallery {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.projectGallery,
.banquetGallery {
    width: 100%;
    height: 500px;
}

.projectGallery img,
.banquetGallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content,
.banquet-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.project-badges .badge {
    font-size: 0.85rem;
    padding: 8px 15px;
    margin-right: 10px;
}

.location-text {
    color: var(--gray);
    font-size: 1.1rem;
}

.description-section,
.amenities-section,
.floor-plans-section,
.pricing-section,
.location-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.description-section h4,
.amenities-section h4,
.floor-plans-section h4,
.pricing-section h4,
.location-section h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--light);
    border-radius: 8px;
}

.amenity-item i {
    font-size: 1.1rem;
}

.pricing-box {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.map-embed {
    border-radius: 10px;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Banquet Cards */
.banquet-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.banquet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.banquet-image {
    height: 250px;
    overflow: hidden;
}

.banquet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.banquet-card:hover .banquet-image img {
    transform: scale(1.1);
}

.banquet-image .no-image {
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banquet-image .no-image i {
    font-size: 4rem;
    color: var(--gray);
}

.banquet-info {
    padding: 25px;
}

.banquet-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.banquet-info .capacity {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 10px;
}

.banquet-info .capacity i {
    margin-right: 5px;
}

.banquet-info .description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.banquet-meta .meta-item {
    color: var(--gray);
}

.banquet-meta .meta-item i {
    color: var(--secondary);
    margin-right: 8px;
}

/* Footer */
.main-footer {
    background: var(--primary);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.8);
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-about {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* Booking CTA */
.booking-cta {
    border-top: 1px solid var(--light-gray);
}

.booking-cta h3 {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    .main-navbar {
        min-height: 55px;
    }

    .heroSwiper {
        height: calc(100vh - 55px);
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .intro-stats {
        margin-top: 40px;
        padding: 30px;
    }

    .top-bar {
        display: none;
    }

    .main-navbar .btn-gold {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .main-navbar {
        min-height: 50px;
    }

    .navbar-brand img {
        height: 30px !important;
    }

    .heroSwiper {
        height: calc(100vh - 50px);
        min-height: 350px;
    }

    .slide-content h1 {
        font-size: 1.75rem;
    }

    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .slide-content .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .heroSwiper .swiper-button-next::after,
    .heroSwiper .swiper-button-prev::after {
        font-size: 0.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .intro-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .filter-group {
        justify-content: center;
    }

    .projectGallery,
    .banquetGallery {
        height: 300px;
    }

    .experience-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
}

/* Animation classes */
[data-aos] {
    transition-duration: 800ms;
}
