/* ============================================
   SERVICES PAGE - COMPLETE STANDALONE CSS
   ============================================ */

/* Services Hero Section */
.services-hero {
    min-height: 60vh;
    padding: 180px 40px 100px;
    background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15), transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.services-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.services-hero .section-label {
    font-size: 13px;
    font-weight: 800;
    color: #00A3FF;
    letter-spacing: 4px;
    margin-bottom: 25px;
    display: inline-block;
    padding: 10px 28px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    text-transform: uppercase;
}

.services-hero-title {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: -2px;
}

.services-hero-title .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #00A3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.services-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Hero Feature Boxes with SVG Icons - Clean Version */
.services-hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.hero-feature {
    background: linear-gradient(145deg, rgba(10, 25, 41, 0.6), rgba(0, 20, 41, 0.4));
    backdrop-filter: blur(20px);
    padding: 25px 20px;
    border-radius: 16px;
    border: 2px solid rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.hero-feature::before,
.hero-feature::after {
    display: none !important;
    content: none !important;
}

.hero-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.hero-feature .feature-icon {
    margin-bottom: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    position: relative;
}

.hero-feature .feature-icon::before,
.hero-feature .feature-icon::after {
    display: none !important;
    content: none !important;
}

.hero-feature .feature-icon svg {
    width: 36px;
    height: 36px;
    color: #00A3FF;
    stroke: currentColor;
    fill: none;
    transition: all 0.3s ease;
    display: block;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
}

.hero-feature:hover .feature-icon svg {
    color: #CCE5FF;
    transform: scale(1.1);
}

.hero-feature .feature-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

/* Hero Buttons */
.services-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #0066FF 0%, #00A3FF 100%);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
}

.btn-primary-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
}

.btn-secondary-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ============================================
   SERVICES GRID SECTION
   ============================================ */

.services-section {
    padding: 100px 40px 140px;
    background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(0, 163, 255, 0.08) 0%, transparent 50%);
    animation: servicesGlow 18s ease-in-out infinite;
}

@keyframes servicesGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-section .section-label {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 163, 255, 0.1));
    border: 2px solid rgba(0, 102, 255, 0.4);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    color: #CCE5FF;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.services-section .section-title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-section .section-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: linear-gradient(145deg, rgba(10, 25, 41, 0.8), rgba(0, 20, 41, 0.6));
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 24px;
    border: 2px solid rgba(0, 102, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.service-card.featured {
    border-color: #0066FF;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.4);
    border-color: rgba(0, 102, 255, 0.6);
}

.service-icon {
    margin-bottom: 25px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    color: #00A3FF;
    stroke: currentColor;
    transition: all 0.3s ease;
    display: block;
}

.service-card:hover .service-icon svg {
    color: #CCE5FF;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.service-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(0, 102, 255, 0.3);
    color: #CCE5FF;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 20px 0 25px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 102, 255, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.price-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 28px;
    font-weight: 800;
    color: #CCE5FF;
    letter-spacing: -0.5px;
}

.service-note {
    background: rgba(0, 102, 255, 0.15);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    border-left: 3px solid #0066FF;
}

.service-note strong {
    color: #CCE5FF;
}

/* ============================================
   PROCESS SUBSECTION - Inside Services Section
   ============================================ */

.process-subsection {
    margin-top: 100px;
    position: relative;
}

.process-subsection .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-subsection .section-label {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 163, 255, 0.1));
    border: 2px solid rgba(0, 102, 255, 0.4);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    color: #CCE5FF;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.process-subsection .section-title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.process-subsection .section-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.process-step {
    background: linear-gradient(145deg, rgba(10, 25, 41, 0.6), rgba(0, 20, 41, 0.4));
    backdrop-filter: blur(20px);
    padding: 35px 25px;
    border-radius: 20px;
    border: 2px solid rgba(0, 102, 255, 0.3);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    border-color: rgba(0, 102, 255, 0.5);
}

.process-step::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    font-size: 24px;
    color: rgba(0, 102, 255, 0.5);
    font-weight: 900;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.5);
}

.process-step h4 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.services-cta {
    text-align: center;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    padding: 60px 40px;
    border-radius: 30px;
    color: white;
}

.services-cta h3 {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
}

.services-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta .btn-primary {
    background: white;
    color: #0066FF;
}

.services-cta .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   WHY WORK WITH US SECTION
   ============================================ */

