/* AEON Services Page - Bold & Creative Styling */

/* Full Width Container Override */
.page-id-7 .container,
.page-template-default .aeon-services-section .container {
    max-width: 100% !important;
    padding-left: 50px !important;
    padding-right: 50px !important;
}

/* Hero Section */
.aeon-services-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.aeon-services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.aeon-services-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.aeon-services-subtitle {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Services Section */
.aeon-services-section {
    padding: 80px 0;
    background: #ffffff;
}

.aeon-service-item {
    margin-bottom: 100px;
    position: relative;
}

.aeon-service-item:nth-child(even) {
    background: #f8f9fa;
    padding: 60px 0;
    margin-left: -50px;
    margin-right: -50px;
    padding-left: 50px;
    padding-right: 50px;
}

.aeon-service-content {
    padding: 40px;
    position: relative;
}

.aeon-service-number {
    display: inline-block;
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37, #c9a96e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 0;
}

.aeon-service-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 40px;
}

.aeon-service-subtitle {
    font-size: 1.2rem;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aeon-service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 30px;
}

.aeon-service-features {
    margin-top: 30px;
}

.aeon-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333333;
}

.aeon-feature-item i {
    color: #d4af37;
    font-size: 1.2rem;
    margin-right: 15px;
}

/* Slideshow Styling */
.aeon-service-slideshow {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    background: #000;
}

.aeon-slides {
    position: relative;
    width: 100%;
    height: 500px;
}

.aeon-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: fadeIn 0.5s;
}

.aeon-slide.active {
    display: block;
}

.aeon-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Slideshow Controls */
.aeon-slide-prev,
.aeon-slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.aeon-slide-prev:hover,
.aeon-slide-next:hover {
    background: #d4af37;
    transform: translateY(-50%) scale(1.1);
}

.aeon-slide-prev {
    left: 20px;
}

.aeon-slide-next {
    right: 20px;
}

/* Slideshow Dots */
.aeon-slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.aeon-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.aeon-dot.active,
.aeon-dot:hover {
    background: #d4af37;
    transform: scale(1.2);
}

/* CTA Section */
.aeon-services-cta {
    background: linear-gradient(135deg, #d4af37 0%, #c9a96e 100%);
    padding: 100px 0;
}

.aeon-services-cta .aeon-cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.aeon-services-cta .aeon-cta-content p {
    font-size: 1.3rem;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 40px;
}

.aeon-services-cta .aeon-cta-btn {
    background: #1a1a1a;
    border: 2px solid #1a1a1a;
    color: #ffffff;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aeon-services-cta .aeon-cta-btn:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-id-7 .container,
    .page-template-default .aeon-services-section .container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    
    .aeon-service-item:nth-child(even) {
        margin-left: -30px;
        margin-right: -30px;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .aeon-services-title {
        font-size: 3rem;
    }
    
    .aeon-service-content h2 {
        font-size: 2rem;
    }
    
    .aeon-slides {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .page-id-7 .container,
    .page-template-default .aeon-services-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .aeon-service-item:nth-child(even) {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .aeon-services-hero {
        padding: 80px 0 60px;
    }
    
    .aeon-services-title {
        font-size: 2.5rem;
    }
    
    .aeon-services-subtitle {
        font-size: 1.2rem;
    }
    
    .aeon-service-item {
        margin-bottom: 60px;
    }
    
    .aeon-service-content {
        padding: 20px 0;
    }
    
    .aeon-service-content h2 {
        font-size: 1.8rem;
    }
    
    .aeon-service-number {
        font-size: 3rem;
    }
    
    .aeon-slides {
        height: 300px;
    }
    
    .aeon-slide-prev,
    .aeon-slide-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .aeon-services-cta .aeon-cta-content h2 {
        font-size: 2rem;
    }
}
