/* ========== SERVICES PAGE STYLES ========== */

/* ========== SERVICES DETAILED SECTION ========== */
.services-detailed {
    padding: 80px 0;
    background: #0B0B0B;
}

.services-detailed .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Service Card Grid - 2 Column Layout */
.service-detailed-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    animation: fadeInUp 0.8s ease-out;
}

/* Reversed layout for alternating pattern */
.service-detailed-card.service-reversed {
    direction: rtl;
}

.service-detailed-card.service-reversed > * {
    direction: ltr;
}

/* Service Image Wrapper */
.service-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 450px;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-image-wrapper:hover {
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}

.service-image-wrapper:hover img {
    transform: scale(1.08);
}

/* Service Image Overlay with Badge */
.service-image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    left: 20px;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 25px;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    pointer-events: none;
}

.service-image-wrapper:hover .service-image-overlay {
    opacity: 1;
}

.badge {
    background: #D4AF37;
    color: #000;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Service Content */
.service-content {
    padding: 20px;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.service-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #b8962e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #000;
    margin-bottom: 20px;
    transition: all 0.4s ease-out;
}

.service-content:hover .service-icon-large {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.service-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    color: #FFFFFF;
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-content:hover h2 {
    color: #D4AF37;
}

.service-intro {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: #BFBFBF;
    line-height: 1.6;
    margin-bottom: 30px;
    border-left: 3px solid #D4AF37;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.service-intro:hover {
    border-left-color: #b8962e;
    color: #FFFFFF;
}

/* Service Features */
.service-features {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #D4AF37;
    transition: all 0.3s ease;
}

.service-features:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.service-features h3 {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    color: #BFBFBF;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features li i {
    color: #D4AF37;
    margin-right: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 16px;
}

.service-features li:hover {
    color: #FFFFFF;
    transform: translateX(5px);
}

.service-features li:hover i {
    transform: scale(1.3);
}

/* Service Ideal For */
.service-ideal {
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.service-ideal:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
}

.service-ideal h3 {
    font-size: 1rem;
    color: #D4AF37;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-ideal p {
    font-size: 0.95rem;
    color: #BFBFBF;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-ideal:hover p {
    color: #FFFFFF;
}

/* Service Pricing */
.service-pricing {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 150, 46, 0.1));
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #2A2A2A;
    text-align: center;
    transition: all 0.4s ease;
}

.service-pricing:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(184, 150, 46, 0.2));
    border-color: #D4AF37;
    transform: scale(1.02);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #BFBFBF;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    display: block;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #D4AF37;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-pricing:hover .price {
    color: #b8962e;
}

/* Button Styling */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background: #D4AF37;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #D4AF37;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #b8962e;
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    background: #b8962e;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 80px 0;
    background: #1A1A1A;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #D4AF37;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

/* FAQ Item */
.faq-item {
    background: #0B0B0B;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #2A2A2A;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #b8962e);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.faq-item:hover {
    background: linear-gradient(135deg, #0B0B0B, rgba(212, 175, 55, 0.08));
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.faq-item:hover::before {
    transform: translateX(0);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item h3::after {
    content: '+';
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.4s ease;
}

.faq-item.active h3::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item:hover h3 {
    color: #D4AF37;
}

.faq-item p {
    color: #BFBFBF;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.95rem;
}

.faq-item.active p {
    max-height: 300px;
    color: #FFFFFF;
}

/* ========== FINAL CTA SECTION ========== */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B0B0B, #1A1A1A);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}

.final-cta .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 700;
}

.final-cta > .container > p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: #BFBFBF;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .services-detailed {
        padding: 60px 0;
    }

    .service-detailed-card {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .service-detailed-card.service-reversed {
        direction: ltr;
    }

    .service-image-wrapper {
        height: 350px;
    }

    .service-content {
        padding: 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .faq-section {
        padding: 60px 0;
    }

    .final-cta {
        padding: 60px 0;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    .services-detailed {
        padding: 40px 0;
    }

    .service-detailed-card {
        gap: 25px;
        margin-bottom: 40px;
    }

    .service-image-wrapper {
        height: 280px;
        border-radius: 8px;
    }

    .service-image-overlay {
        padding: 15px;
    }

    .service-icon-large {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .service-content h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .service-intro {
        font-size: 0.95rem;
        margin-bottom: 20px;
        padding-left: 15px;
    }

    .service-features,
    .service-ideal,
    .service-pricing {
        padding: 15px;
        margin-bottom: 20px;
    }

    .service-features h3,
    .service-ideal h3 {
        font-size: 0.95rem;
    }

    .service-features li {
        font-size: 0.9rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 0.95rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .final-cta > .container > p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
