/* css/services.css */

/* 1. SERVICES HERO (Split Layout) */
.services-hero {
    padding-top: 150px;
    padding-bottom: 80px;
}

.grid-2-uneven {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.hero-text-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-black {
    background: var(--secondary-black);
    color: white;
    padding: 15px 35px;
}
.btn-black:hover {
    background: var(--accent-neon);
    color: black;
}

.video-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
}
.video-link i { font-size: 2rem; color: #ccc; }
.video-link:hover i { color: var(--accent-neon); }

.hero-visual { position: relative; }

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: white;
    padding: 20px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-badge strong { font-size: 3.5rem; line-height: 1; color: var(--secondary-black); }
.experience-badge span { font-size: 0.9rem; line-height: 1.2; color: #666; }

.dots-pattern {
    position: absolute; bottom: -30px; left: -30px; width: 100px; height: 100px;
    background-image: radial-gradient(#ccc 2px, transparent 2px);
    background-size: 15px 15px; z-index: -1;
}

/* 2. SERVICE CARDS & GRID */
.services-grid-container {
    display: grid;
    gap: 30px;
    width: 100%;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column; height: 100%; position: relative;
}

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

.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .card-img img { transform: scale(1.1); }

.card-body { padding: 30px; flex-grow: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
.card-body h3 { margin-bottom: 15px; font-size: 1.4rem; }
.card-body p { color: #666; font-size: 0.95rem; margin-bottom: 25px; flex-grow: 1; }

.stretched-link::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; content: ""; }

.learn-more { font-weight: 800; font-size: 0.85rem; text-transform: uppercase; color: var(--secondary-black); position: relative; z-index: 2; }
.service-card:hover .learn-more { color: var(--accent-neon); }

.card-icon {
    background: #f8f9fa; height: 60px; width: 60px; margin: 0 auto 30px;
    display: flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 1.5rem; color: #555; transition: 0.3s;
}
.service-card:hover .card-icon { background: var(--secondary-black); color: var(--accent-neon); }

/* 3. DETAILS COMPONENTS (Pricing, Gallery, Features) */
.check-list { margin-top: 20px; }
.check-list li { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 15px; }

.feature-card { background: #f9f9f9; padding: 40px; border-radius: 20px; text-align: center; transition: 0.3s; }
.feature-card:hover { background: white; box-shadow: var(--shadow-card); transform: translateY(-5px); }
.feature-card h3 { margin-bottom: 15px; font-size: 1.3rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { position: relative; height: 300px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item .overlay { position: absolute; bottom: -100%; left: 0; width: 100%; background: rgba(0,0,0,0.8); color: white; padding: 20px; transition: 0.4s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .overlay { bottom: 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 60px; align-items: center; }
.pricing-card { background: white; border: 1px solid #eee; border-radius: 20px; padding: 40px; text-align: center; position: relative; box-shadow: var(--shadow-card); }
.pricing-card.featured { border: 2px solid var(--accent-neon); transform: scale(1.05); box-shadow: 0 10px 40px rgba(57, 255, 20, 0.2); z-index: 2; }
.badge-pop { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent-neon); color: black; padding: 5px 20px; font-weight: 800; border-radius: 20px; font-size: 0.8rem; }
.price { font-size: 2.5rem; font-weight: 800; margin: 20px 0; }
.price span { font-size: 1rem; color: #999; font-weight: 400; }
.price-features { margin-bottom: 30px; text-align: left; }
.price-features li { margin-bottom: 10px; border-bottom: 1px solid #f5f5f5; padding-bottom: 10px; }

.special-action-card { background: var(--secondary-black); color: white; padding: 60px; display: flex; justify-content: space-between; align-items: center; gap: 40px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.action-text h3 { font-size: 2rem; margin-bottom: 15px; color: var(--accent-neon); }
.action-text p { font-size: 1.1rem; color: #ccc; max-width: 600px; }
.btn-white { background: white; color: black; padding: 15px 40px; font-weight: 800; }
.btn-white:hover { background: var(--accent-neon); color: black; }

@media (max-width: 900px) {
    .grid-2-uneven { grid-template-columns: 1fr; }
    .special-action-card { flex-direction: column; text-align: center; }
    .pricing-card.featured { transform: scale(1); }
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}