/* =========================================
   1. HERO SECTION
   ========================================= */
.services-hero {
    background: linear-gradient(135deg, #0F172A 0%, #334155 100%);
    color: white;
    text-align: center;
    padding: 100px 0 120px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #10B981;
    font-weight: 700;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   2. SERVICES GRID
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    color: #10B981;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #475569;
    font-size: 0.9rem;
}

.service-features li i {
    color: #10B981;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0F172A;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.2s;
}

.service-link:hover {
    gap: 12px;
    color: #10B981;
}

/* =========================================
   3. FEATURE SECTIONS
   ========================================= */
.feature-section {
    padding: 80px 0;
}

.feature-section.bg-dark {
    background: #0F172A;
    color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-grid.reverse .feature-content {
    order: 1; /* Zig-zag layout */
}

.section-tag {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #10B981;
    margin-bottom: 15px;
}

.feature-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bg-dark h2 { color: white; }
.feature-content h2 { color: #1e293b; }

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 30px;
}
.bg-dark p { color: #94a3b8; }

/* Feature List Items */
.f-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.f-item i {
    font-size: 2rem;
    color: #10B981;
    flex-shrink: 0;
}

.f-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1e293b;
}
.bg-dark .f-item strong { color: white; }

.f-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-primary {
    background: #10B981;
    color: white;
}
.btn-primary:hover { background: #059669; }

.btn-outline {
    border: 2px solid #0F172A;
    color: #0F172A;
}
.btn-outline:hover { background: #0F172A; color: white; }

/* CSS Art Placeholders (No Broken Images) */
.img-placeholder {
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.corporate-bg {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 1px solid rgba(255,255,255,0.1);
}

.wedding-bg {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    color: #db2777; /* Pink Icon */
}

/* =========================================
   4. CTA BAR
   ========================================= */
.cta-bar {
    background: #10B981;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-white {
    background: white;
    color: #10B981;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
}
.btn-white:hover { transform: translateY(-2px); }

.btn-dark {
    background: #0F172A;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
}
.btn-dark:hover { transform: translateY(-2px); }

/* Mobile */
@media (max-width: 768px) {
    .services-hero h1 { font-size: 2.5rem; }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-grid.reverse .feature-content { order: 0; }
    
    .img-placeholder { height: 250px; font-size: 3rem; }
    
    .cta-buttons { flex-direction: column; }
    .btn-white, .btn-dark { width: 100%; text-align: center; }
}