/* Enhanced Stylistic "What We Offer" Section */

/* Enhanced Section Title */
.section-title {
    text-align: center;
    font-size: 3rem !important;
    font-weight: 900 !important;
    margin-bottom: 4rem !important;
    color: #1a1a1a !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #666666 0%, #333333 100%);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #000;
    border-radius: 2px;
}

/* Enhanced Benefits Section Background */
.benefits-section {
    padding: 8rem 0 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%) !important;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,0,0,0.02) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.benefits-section .fulham-container {
    position: relative;
    z-index: 2;
}

/* Enhanced Service Cards */
.service-card-with-image {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%) !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        0 1px 8px rgba(0,0,0,0.06) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    border: 1px solid rgba(255,255,255,0.2);
}

.service-card-with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #333333, #000000);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 10;
}

.service-card-with-image:hover::before {
    transform: scaleX(1);
}

.service-card-with-image:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.15),
        0 10px 25px rgba(0,0,0,0.1) !important;
}

/* Enhanced Service Image */
.service-image {
    height: 280px !important;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-with-image:hover .service-image::after {
    opacity: 1;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    filter: brightness(1) contrast(1.05);
}

.service-card-with-image:hover .service-img {
    transform: scale(1.15) !important;
    filter: brightness(1.1) contrast(1.1);
}

/* Enhanced Service Content */
.service-content {
    padding: 2.5rem 2rem !important;
    text-align: center;
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #666666, #333333);
    border-radius: 2px;
}

.service-content h3 {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin: 1.5rem 0 1rem 0 !important;
    color: #1a1a1a !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.service-content p {
    color: #555 !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
    font-size: 1rem !important;
    font-weight: 400;
}

/* Enhanced CTA Button */
.service-cta-btn {
    background: linear-gradient(135deg, #000000 0%, #333333 100%) !important;
    color: white !important;
    border: none;
    padding: 1rem 2.5rem !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    font-size: 0.9rem !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.service-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #444444 0%, #222222 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

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

.service-cta-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
    color: white !important;
}

.service-cta-btn:active {
    transform: translateY(-1px) !important;
}

/* Enhanced Grid Layout - 4 Column Grid */
.services-grid-4col {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin: 4rem 0 !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 1rem !important;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .services-grid-4col {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
        max-width: 700px !important;
        margin: 3rem auto !important;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .services-grid-4col {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem !important;
        padding: 0 2rem;
        margin: 3rem auto !important;
    }
    
    .section-title {
        font-size: 2.5rem !important;
        margin-bottom: 3.5rem !important;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-grid-4col {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
        margin: 2rem 0 !important;
    }

    .benefits-section {
        padding: 4rem 0 !important;
    }
    
    .section-title {
        font-size: 2rem !important;
        letter-spacing: 1.5px;
        margin-bottom: 2.5rem !important;
        padding: 0 1rem;
    }
    
    .services-grid-4col {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem;
        margin: 2rem 0 !important;
    }
    
    .service-card-with-image {
        max-width: 100%;
        margin: 0;
        border-radius: 15px !important;
    }
    
    .service-image {
        height: 220px !important;
    }
    
    .service-content {
        padding: 1.5rem 1.25rem 2rem 1.25rem !important;
    }
    
    .service-content h3 {
        font-size: 1.2rem !important;
        margin: 1rem 0 0.75rem 0 !important;
    }
    
    .service-content p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .service-cta-btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.8rem !important;
        border-radius: 25px !important;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .benefits-section {
        padding: 3rem 0 !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        letter-spacing: 1px;
        margin-bottom: 2rem !important;
        padding: 0 0.5rem;
    }
    
    .services-grid-4col {
        gap: 1.5rem !important;
        padding: 0 0.5rem;
        margin: 1.5rem 0 !important;
    }
    
    .service-card-with-image {
        border-radius: 12px !important;
    }
    
    .service-image {
        height: 200px !important;
    }
    
    .service-content {
        padding: 1.25rem 1rem 1.75rem 1rem !important;
    }
    
    .service-content h3 {
        font-size: 1.1rem !important;
        margin: 0.75rem 0 0.5rem 0 !important;
    }
    
    .service-content p {
        font-size: 0.85rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .service-cta-btn {
        padding: 0.7rem 1.25rem !important;
        font-size: 0.75rem !important;
        border-radius: 20px !important;
    }
    
    .service-content::before {
        width: 40px;
        height: 2px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .section-title {
        font-size: 1.6rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .services-grid-4col {
        gap: 1.25rem !important;
        padding: 0 0.25rem;
    }
    
    .service-content {
        padding: 1rem 0.75rem 1.5rem 0.75rem !important;
    }
    
    .service-content h3 {
        font-size: 1rem !important;
    }
    
    .service-content p {
        font-size: 0.8rem !important;
    }
    
    .service-cta-btn {
        padding: 0.6rem 1rem !important;
        font-size: 0.7rem !important;
    }
}

/* Waitlist Hero Image Styling - Contained Full Width */
.waitlist-hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.1),
        0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
}

.waitlist-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #333333, #666666, #333333);
    border-radius: 15px 15px 0 0;
    z-index: 10;
}

.waitlist-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
    filter: brightness(1) contrast(1.05);
}

.waitlist-hero-image:hover .waitlist-img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

/* Responsive Waitlist Image */
@media (max-width: 768px) {
    .waitlist-hero-image {
        margin-bottom: 2rem;
        border-radius: 12px;
    }
    
    .waitlist-hero-image::before {
        border-radius: 12px 12px 0 0;
    }
    
    .waitlist-img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .waitlist-hero-image {
        margin-bottom: 1.5rem;
        border-radius: 10px;
    }
    
    .waitlist-hero-image::before {
        border-radius: 10px 10px 0 0;
    }
    
    .waitlist-img {
        height: 240px;
    }
}
