/* Service Pages Specialized Styling */
:root {
    --bg-dark: #0a0e17;
    --bg-card: #131b2c;
    --primary: #3b82f6;
    --primary-glow: #3b82f6aa;
    --accent: #06b6d4;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --transition: all 0.3s ease;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

/* Base resets for animations */
.fade-in {
    opacity: 0;
}

.fade-in.show {
    opacity: 1;
    transition: opacity 0.8s ease;
}

/* Better text gradient fix */
.text-gradient {
    display: inline-block;
    /* Ensure proper box for background clip */
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: var(--primary);
    /* Fallback for old browsers */
    background-color: transparent;
    /* Ensure no solid box */
}

.service-hero {
    padding: 140px 0 80px;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero h1 {
    font-size: clamp(2.2rem, 8vw, 4rem);
    /* Responsive sizing */
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.service-hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1000px;
    margin: 0 auto;
    gap: 2rem;
    margin-top: 4rem;
    align-items: start;
}

.detail-section {
    margin-bottom: 3.5rem;
}

.detail-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}

.detail-section h2 i {
    font-size: 1.5rem;
    opacity: 0.8;
}

.detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    line-height: 1.8;
}

.detail-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.detail-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-weight: 600;
}

.detail-card ul {
    margin-left: 1.5rem;
    color: var(--text-gray);
}

.detail-card ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.scope-list,
.limitation-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.scope-item,
.limitation-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.scope-item i {
    color: #22c55e;
    margin-top: 5px;
}

.limitation-item i {
    color: #ef4444;
    margin-top: 5px;
}

/* Business Model & Method */
.method-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.method-step {
    text-align: center;
    position: relative;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Sidebar behavior fix for subpages */
.sidebar {
    left: -280px;
}

.sidebar.active {
    left: 0;
}

/* Service Form */
.service-form-card {
    background: linear-gradient(135deg, var(--bg-card), #1a243d);
    border: 1px solid var(--primary);
    border-radius: 24px;
    padding: 3rem;
    position: sticky;
    top: 40px;
    /* Lower top offset for better visibility */
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 12px;
    color: white;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
}

.form-group select option {
    background-color: #0f172a;
    /* Very dark blue for compatibility */
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .service-form-card {
        position: static;
    }

    .method-steps {
        grid-template-columns: 1fr 1fr;
    }
}/ *   R E S P O N S I V E   U P D A T E S   * /  
 @ m e d i a   ( m a x - w i d t h :   9 0 0 p x )   {  
         . c o n t e n t - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   6 0 0 p x )   {  
         . m e t h o d - s t e p s   {  
                 m a x - w i d t h :   1 0 0 % ;  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
  
         . d e t a i l - s e c t i o n   h 2   {  
                 f o n t - s i z e :   1 . 8 r e m ;  
         }  
 }  
 