/* Real Estate Website CSS - Complete Fixed Version */

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

html {
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 120px; /* Account for top bar + fixed header */
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
    border-top: 1px solid #e9ecef;
    padding: 0.5rem 0;
    margin-top: 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.breadcrumb-nav .container {
    padding: 0 1rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    overflow: hidden;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.breadcrumb-item a {
    color: #1e3c72;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    background: rgba(30, 60, 114, 0.1);
    color: #2a5298;
    transform: translateX(2px);
}

.breadcrumb-item a i {
    font-size: 0.85rem;
}

.breadcrumb-item.active {
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    font-weight: 600;
}

.breadcrumb-item.active i {
    font-size: 0.85rem;
    color: #1e3c72;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: #dee2e6;
    margin: 0 0.3rem;
    font-weight: 300;
}

/* Hero Section - Common for all pages */
.page-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
    margin-top: 0;
}

.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Hero */
@media (max-width: 991px) {
    body {
        padding-top: 100px;
    }
    
    .top-bar {
        padding: 0.5rem 0;
    }
    
    .top-bar-content {
        justify-content: center;
        align-items: center;
    }
    
    .top-bar-left {
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    
    .top-bar-link {
        justify-content: center;
    }
    
    /* Hide email on non-desktop */
    .top-bar-left a[href^="mailto"] {
        display: none;
    }
    
    /* Hide social media icons on non-desktop */
    .top-bar-right {
        display: none;
    }
}
    
    .page-hero {
        padding: 2rem 0 1.5rem;
    }
    
    .page-hero h1 {
        font-size: 1.6rem;
    }
    
    .page-hero p {
        font-size: 0.9rem;
    }
}

/* Responsive Breadcrumb */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 0.5rem 0;
        margin-top: 0;
        overflow: hidden;
    }
    
    .breadcrumb-nav .container {
        padding: 0 1rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
        gap: 0.3rem;
        overflow: hidden;
        flex-wrap: nowrap;
    }
    
    .breadcrumb-item {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .breadcrumb-item a,
    .breadcrumb-item.active {
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 0.2rem;
        flex-shrink: 0;
    }
}

/* ========================================
   TOP BAR - Phone & Social Media
   ======================================== */

.top-bar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
}

.top-bar-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0.95;
}

.top-bar-link:hover {
    opacity: 1;
    color: #ffd700;
}

.top-bar-link i {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.15);
}

.social-icon:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.25);
}

