/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

   :root {
    --primary: #d4af37;
    --primary-dark: #b8941f;
    --secondary: #1a1a2e;
    --accent: #c9a961;
    --light: #f8f9fa;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #6c757d;
    --gradient: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #b8941f 100%);
    --shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
    --shadow-lg: 0 15px 40px rgba(212, 175, 55, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section */
.services-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.85) 100%),
                url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-label {
    display: inline-block;
    padding: 8px 30px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-label i {
    margin-right: 8px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--primary);
}

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.5);
}

/* Services Introduction */
.services-intro {
    background: var(--white);
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.3;
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    margin: 15px 0 25px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
    max-width: 700px;
}

.intro-text {
    color: var(--text);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.intro-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gradient);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
}

.image-badge i {
    font-size: 35px;
}

.image-badge span {
    font-size: 16px;
    font-weight: 600;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card.featured {
    background: var(--gradient);
    color: var(--white);
}

.service-card.featured .service-title,
.service-card.featured .service-desc,
.service-card.featured .service-features li {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient);
    transform: rotateY(360deg);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-icon i {
    font-size: 35px;
    color: var(--primary);
    transition: var(--transition);
}

.service-title {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--primary);
    font-size: 12px;
}

.service-card.featured .service-features li i {
    color: var(--white);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.service-card.featured .service-link {
    color: var(--white);
}

.service-link:hover {
    gap: 12px;
}

/* Why Choose Cards */
.why-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 35px;
    color: var(--white);
}

.why-card h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Process Steps */
.process-step {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.step-icon i {
    font-size: 35px;
    color: var(--primary);
}

.process-step h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 600;
}

.process-step p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--light);
}

.cta-box {
    background: var(--gradient);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-cta:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .intro-image img {
        height: 400px;
    }
    
    .intro-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .intro-image img {
        height: 350px;
    }
    
    .image-badge {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }
    
    .cta-box {
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .btn-cta {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}












