/* style.css - Complete Fixed Version */
:root {
    --primary: #FF6B35;
    --primary-light: #FF8E53;
    --secondary: #2EC4B6;
    --accent: #FF9F1C;
    --dark: #1A1A2E;
    --light: #F8F9FA;
    --gray: #6C757D;
    --success: #2EC4B6;
    --shadow-light: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

body {
    background: 
        linear-gradient(135deg, #FFF8F0 0%, #FFFAF5 100%),
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(46, 196, 182, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 159, 28, 0.02) 0%, transparent 50%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: 'Vazirmatn', sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem auto 1.5rem auto;
    color: white;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 900px;
}

.hero-title {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Main Container */
.main-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.businesses-container {
    display: block;
}

/* Premium Business Card Container */
.premium-business-card {
    position: relative;
}

/* Instagram/X Style Verification Tick - On the RIGHT side for RTL */
.verified-tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0,123,255,0.3);
    flex-shrink: 0;
}

/* Business name with verification on RIGHT side */
.business-name-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.business-name {

	
	font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Business address responsive styling */
.business-address {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Blue theme for premium business card */
.card-business.premium-verified {
    border-right: 4px solid #007bff !important;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
}

.card-business.premium-verified .business-header {
    background: rgba(0, 123, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    margin: -12px -12px 12px -12px;
}

/* Hide the duplicate premium badge inside the card */
.premium-badge {
    display: none !important;
}

/* Hide only the SHARE section in business card, keep social media */
.share-group {
    display: none !important;
}

/* Keep social media buttons visible */
.social-group {
    display: flex !important;
}

/* Action Buttons Section */
.action-buttons-section {
    text-align: center;
    padding: 1rem 0;
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.action-btn.vcf-download {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-color: #28a745;
}

.action-btn.share-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    border-color: #6c757d;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    text-decoration: none;
    color: white;
}

.action-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.action-text {
    text-align: right;
    flex: 1;
}

.action-text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.action-text small {
    opacity: 0.9;
    font-size: 0.75rem;
}

/* Share Options */
.share-options {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.2rem;
    margin-top: 1rem;
    border: 1px solid #e9ecef;
}

/* Social Buttons - Icon Only */
.social-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088CC, #00A8E8);
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-btn.link-copy {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: white;
    text-decoration: none;
}

.social-btn i {
    font-size: 1.3rem;
}

/* Link Box */
.link-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    max-width: 400px;
    margin: 0 auto;
}

.link-box code {
    background: none;
    border: none;
    color: #495057;
    font-size: 0.8rem;
    flex: 1;
    text-align: center;
    direction: ltr;
    word-break: break-all;
}

.copy-btn {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .business-name {
        font-size: 1.3rem;
    }
    .business-address {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .business-name {
        font-size: 1.25rem;
    }
    .business-address {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .business-name {
        font-size: 1.1rem;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .business-address {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .verified-tick {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
        margin-right: 5px;
    }
    
    .action-buttons-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        max-width: 300px;
    }
    
    .action-btn {
        padding: 0.7rem 0.9rem;
        gap: 0.6rem;
    }
    
    .action-icon {
        font-size: 1.2rem;
    }
    
    .action-text strong {
        font-size: 0.9rem;
    }
    
    .action-text small {
        font-size: 0.7rem;
    }
    
    .social-buttons {
        gap: 0.6rem;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
    }
    
    .social-btn i {
        font-size: 1.2rem;
    }
    
    .share-options {
        padding: 1rem;
    }
    
    .link-box {
        padding: 0.7rem 0.9rem;
    }
    
    .link-box code {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .business-name {
        font-size: 1rem;
        gap: 4px;
    }
    
    .business-address {
        font-size: 0.8rem;
        line-height: 1.25;
    }
    
    .verified-tick {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
        margin-right: 4px;
    }
    
    .action-buttons-grid {
        max-width: 100%;
        gap: 0.5rem;
    }
    
    .action-btn {
        padding: 0.6rem 0.8rem;
    }
    
    .action-text strong {
        font-size: 0.85rem;
    }
    
    .action-text small {
        font-size: 0.65rem;
    }
}

@media (max-width: 380px) {
    .business-name {
        font-size: 0.95rem;
    }
    
    .business-address {
        font-size: 0.75rem;
    }
    
    .verified-tick {
        width: 14px;
        height: 14px;
        font-size: 0.55rem;
    }
    
    .action-btn {
        padding: 0.5rem 0.7rem;
    }
    
    .action-icon {
        font-size: 1.1rem;
    }
}

/* Extra small devices (very small phones) */
@media (max-width: 320px) {
    .business-name {
        font-size: 0.9rem;
    }
    
    .business-address {
        font-size: 0.7rem;
    }
    
    .action-text strong {
        font-size: 0.8rem;
    }
    
    .action-text small {
        font-size: 0.6rem;
    }
}

/* Ensure text remains readable and properly wrapped */
.business-name, .business-address {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

/* Prevent horizontal scrolling on mobile */
.card-business {
    max-width: 100%;
    overflow: hidden;
}

/* Business Card */
.card-business {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
    border-left: 3px solid var(--primary);
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    position: relative;
}

.card-business:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Business Header */
.business-header {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.business-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid var(--primary-light);
    flex-shrink: 0;
    background: white;
    padding: 2px;
    transition: transform 0.3s ease;
}

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

.business-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.business-name {
    font-weight: 800;
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.business-slug {
    color: var(--primary);
    font-size: 0.75rem;
    background: rgba(255, 107, 53, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    direction: ltr;
    display: inline-block;
    margin-bottom: 0.4rem;
    font-family: monospace;
    border: 1px solid rgba(255, 107, 53, 0.2);
    word-break: break-all;
    white-space: normal;
}

.business-address {
    color: var(--gray);
    font-size: 0.8rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.address-icon {
    color: #EA4335;
    font-size: 0.9rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Amenities with Beautiful Tooltips */
.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.8rem 0;
    justify-content: flex-start;
}

.amenity-item {
    position: relative;
    display: inline-block;
}

.amenity-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--secondary) 0%, #20A39E 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(46, 196, 182, 0.3);
}

.amenity-icon:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 15px rgba(46, 196, 182, 0.4);
}

/* Beautiful Tooltips */
.amenity-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--dark);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    z-index: 1000;
    margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.amenity-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--dark);
}

.amenity-item:hover .amenity-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Phone Numbers */
.phones-container {
    background: linear-gradient(135deg, #F8F9FF 0%, #F0F4FF 100%);
    border-radius: 10px;
    padding: 1rem;
    margin: 0.8rem 0;
    border: 1px solid #E3F2FD;
}

.phone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #E8EAF6;
    text-decoration: none;
    cursor: pointer;
}

.phone-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 196, 182, 0.25);
    border-color: var(--secondary);
}

.phone-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--success) 0%, #20A39E 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1rem;
}

.phone-number {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
    direction: ltr;
    text-align: left;
    flex: 1;
    font-family: monospace;
}

.no-phones {
    text-align: center;
    padding: 1rem;
    color: var(--gray);
    font-size: 0.85rem;
    font-style: italic;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.8rem;
    margin: 0.8rem 0;
    flex-wrap: wrap;
}

.action-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    flex: 1;
    min-width: 150px;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.action-button:hover::before {
    left: 100%;
}

.action-button.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.action-button.secondary {
    background: linear-gradient(135deg, #34A853 0%, #2EC4B6 100%);
    color: white;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ===== BEAUTIFUL SOCIAL SECTION ===== */
.social-share-container {
    margin: 1rem 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF8E1 100%);
    border-radius: 12px;
    border: 1px solid #FFECB3;
    position: relative;
    overflow: hidden;
}

.social-share-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

/* Horizontal Layout */
.social-horizontal-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.social-group, .share-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.social-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 80px;
}

.label-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Social Links with Font Awesome Icons */
.social-buttons {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* Social Platform Colors */
.social-btn.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #F77737 100%);
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088CC 0%, #00A8E8 100%);
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-btn.share {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Icon animations */
.social-btn i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-btn:hover i {
    transform: scale(1.2);
}

/* Vertical Divider */
.vertical-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #FFC107, #FFC107, transparent);
    margin: 0 0.5rem;
}

/* Business Description */
.business-description {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.9rem;
    background: #F8F9FA;
    padding: 1rem;
    border-radius: 10px;
    border-right: 3px solid var(--accent);
    margin: 0.8rem 0;
    text-align: justify;
}

/* Working Hours */
.working-hours {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFECB3 100%);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #FFE0B2;
    margin: 0.8rem 0;
    font-size: 0.9rem;
}

.hours-icon {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Photo Slider */
.photo-slider {
    margin-top: 0.8rem;
    border-radius: 10px;
    overflow: hidden;
}

.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0.6rem;
    padding: 1rem;
    background: #F8F9FA;
    border-radius: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f0f0f0;
}

.slider-container::-webkit-scrollbar {
    height: 6px;
}

.slider-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.slider-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.slider-image {
    width: 130px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.slider-image:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

/* ===== BEAUTIFUL TEXT SECTIONS ===== */

/* SEO Intro Section */
.seo-intro-section {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border-left: 3px solid var(--primary);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.seo-intro-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.seo-intro-section h1 {
    color: var(--dark);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 0.5rem;
}

.seo-intro-section h2 {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.seo-intro-section h3 {
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.seo-intro-section h4 {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seo-intro-section h4::before {
    content: '▸';
    color: var(--accent);
    font-size: 1.1rem;
}

.seo-intro-section p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.seo-intro-section strong {
    color: var(--primary);
    font-weight: 700;
}

.seo-intro-section ul {
    padding-right: 1rem;
    margin-bottom: 1rem;
}

.seo-intro-section li {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    position: relative;
    padding-right: 1.2rem;
}

.seo-intro-section li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    position: absolute;
    right: 0;
    font-size: 0.8rem;
}

.seo-intro-section .small {
    font-size: 0.8rem;
    color: #6C757D;
    line-height: 1.5;
}

/* SEO Footer Section */
.seo-footer-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border-left: 3px solid var(--secondary);
    padding: 1.5rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.seo-footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--success));
}

.seo-footer-section h2 {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.seo-footer-section h3 {
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.seo-footer-section p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.seo-footer-section strong {
    color: var(--dark);
    font-weight: 700;
}

.seo-footer-section .row {
    margin-top: 1rem;
}

.seo-footer-section .col-md-4 {
    margin-bottom: 1rem;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-business {
    animation: fadeInUp 0.4s ease-out;
}

/* Stagger animation for cards */
.card-business:nth-child(1) { animation-delay: 0.1s; }
.card-business:nth-child(2) { animation-delay: 0.2s; }
.card-business:nth-child(3) { animation-delay: 0.3s; }
.card-business:nth-child(4) { animation-delay: 0.4s; }
.card-business:nth-child(5) { animation-delay: 0.5s; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .social-horizontal-layout {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .section-divider {
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, transparent, #FFC107, #FFC107, transparent);
        margin: 0.3rem 0;
    }
    
    .social-section, .share-section {
        text-align: center;
        width: 100%;
    }
    
    .section-header {
        justify-content: center;
    }
    
    .social-links, .share-links {
        justify-content: center;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    /* Text sections mobile */
    .seo-intro-section,
    .seo-footer-section {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .seo-intro-section h1 {
        font-size: 1.1rem;
    }
    
    .seo-intro-section h2 {
        font-size: 1rem;
    }
    
    .seo-intro-section h3 {
        font-size: 0.95rem;
    }
    
    .seo-intro-section h4 {
        font-size: 0.9rem;
    }
    
    /* Mobile fixes */
    .business-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .business-logo {
        align-self: center;
    }
    
    .phone-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .hero-section {
        padding: 1rem;
        margin: 0.5rem 0.5rem 1rem 0.5rem;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .social-group, .share-group {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .social-label {
        justify-content: center;
    }
    
    .social-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .social-share-container {
        padding: 1rem;
    }
    
    .seo-intro-section,
    .seo-footer-section {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .seo-intro-section h1 {
        font-size: 1rem;
    }
    
    .seo-intro-section li {
        padding-right: 1rem;
    }
    
    .seo-intro-section li::before {
        right: 0;
    }
    
    .main-container {
        padding: 0 0.5rem;
    }
    
    .card-business {
        margin: 0.5rem 0;
        border-radius: 8px;
        padding: 0.8rem;
    }
    
    .hero-title {
        font-size: 1rem;
    }
    
    .business-name {
        font-size: 0.9rem;
    }
    
    .slider-image {
        width: 100px;
        height: 75px;
    }
    
    .phone-number {
        font-size: 0.75rem;
    }
}

/* Desktop Enhancements */
@media (min-width: 1200px) {
    .social-btn {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    
    .card-business {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .social-horizontal-layout {
        gap: 2rem;
    }
}

/* Print Styles */
@media print {
    .card-business {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .action-buttons,
    .social-share-container {
        display: none;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}