.values-section {
    padding: 100px 40px;
    background: white;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.values-section .section-label {
    display: inline-block;
    padding: 10px 26px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: #0066FF;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.values-section .section-title {
    font-size: 56px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.values-section .section-description {
    font-size: 20px;
    color: #666;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.value-card {
    background: white;
    padding: 45px 35px;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.value-icon {
    margin-bottom: 25px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.value-icon svg {
    width: 42px;
    height: 42px;
    color: #0066FF;
    stroke: currentColor;
    transition: all 0.3s ease;
    display: block;
}

.value-card:hover .value-icon svg {
    color: #0052CC;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ============================================
   PROJECT FORM SECTION
   ============================================ */

.project-form-section {
    padding: 0;
    background: #ffffff;
    position: relative;
}

.project-form-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.project-form-header {
    text-align: center;
    background: linear-gradient(145deg, #fafafa 0%, #ffffff 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.project-form-header > * {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.project-form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 102, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 163, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.project-form-header .section-label {
    font-size: 13px;
    font-weight: 800;
    color: #0066FF;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px 28px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(0, 102, 255, 0.25);
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 102, 255, 0.1);
}

.project-form-header .section-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.project-form-header .section-title .gradient-text {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.project-form-header .section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.project-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.project-form-card {
    background: linear-gradient(145deg, #fafafa 0%, #ffffff 100%);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 28px;
    border: 2px solid rgba(0, 102, 255, 0.15);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 8px 32px rgba(0, 102, 255, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.project-form-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 
        0 6px 20px rgba(0, 102, 255, 0.12),
        0 12px 40px rgba(0, 102, 255, 0.08);
}

.form-header {
    margin-bottom: 35px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    font-size: 16px;
    color: #666;
}

.project-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #0066FF;
    margin-bottom: 5px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 102, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
}

.form-group .required {
    color: #ef4444;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: #ffffff;
    border: 1.5px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    color: #333;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 45px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23844CA9' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    background-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066FF;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-status {
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: none;
    margin-top: 10px;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

/* ============================================
   SIDEBAR STYLES
   ============================================ */

.project-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: #0066FF;
    padding: 35px 30px;
    border-radius: 26px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 24px rgba(0, 102, 255, 0.3),
        0 16px 48px rgba(0, 0, 0, 0.2);
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.info-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    stroke: currentColor;
    display: block;
}

.info-card:hover .info-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.info-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.process-list li:last-child {
    border-bottom: none;
}

.process-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.expertise-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.btn-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card.featured {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .project-info-sidebar {
        max-width: 700px;
        margin: 0 auto;
    }

    .services-hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 140px 20px 80px;
        min-height: 50vh;
    }
    
    .services-hero-title {
        font-size: 42px;
    }
    
    .services-hero-description {
        font-size: 17px;
        margin-bottom: 35px;
    }

    .services-hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 35px;
    }

    .hero-feature {
        padding: 20px;
    }

    .services-hero-buttons {
        flex-direction: column;
    }

    .btn-primary-light,
    .btn-secondary-light {
        width: 100%;
        justify-content: center;
    }
    
    .services-section {
        padding: 80px 20px 60px;
    }
    
    .services-section .section-title {
        font-size: 40px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .process-subsection {
        margin-top: 80px;
    }
    
    .process-subsection .section-title {
        font-size: 40px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-step {
        padding: 30px 25px;
    }
    
    .services-cta {
        padding: 50px 30px;
    }
    
    .services-cta h3 {
        font-size: 28px;
    }
    
    .values-section {
        padding: 80px 20px;
    }
    
    .values-section .section-title {
        font-size: 40px;
    }
  
    .project-form-header .section-title {
        font-size: 38px;
    }
    
    .project-form-card {
        padding: 35px 25px;
    }
    
    .form-header h3 {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 34px;
    }

    .hero-feature .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .hero-feature .feature-text {
        font-size: 13px;
    }
    
    .services-section .section-title {
        font-size: 32px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-card h3 {
        font-size: 22px;
    }
    
    .process-subsection .section-title {
        font-size: 32px;
    }
    
    .values-section .section-title {
        font-size: 32px;
    }
    
    .project-form-header .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .btn-submit {
        padding: 16px 30px;
        font-size: 15px;
    }
}

/* ============================================
   CRITICAL OVERRIDES - Remove Unwanted Backgrounds
   ============================================ */

/* Ensure NO oval/elliptical backgrounds on icons */
.services-hero-features .hero-feature .feature-icon,
.services-hero-features .hero-feature .feature-icon *,
.services-hero-features .hero-feature .feature-icon svg {
    background-image: none !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
}

.services-hero-features .hero-feature .feature-icon::before,
.services-hero-features .hero-feature .feature-icon::after,
.services-hero-features .hero-feature::before,
.services-hero-features .hero-feature::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

/* Clean SVG rendering */
.services-hero-features svg,
.service-icon svg,
.value-icon svg,
.info-icon svg {
    shape-rendering: geometricPrecision;
    background: transparent !important;
}