
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.85) 0%, rgba(42, 82, 152, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: heroFadeInUp 1s ease-out;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: heroFadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: heroFadeInUp 1s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    animation: heroFadeInUp 1s ease-out 0.6s both;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

.hero-cta-btn:active {
    transform: translateY(-1px);
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-cta-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
}

/* Block 2 */
.legal-services {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.services-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-image {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.service-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  color: #475569;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.1rem;
}

.success-metrics {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.metrics-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.metric-item {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .success-metrics {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .legal-services {
    padding: 3rem 0;
  }
  
  .services-title {
    font-size: 2.2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .success-metrics {
    padding: 2rem;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .metric-value {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .services-container {
    padding: 0 1rem;
  }
  
  .services-title {
    font-size: 1.8rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .metrics-title {
    font-size: 1.8rem;
  }
}

/* Block 3 */
.client-testimonials {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .testimonials-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3c72;
            margin-bottom: 1rem;
        }

        .testimonials-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .testimonial-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #2a5298, #1e3c72);
        }

        .testimonial-rating {
            margin-bottom: 1.5rem;
        }

        .star {
            color: #ffd700;
            font-size: 1.2rem;
            margin-right: 0.2rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #333;
            margin-bottom: 1.5rem;
            font-style: italic;
            border: none;
            padding: 0;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .author-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
            border: 3px solid #e9ecef;
        }

        .author-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e3c72;
            margin-bottom: 0.25rem;
        }

        .author-details {
            font-size: 0.9rem;
            color: #6c757d;
            margin: 0;
        }

        .testimonial-badge {
            display: inline-block;
        }

        .badge-text {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: #ffffff;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .testimonials-stats {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 4rem;
            background: #ffffff;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        }

        .stats-image {
            width: 100%;
            height: auto;
            border-radius: 15px;
        }

        .stats-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1e3c72;
            margin-bottom: 2rem;
        }

        .stats-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .stat-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2a5298, #1e3c72);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-img {
            width: 30px;
            height: 30px;
            filter: brightness(0) invert(1);
        }

        .feature-text h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e3c72;
            margin-bottom: 0.25rem;
        }

        .feature-text p {
            color: #6c757d;
            margin: 0;
            font-size: 0.95rem;
        }

        .trust-indicators {
            text-align: center;
            padding: 3rem;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }

        .trust-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1e3c72;
            margin-bottom: 2rem;
        }

        .trust-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            align-items: center;
        }

        .trust-logo {
            height: 60px;
            width: auto;
            opacity: 0.7;
            transition: all 0.3s ease;
            filter: grayscale(100%);
        }

        .trust-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .testimonials-title {
                font-size: 2rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .testimonials-stats {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem;
            }

            .stats-title {
                font-size: 1.5rem;
            }

            .trust-indicators {
                padding: 2rem;
            }

            .trust-logos {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .client-testimonials {
                padding: 3rem 0;
            }

            .testimonials-container {
                padding: 0 1rem;
            }

            .testimonials-header {
                margin-bottom: 2.5rem;
            }

            .testimonials-title {
                font-size: 1.75rem;
            }

            .testimonials-subtitle {
                font-size: 1rem;
            }
        }

/* Block 4 */
.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.form-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.urgency-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #fff3cd;
    padding: 1rem 2rem;
    border-radius: 50px;
    border-left: 4px solid #ffc107;
    display: inline-flex;
}

.urgency-icon {
    width: 24px;
    height: 24px;
}

.urgency-text {
    font-weight: 600;
    color: #856404;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.form-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.consultation-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.guarantee-badge {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.shield-icon {
    width: 40px;
    height: 40px;
}

.guarantee-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3c72;
    margin: 0;
}

.guarantee-text p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0.25rem 0 0 0;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-fields {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.field-group {
    position: relative;
}

.field-group.full-width {
    grid-column: 1 / -1;
}

.field-label {
    display: block;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #2a5298;
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.field-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0.75rem;
}

.input-icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.priority-selector {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #2a5298;
}

.priority-label {
    display: block;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.priority-options {
    display: flex;
    gap: 2rem;
}

.priority-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.priority-radio {
    width: 18px;
    height: 18px;
    accent-color: #2a5298;
}

.priority-text {
    font-weight: 500;
}

.priority-text.urgent {
    color: #dc3545;
}

.priority-text.standard {
    color: #28a745;
}

.consent-group {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.consent-checkbox:last-child {
    margin-bottom: 0;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    accent-color: #2a5298;
    margin: 0;
}

.checkmark {
    min-width: 18px;
    height: 18px;
}

.consent-text {
    color: #495057;
}

.consent-text a {
    color: #2a5298;
    text-decoration: none;
    font-weight: 500;
}

.consent-text a:hover {
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #ffffff;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(42, 82, 152, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.button-icon {
    width: 24px;
    height: 24px;
}

.button-text {
    font-size: 1.1rem;
}

.button-subtext {
    position: absolute;
    bottom: 0.3rem;
    right: 1.5rem;
    font-size: 0.7rem;
    opacity: 0.8;
    font-weight: 400;
}

.contact-alternatives {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.alternative-methods {
    text-align: center;
}

.alternatives-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-method {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.method-details {
    text-align: left;
}

.method-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3c72;
    margin: 0 0 0.5rem 0;
}

.method-value {
    font-size: 1rem;
    font-weight: 600;
    color: #2a5298;
    margin: 0 0 0.25rem 0;
}

.method-note {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

@media (max-width: 768px) {
    .form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .priority-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-details {
        text-align: center;
    }
    
    .urgency-indicator {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .button-subtext {
        display: none;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-input, .form-textarea {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    }
    
    .field-icon {
        left: 0.8rem;
    }
}
