/* =================================================================
   ARABIKA.CO.UK - HOME PAGE STYLES
   Modern Professional Design with Enhanced Header & Advertising
   ================================================================= */

/* ===================== MODERN HEADER STYLES ===================== */

.modern-header {
    background: linear-gradient(135deg, #2B4C7D 0%, #1a3357 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #E74C3C;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    flex-wrap: wrap;
    gap: 20px;
}

/* Logo Section */
.header-logo-section {
    flex: 0 0 auto;
}

.header-logo {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.header-logo:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1 1 auto;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.header-action-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.header-action-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.header-action-item i {
    font-size: 16px;
}

.signup-btn {
    background: #E74C3C;
    border-color: #E74C3C;
}

.signup-btn:hover {
    background: #c0392b;
    border-color: #c0392b;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Three-Line Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    transition: transform 0.3s ease;
}

.hamburger-menu:hover {
    transform: scale(1.1);
}

.hamburger-line {
    width: 100%;
    height: 4px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Navigation Menu */
.header-navigation {
    background: rgba(43, 76, 125, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.nav-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    background: rgba(231, 76, 60, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.nav-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

.nav-link.active {
    background: #E74C3C;
    color: #fff;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

/* ===================== TOP INFO BAR ===================== */

.top-info-bar {
    background: linear-gradient(135deg, #2B4C7D 0%, #1a3357 100%);
    color: #fff;
    padding: 10px 0;
    border-bottom: 2px solid rgba(231, 76, 60, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.info-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.info-bar-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.info-bar-item i {
    font-size: 15px;
    color: #D4AF37;
}

@media (max-width: 768px) {
    .info-bar-content {
        gap: 15px;
    }
    
    .info-bar-item {
        font-size: 12px;
        padding: 4px 10px;
        gap: 5px;
    }
    
    .info-bar-item i {
        font-size: 13px;
    }
}

/* ===================== BREAKING NEWS TICKER ===================== */

.breaking-news-ticker {
    background: linear-gradient(90deg, #E74C3C 0%, #c0392b 100%);
    color: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

@media (max-width: 768px) {
    .ticker-wrapper {
        overflow-x: auto;
    }
}

.ticker-label {
    background: #fff;
    color: #E74C3C;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ticker-label i {
    margin-left: 8px;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    font-size: 15px;
    font-weight: 500;
}

.ticker-content marquee {
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

/* ===================== HERO SECTION - ARABIKA STUDIO ===================== */

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(43, 76, 125, 0.05) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #2B4C7D;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 24px;
    color: #E74C3C;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-item i {
    font-size: 28px;
    color: #E74C3C;
}

.feature-item span {
    font-weight: 600;
    color: #2B4C7D;
    font-size: 15px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 15px 35px;
    background: #E74C3C;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    color: #fff;
}

.btn-hero-outline {
    padding: 15px 35px;
    background: transparent;
    color: #2B4C7D;
    border: 2px solid #2B4C7D;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-outline:hover {
    background: #2B4C7D;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(43, 76, 125, 0.3);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2B4C7D;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.image-badge i {
    animation: starTwinkle 1.5s infinite;
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* ===================== RADIO SECTION ===================== */

.radio-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2B4C7D 0%, #1a3357 100%);
}

.radio-player-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.radio-logo-player {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pulse-animation {
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0%, 100% { 
        box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3); 
    }
    50% { 
        box-shadow: 0 10px 40px rgba(231, 76, 60, 0.6), 0 0 30px rgba(231, 76, 60, 0.4); 
    }
}

.radio-title {
    font-size: 28px;
    font-weight: 700;
    color: #2B4C7D;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.radio-title i {
    color: #E74C3C;
}

.now-playing-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-right: 4px solid #E74C3C;
}

.now-label {
    font-weight: 700;
    color: #E74C3C;
    margin-left: 10px;
    font-size: 16px;
}

.now-track {
    color: #2B4C7D;
    font-weight: 600;
    font-size: 16px;
}

.audio-visualizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 50px;
}

.audio-visualizer .bar {
    width: 8px;
    background: linear-gradient(to top, #E74C3C, #c0392b);
    border-radius: 4px 4px 0 0;
    animation: visualizer 1s ease-in-out infinite;
}

.audio-visualizer .bar:nth-child(1) { animation-delay: 0s; height: 20%; }
.audio-visualizer .bar:nth-child(2) { animation-delay: 0.2s; height: 40%; }
.audio-visualizer .bar:nth-child(3) { animation-delay: 0.4s; height: 60%; }
.audio-visualizer .bar:nth-child(4) { animation-delay: 0.6s; height: 40%; }
.audio-visualizer .bar:nth-child(5) { animation-delay: 0.8s; height: 20%; }

@keyframes visualizer {
    0%, 100% { height: 20%; }
    50% { height: 80%; }
}

.btn-play-radio {
    padding: 18px 45px;
    background: linear-gradient(135deg, #E74C3C, #c0392b);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-play-radio:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.5);
}

.btn-play-radio.playing {
    background: linear-gradient(135deg, #27ae60, #229954);
    animation: pulse 1.5s infinite;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.volume-control i {
    color: #2B4C7D;
    font-size: 20px;
}

.volume-slider {
    width: 120px;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #E74C3C;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #E74C3C;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* ===================== ADVERTISERS SECTION ===================== */

.advertisers-section {
    padding: 80px 0;
    background: #fff;
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: #2B4C7D;
    margin-bottom: 15px;
}

.section-header h2 i {
    color: #E74C3C;
    margin-left: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #E74C3C, #FFD700);
    margin: 0 auto;
    border-radius: 2px;
}

/* Featured Advertisement Card */
.featured-ad {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featured-ad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #E74C3C, #FFD700);
}

.featured-ad:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.ad-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2B4C7D;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-title {
    font-size: 36px;
    font-weight: 900;
    color: #2B4C7D;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.ad-subtitle {
    font-size: 20px;
    color: #E74C3C;
    margin-bottom: 20px;
    font-weight: 600;
}

.ad-description {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #E74C3C;
}

.service-item i {
    font-size: 42px;
    color: #E74C3C;
    margin-bottom: 15px;
    display: block;
}

.service-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: #2B4C7D;
    margin-bottom: 10px;
}

.service-item .price {
    font-size: 22px;
    font-weight: 900;
    color: #E74C3C;
    margin: 0;
}

/* Contact Information in Ad */
.ad-contact-info {
    background: linear-gradient(135deg, #2B4C7D, #1a3357);
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    margin-bottom: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 22px;
    color: #FFD700;
    width: 30px;
}

.contact-item strong {
    font-weight: 700;
    min-width: 80px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FFD700;
}

/* CTA Button in Ad */
.ad-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-ad-cta {
    flex: 1;
    padding: 15px 30px;
    background: #E74C3C;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-ad-cta:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: #fff;
}

.btn-ad-cta-secondary {
    background: transparent;
    border: 2px solid #2B4C7D;
    color: #2B4C7D;
}

.btn-ad-cta-secondary:hover {
    background: #2B4C7D;
    color: #fff;
}

/* Ad Image Section */
.ad-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ad-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
}

.ad-offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #E74C3C;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50%;
    font-weight: 900;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.5);
    animation: pulse 2s infinite;
}

/* Business Cards Grid for Other Advertisers */
.business-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.business-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #E74C3C;
}

.business-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2B4C7D, #1a3357);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #fff;
}

.business-name {
    font-size: 22px;
    font-weight: 700;
    color: #2B4C7D;
    margin-bottom: 10px;
}

.business-category {
    font-size: 14px;
    color: #E74C3C;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.business-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.business-card .btn-ad-cta {
    width: 100%;
}

/* Business Ad Cards Styling */
.business-ad-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.business-ad-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.business-ad-card .ad-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.business-ad-card .ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.business-ad-card .ad-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #E74C3C, #c0392b);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.business-ad-card .ad-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.business-ad-card .ad-body h4 {
    font-size: 22px;
    font-weight: 700;
    color: #2B4C7D;
    margin-bottom: 12px;
}

.business-ad-card .ad-location {
    color: #E74C3C;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

.business-ad-card .ad-location i {
    margin-left: 5px;
}

.business-ad-card .ad-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.business-ad-card .ad-contact {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.business-ad-card .ad-contact a {
    flex: 1;
    padding: 12px 20px;
    background: #f8f9fa;
    color: #2B4C7D;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid transparent;
}

.business-ad-card .ad-contact a:hover {
    background: #2B4C7D;
    color: #fff;
    border-color: #2B4C7D;
    transform: translateY(-2px);
}

.business-ad-card .ad-contact a:first-child:hover {
    background: #E74C3C;
    border-color: #E74C3C;
}

/* Ad Features Badges */
.ad-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f8f9fa;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #2B4C7D;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: #2B4C7D;
    color: #fff;
    border-color: #2B4C7D;
    transform: translateY(-2px);
}

.feature-badge i {
    color: #E74C3C;
    font-size: 16px;
}

.feature-badge:hover i {
    color: #fff;
}

/* Ad CTA Buttons */
.btn-ad-primary {
    padding: 15px 30px;
    background: linear-gradient(135deg, #E74C3C, #c0392b);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-ad-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    color: #fff;
}

.btn-ad-secondary {
    padding: 15px 30px;
    background: transparent;
    color: #2B4C7D;
    border: 2px solid #2B4C7D;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-ad-secondary:hover {
    background: #2B4C7D;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(43, 76, 125, 0.3);
}

/* IHM Accountant Specific Styles */
.ihm-accountant .ad-image-container {
    position: relative;
}

.ihm-accountant .ad-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ihm-accountant .promo-corner {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.ihm-accountant .promo-text {
    text-align: center;
    font-weight: 900;
    font-size: 14px;
    color: #2B4C7D;
    line-height: 1.3;
}

/* ===================== RESPONSIVE DESIGN ===================== */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hamburger-menu {
        display: flex;
    }

    .header-actions {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }

    .header-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(43, 76, 125, 0.98);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .header-navigation.active {
        display: block;
    }

    .nav-menu-list {
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        justify-content: center;
        padding: 15px 30px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .ad-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-logo {
        height: 55px;
    }

    .header-action-item .action-text {
        display: none;
    }

    .header-action-item {
        padding: 10px 12px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .featured-ad {
        padding: 25px;
    }

    .ad-title {
        font-size: 24px;
    }

    .radio-player-card {
        padding: 25px;
    }

    .radio-logo-player {
        width: 100px;
        height: 100px;
    }

    .business-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .header-content {
        padding: 10px 15px;
    }

    .header-logo {
        height: 50px;
    }

    .ticker-content {
        font-size: 13px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-hero,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }

    .ad-cta {
        flex-direction: column;
    }
}
