/* Fulham Ads Section - Black & White Slider */
.fulham-ads-section {
    padding: 4rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.fulham-ads-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundFloat 15s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { 
        opacity: 0.2;
        transform: translateY(0px);
    }
    50% { 
        opacity: 0.4;
        transform: translateY(-5px);
    }
}

.ads-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease-out;
}

.ads-badge {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: badgePulse 2s ease-in-out infinite alternate;
}

@keyframes badgePulse {
    from {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
    }
    to {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
}

.ads-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.ads-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin: 0;
    font-weight: 400;
    opacity: 0.9;
}

/* Ads Slider */
.ads-slider-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem;
    z-index: 2;
}

.ads-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.ad-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.ad-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.ad-slide.prev {
    transform: translateX(-100%);
}

.ad-content {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 3px solid #000;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.ad-slide:hover .ad-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Ad Header */
.ad-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.ad-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-price {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    line-height: 0.9;
    text-align: right;
    position: relative;
}

.ad-price::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: #000;
    border-radius: 2px;
}

/* Ad Description */
.ad-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Features List */
.ad-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    gap: 0.8rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text {
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
}

/* CTA Button */
.ad-cta-btn {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    border: 2px solid #000;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.ad-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.ad-cta-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    border-radius: 50%;
    pointer-events: none;
}

.ad-cta-btn:hover::before {
    left: 0;
}

.ad-cta-btn:hover::after {
    width: 200px;
    height: 200px;
}

.ad-cta-btn:hover {
    color: #000;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: #333;
    text-shadow: none;
}

.ad-cta-btn:active {
    transform: translateY(0px) scale(1);
    transition: all 0.1s ease;
}

/* Slider Controls */
.ads-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.ads-slide-nav {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.5rem;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ads-slide-nav:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}

.ads-slide-indicators {
    display: flex;
    gap: 0.8rem;
}

.ads-slide-indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ads-slide-indicator.active {
    background: #fff;
    transform: scale(1.2);
}

.ads-slide-indicator:hover {
    background: #fff;
    transform: scale(1.1);
}

/* Ads Footer */
.ads-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ads-restriction {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.8;
}

.ads-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ads-cta .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ads-cta .btn-primary {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #000;
    border: 2px solid #fff;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.ads-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.ads-cta .btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    border-radius: 50%;
    pointer-events: none;
}

.ads-cta .btn-primary:hover::before {
    left: 0;
}

.ads-cta .btn-primary:hover::after {
    width: 200px;
    height: 200px;
}

.ads-cta .btn-primary:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.ads-cta .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.ads-cta .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.ads-cta .btn-secondary:hover::before {
    left: 0;
}

.ads-cta .btn-secondary:hover {
    color: #000;
    border-color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    text-shadow: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fulham-ads-section {
        padding: 3rem 1rem;
    }
    
    .ads-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .ads-badge {
        padding: 0.5rem 1.5rem;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .ads-title {
        font-size: 2.8rem;
        letter-spacing: 2px;
        line-height: 1.1;
    }
    
    .ads-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .ads-slider-container {
        max-width: 100%;
        margin: 0 1rem 2.5rem;
    }
    
    .ads-slider {
        height: 420px;
        border-radius: 16px;
    }
    
    .ad-content {
        padding: 2rem 1.8rem;
        border-radius: 16px;
    }
    
    .ad-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .ad-title {
        font-size: 1.4rem;
        text-align: center;
        min-width: auto;
        line-height: 1.2;
    }
    
    .ad-price {
        font-size: 2.8rem;
        text-align: center;
        line-height: 0.9;
    }
    
    .ad-description {
        font-size: 1rem;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .ad-features {
        margin-bottom: 2.5rem;
    }
    
    .feature-item {
        justify-content: flex-start;
        margin-bottom: 1rem;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }
    
    .feature-text {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .ads-slider-controls {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .ads-slide-nav {
        font-size: 1.3rem;
        width: 44px;
        height: 44px;
        border-width: 2px;
    }
    
    .ads-slide-indicator {
        width: 14px;
        height: 14px;
        border-width: 2px;
    }
    
    .ads-footer {
        padding: 0 1rem;
    }
    
    .ads-restriction {
        font-size: 0.9rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .ads-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .ads-cta .btn {
        min-width: 280px;
        font-size: 1rem;
        height: 52px;
        padding: 1rem 2rem;
        letter-spacing: 1.5px;
    }
    
    .ad-cta-btn {
        height: 52px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .fulham-ads-section {
        padding: 2.5rem 0.5rem;
    }
    
    .ads-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .ads-badge {
        padding: 0.4rem 1.2rem;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .ads-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
        line-height: 1;
    }
    
    .ads-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .ads-slider-container {
        margin: 0 0.5rem 2rem;
    }
    
    .ads-slider {
        height: 400px;
        border-radius: 14px;
    }
    
    .ad-content {
        padding: 1.5rem 1.2rem;
        border-radius: 14px;
    }
    
    .ad-header {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .ad-title {
        font-size: 1.2rem;
        line-height: 1.1;
    }
    
    .ad-price {
        font-size: 2.4rem;
        line-height: 0.8;
    }
    
    .ad-description {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.8rem;
    }
    
    .ad-features {
        margin-bottom: 2rem;
    }
    
    .feature-item {
        margin-bottom: 0.9rem;
        gap: 0.9rem;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .feature-text {
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    .ads-slider-controls {
        gap: 1.2rem;
        margin-top: 2rem;
    }
    
    .ads-slide-nav {
        font-size: 1.2rem;
        width: 42px;
        height: 42px;
    }
    
    .ads-slide-indicator {
        width: 12px;
        height: 12px;
    }
    
    .ads-footer {
        padding: 0 0.5rem;
    }
    
    .ads-restriction {
        font-size: 0.85rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
    
    .ads-cta {
        gap: 0.9rem;
    }
    
    .ads-cta .btn {
        min-width: 260px;
        font-size: 0.95rem;
        height: 50px;
        padding: 0.9rem 1.8rem;
        letter-spacing: 1.2px;
    }
    
    .ad-cta-btn {
        height: 50px;
        padding: 0.85rem 1.4rem;
        font-size: 0.95rem;
        letter-spacing: 1.2px;
    }
}

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

/* Hover Effects */
.ad-slide:hover .feature-icon {
    transform: scale(1.1);
    background: #333;
}

.ad-slide:hover .feature-text {
    color: #000;
}

.ad-slide:hover .ad-price {
    transform: scale(1.05);
}