.social-icon.facebook:hover { background: #1877f2; }
.social-icon.twitter:hover { background: #1da1f2; }
.social-icon.instagram:hover { background: #e4405f; }
.social-icon.linkedin:hover { background: #0077b5; }
.social-icon.youtube:hover { background: #ff0000; }
.social-icon.whatsapp:hover { background: #25d366; }

/* Header Styles */
.main-header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 80px;
}

/* Logo Styles */
.navbar-brand {
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3c72;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 1.8rem;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-text {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.6rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.8rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(30, 60, 114, 0.1);
    color: #1e3c72;
    transform: translateY(-1px);
}

.nav-link i {
    font-size: 0.9rem;
    color: #1e3c72;
}

.dropdown-toggle .fas.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle .fas.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(30, 60, 114, 0.08);
    color: #1e3c72;
    padding-left: 1.25rem;
}

.dropdown-item i {
    color: #1e3c72;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* Header Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.8rem;
    background: #1e3c72;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(30, 60, 114, 0.3);
    white-space: nowrap;
}

.action-btn:hover {
    background: #2a5298;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.4);
}

.phone-btn {
    background: #28a745;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

.phone-btn:hover {
    background: #218838;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.inquiry-btn {
    background: #ffd700;
    color: #1e3c72;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.inquiry-btn:hover {
    background: #ffed4e;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #1e3c72;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    border-top: 1px solid #e9ecef;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Debug: Make mobile menu visible for testing */
/* Uncomment the line below to test mobile menu visibility */
/* .mobile-nav { background: rgba(255, 0, 0, 0.1) !important; } */

/* Simple Footer */
.simple-footer {
    background: #1e3c72;
    color: white;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffed4e;
}

.footer-address {
    border-top: 1px solid #2a5298;
    border-bottom: 1px solid #2a5298;
    padding: 1rem 0;
}

.footer-address p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-address i {
    color: #ffed4e;
    width: 16px;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.85rem;
    color: #999;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-links {
        gap: 1.5rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-address p {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .simple-footer {
        padding: 1rem 0;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-address {
        padding: 0.75rem 0;
    }
    
    .footer-address p {
        font-size: 0.8rem;
    }
    
    .footer-copyright p {
        font-size: 0.75rem;
    }
}

.mobile-nav-content {
    padding: 1.5rem;
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-nav-item {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(30, 60, 114, 0.1);
    color: #1e3c72;
}

.mobile-nav-link i {
    color: #1e3c72;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.mobile-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #1e3c72;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-action-btn:hover {
    background: #2a5298;
    transform: translateY(-1px);
}

.mobile-action-btn:first-child {
    background: #28a745;
}

.mobile-action-btn:first-child:hover {
    background: #218838;
}

.mobile-action-btn i {
    font-size: 0.9rem;
}



    
    
    .search-input-group {
        flex-direction: column;
    }
    
    .search-select,
    .search-input {
        width: 100%;
    }

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ffd700;
    color: #1e3c72;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary {
    background: #1e3c72;
    color: white;
}

.btn-primary:hover {
    background: #2a5298;
}


.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1e3c72;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}


/* Main Content */
main {
    padding: 0;
}

/* ===============================================
   RESPONSIVE HEADER STYLES
   =============================================== */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-link {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

/* Desktop (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
    
    .desktop-nav {
        margin-right: 1.5rem;
    }
    
    .nav-menu {
        gap: 0.6rem;
    }
    
    .nav-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .dropdown-menu {
        min-width: 200px;
    }
}

/* Small Desktop / Large Tablet (900px - 1023px) */
@media (max-width: 1023px) and (min-width: 900px) {
    .desktop-nav {
        margin-right: 1rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .action-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .action-text {
        display: none;
    }
    
    .dropdown-menu {
        min-width: 180px;
    }
    
    .dropdown-item {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
    }
}

/* Tablet (768px - 899px) */
@media (max-width: 899px) and (min-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 0.6rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .desktop-nav {
        margin: 0 1rem;
    }
    
    .header-actions {
        display: none;
    }
    
    .dropdown-menu {
        min-width: 160px;
    }
    
    .dropdown-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Mobile Landscape (600px - 767px) */
@media (max-width: 767px) and (min-width: 600px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
        min-height: 70px;
    }
    
    .logo {
        font-size: 1.3rem;
        gap: 0.5rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        top: 70px;
        max-height: calc(100vh - 70px);
    }
    
    body {
        padding-top: 70px;
    }
    
    .mobile-nav-content {
        padding: 1.5rem;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    .mobile-action-btn {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
}

/* Mobile Portrait (480px - 599px) */
@media (max-width: 599px) and (min-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
        min-height: 65px;
    }
    
    .logo {
        font-size: 1.2rem;
        gap: 0.4rem;
    }
    
    .logo i {
        font-size: 1.4rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        top: 65px;
        max-height: calc(100vh - 65px);
    }
    
    body {
        padding-top: 65px;
    }
    
    .mobile-nav-content {
        padding: 1.2rem;
    }
    
    .mobile-nav-link {
        padding: 0.7rem 0.8rem;
        font-size: 0.95rem;
    }
    
    .mobile-action-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.95rem;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
        min-height: 60px;
    }
    
    .logo {
        font-size: 1.1rem;
        gap: 0.3rem;
    }
    
    .logo i {
        font-size: 1.3rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        width: 26px;
        height: 20px;
    }
    
    .hamburger-line {
        height: 2px;
    }
    
    .mobile-nav {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    
    body {
        padding-top: 60px;
    }
    
    .mobile-nav-content {
        padding: 1rem;
    }
    
    .mobile-nav-link {
        padding: 0.6rem 0.7rem;
        font-size: 0.9rem;
    }
    
    .mobile-nav-link i {
        font-size: 0.8rem;
        width: 16px;
    }
    
    .mobile-action-btn {
        padding: 0.6rem 0.7rem;
        font-size: 0.9rem;
    }
    
    .mobile-action-btn i {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
    .container {
        padding: 0 0.25rem;
    }
    
    .navbar {
        padding: 0.4rem 0;
        min-height: 55px;
    }
    
    .logo {
        font-size: 1rem;
        gap: 0.25rem;
    }
    
    .logo i {
        font-size: 1.2rem;
    }
    
    .mobile-nav {
        top: 55px;
        max-height: calc(100vh - 55px);
    }
    
    body {
        padding-top: 55px;
    }
    
    .mobile-nav-content {
        padding: 0.8rem;
    }
    
    .mobile-nav-link {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .mobile-action-btn {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .property-card {
        margin-bottom: 1rem;
    }
    
    
}

/* AdSense Integration Styles */
.ad-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.ad-wrapper {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.ad-label-top {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.ad-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

/* Banner ad container */
.ad-banner-container {
    margin: 2rem 0;
    text-align: center;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.ad-banner-container .ad-label {
    display: block;
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

/* Sidebar ad styles */
.sidebar .ad-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.sidebar .ad-label {
    display: block;
    font-size: 0.65rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}