:root {
    /* Color Palette - Inspired by industrial elegance */
    --primary-dark: #0F1419;
    --primary-navy: #1A2332;
    --accent-gold: #D4AF37;
    --accent-bronze: #CD7F32;
    --accent-emerald: #2D5F4C;
    --text-light: #F5F5F5;
    --text-gray: #A8A8A8;
    --bg-cream: #FAF9F6;
    --bg-light: #FFFFFF;
    --border-color: #E8E8E8;
    --shadow-soft: rgba(0, 0, 0, 0.08);
    --overlay-dark: rgba(15, 20, 25, 0.85);
    
    /* Typography Scale */
    --font-display: 'Playfair Display', serif;
    --font-mono: 'Space Mono', monospace;
    --font-body: 'IBM Plex Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --card-radius: 16px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-bronze);
}

/* ============================================
   NAVIGATION
   ============================================ */
.custom-navbar {
    background: linear-gradient(to bottom, rgba(15, 20, 25, 0.98), rgba(15, 20, 25, 0.95));
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.custom-navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px var(--shadow-soft);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--text-light) !important;
}

.brand-icon {
    font-size: 28px;
    color: var(--accent-gold);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-text {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--text-gray) !important;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 8px 20px !important;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transform: translateX(-50%);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 40px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-bronze));
    color: var(--primary-dark) !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.badge-text {
    color: var(--accent-gold);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 76px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-light);
    margin: 30px 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-bronze));
    color: var(--primary-dark);
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    border: none;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
    color: var(--primary-dark);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text-light);
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 1s ease-out 1s both;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Search Card */
.hero-search-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.5s both;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.search-card-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-dark);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.custom-select {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    transition: var(--transition-smooth);
    background-color: var(--bg-light);
}

.custom-select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.btn-search-submit {
    background: linear-gradient(135deg, var(--accent-emerald), #1e4d3c);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    border: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search-submit:hover {
    background: linear-gradient(135deg, #1e4d3c, var(--accent-emerald));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 95, 76, 0.4);
}

.search-card-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-emerald);
    font-size: 14px;
    font-weight: 600;
}

.verified-badge i {
    font-size: 18px;
}

/* ============================================
   SECTIONS
   ============================================ */
.features-section,
.categories-section,
.cta-section {
    padding: var(--section-padding) 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

/* Features Cards */
.feature-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--card-radius);
    transition: var(--transition-smooth);
    border: 2px solid var(--border-color);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-soft);
    border-color: var(--accent-gold);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-bronze));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: white;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.feature-text {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Category Cards */
.categories-section {
    background: var(--primary-dark);
}

.categories-section .section-tag {
    color: var(--accent-gold);
}

.categories-section .section-title {
    color: var(--text-light);
}

.category-card {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 50px 35px;
    text-align: center;
    transition: var(--transition-smooth);
    overflow: hidden;
    height: 100%;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-bronze));
    opacity: 0;
    transition: var(--transition-smooth);
}

.category-card:hover .category-overlay {
    opacity: 0.15;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.category-icon {
    position: relative;
    z-index: 2;
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.category-card:hover .category-icon {
    transform: scale(1.15);
}

.category-name {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.category-count {
    position: relative;
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-gray);
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-emerald), #1e4d3c);
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.btn-cta-primary {
    background: var(--bg-light);
    color: var(--accent-emerald);
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    border: none;
    transition: var(--transition-smooth);
}

.btn-cta-primary:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ============================================
   DIRECTORY PAGE
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    padding: 150px 0 80px;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

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

/* Filter Sidebar */
.filter-sidebar {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.filter-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.btn-reset {
    background: none;
    border: none;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-reset:hover {
    color: var(--accent-bronze);
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.form-check {
    margin-bottom: 12px;
}

.form-check-input:checked {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.form-check-label {
    font-size: 14px;
    color: var(--primary-dark);
    cursor: pointer;
}

.form-check-label .count {
    color: var(--text-gray);
    font-size: 13px;
}

.btn-apply-filter {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-bronze));
    color: var(--primary-dark);
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    transition: var(--transition-smooth);
}

.btn-apply-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Directory Header */
.directory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.results-count {
    font-size: 15px;
    color: var(--primary-dark);
    margin: 0;
}

.custom-select-small {
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    min-width: 200px;
}

/* Business Cards */
.business-card {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 30px;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-soft);
    border-color: var(--accent-gold);
}

.business-card.premium-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(205, 127, 50, 0.05));
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.business-badge-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge-premium {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-bronze));
    color: var(--primary-dark);
}

.badge-verified {
    background: rgba(45, 95, 76, 0.1);
    color: var(--accent-emerald);
    border: 1px solid var(--accent-emerald);
}

.business-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.business-category,
.business-location {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.business-category i,
.business-location i {
    color: var(--accent-gold);
}

.business-description {
    font-size: 15px;
    color: var(--primary-dark);
    line-height: 1.7;
    margin: 15px 0;
    flex-grow: 1;
}

.business-contact {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.contact-btn {
    flex: 1;
    min-width: 120px;
    padding: 10px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.contact-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-view-detail {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-dark);
}

.btn-view-detail:hover {
    background: transparent;
    color: var(--primary-dark);
}

/* Pagination */
.custom-pagination {
    gap: 8px;
}

.custom-pagination .page-link {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--primary-dark);
    font-weight: 600;
    padding: 12px 18px;
    transition: var(--transition-smooth);
}

.custom-pagination .page-link:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

.custom-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-bronze));
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    padding: 80px 0 30px;
    color: var(--text-gray);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-brand .brand-icon {
    font-size: 28px;
    color: var(--accent-gold);
}

.footer-brand .brand-text {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 350px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 18px;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--text-gray);
    font-size: 15px;
    transition: var(--transition-smooth);
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-contact i {
    color: var(--accent-gold);
    font-size: 18px;
    margin-top: 2px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    margin: 0;
}

.footer-legal-link {
    color: var(--text-gray);
    font-size: 14px;
    margin-left: 20px;
    transition: var(--transition-smooth);
}

.footer-legal-link:hover {
    color: var(--accent-gold);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .hero-search-card {
        margin-top: 50px;
    }
    
    .filter-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-title {
        font-size: 38px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    .cta-card {
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .business-contact {
        flex-direction: column;
    }
    
    .contact-btn {
        min-width: 100%;
    }
}

@media (max-width: 575px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-search-card {
        padding: 30px 25px;
    }
    
    .search-card-title {
        font-size: 24px;
    }
}
.btn-view-detail, .business-description{
    display: none;
}
