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

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

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.8) 0%, rgba(74, 20, 140, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #e8eaf6;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.125rem;
    color: #f3e5f5;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description-secondary {
    font-size: 1rem;
    color: #e1bee7;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.6);
    color: #ffffff;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    color: #4caf50;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Block 2 */
.services-overview {
padding: 80px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
text-align: center;
margin-bottom: 60px;
}

.section-title {
font-size: 2.5rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 20px;
background: linear-gradient(45deg, #3498db, #2980b9);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.section-description {
font-size: 1.2rem;
color: #5a6c7d;
max-width: 700px;
margin: 0 auto;
line-height: 1.6;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
gap: 40px;
margin-bottom: 80px;
}

.service-card {
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
overflow: hidden;
transition: all 0.3s ease;
border: 1px solid #e1e8ed;
}

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

.service-image {
height: 250px;
overflow: hidden;
}

.service-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.service-card:hover .service-img {
transform: scale(1.05);
}

.service-content {
padding: 30px;
}

.service-icon {
width: 60px;
height: 60px;
background: linear-gradient(45deg, #3498db, #2980b9);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.service-icon i {
font-size: 1.5rem;
color: white;
}

.service-title {
font-size: 1.4rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 15px;
}

.service-text {
color: #5a6c7d;
line-height: 1.7;
margin-bottom: 20px;
}

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

.service-features li {
color: #5a6c7d;
margin-bottom: 8px;
display: flex;
align-items: center;
}

.service-features li i {
color: #27ae60;
margin-right: 10px;
font-size: 0.9rem;
}

.process-timeline {
margin-bottom: 60px;
padding: 50px 30px;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.timeline-title {
text-align: center;
font-size: 1.8rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 40px;
}

.timeline-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.timeline-step {
text-align: center;
}

.step-number {
width: 50px;
height: 50px;
background: linear-gradient(45deg, #e74c3c, #c0392b);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
font-weight: 600;
margin: 0 auto 20px;
}

.step-content h4 {
font-size: 1.1rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 10px;
}

.step-content p {
color: #5a6c7d;
line-height: 1.6;
}

.cta-section {
background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
border-radius: 20px;
padding: 50px 30px;
text-align: center;
}

.cta-title {
font-size: 1.8rem;
font-weight: 600;
color: white;
margin-bottom: 15px;
}

.cta-description {
color: rgba(255,255,255,0.9);
font-size: 1.1rem;
margin-bottom: 30px;
}

.cta-button-primary {
background: white;
color: #3498db;
padding: 15px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 10px;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0,0,0,0.3);
color: #2980b9;
}

@media (max-width: 768px) {
.services-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.section-title {
font-size: 2rem;
}

.timeline-steps {
grid-template-columns: 1fr;
}

.service-card {
margin: 0 15px;
}
}

/* Block 3 */
.testimonials-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #f8f9fa;
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.client-location {
    color: #6c757d;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

.rating-stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
    border: none;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #667eea;
    opacity: 0.3;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.project-type,
.project-duration {
    font-size: 0.85rem;
    color: #6c757d;
}

.project-type {
    font-weight: 600;
    color: #667eea;
}

.testimonials-stats {
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stat-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.stat-label {
    color: #6c757d;
    font-weight: 500;
    margin: 0;
}

.video-testimonial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0,0,0,0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.video-description {
    line-height: 1.6;
    color: #495057;
    margin-bottom: 20px;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.video-feature {
    color: #6c757d;
    font-size: 0.9rem;
}

.video-feature i {
    color: #667eea;
    margin-right: 8px;
}

.trust-indicators {
    margin-bottom: 60px;
}

.trust-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 40px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 20px;
}

.trust-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.trust-text {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.cta-testimonials {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #667eea;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #667eea;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .video-testimonial {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-testimonials {
        padding: 30px 20px;
    }
}

/* Block 4 */
.brand-story-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.brand-story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 117, 125, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.brand-header {
    text-align: center;
    margin-bottom: 60px;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.brand-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.story-timeline {
    position: relative;
    padding-left: 40px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #007bff, #28a745);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: #007bff;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #007bff;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.founder-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.founder-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #f8f9fa;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.founder-title {
    color: #007bff;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.founder-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    padding: 0 20px;
}

.founder-quote::before {
    content: '"';
    font-size: 3rem;
    color: #007bff;
    position: absolute;
    left: -10px;
    top: -10px;
    font-family: serif;
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6c757d;
    font-size: 0.95rem;
}

.credential-item i {
    color: #007bff;
    width: 20px;
}

.values-section {
    margin-bottom: 80px;
}

.values-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.value-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.team-showcase {
    margin-bottom: 80px;
}

.team-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
}

.team-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-3px);
}

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #f8f9fa;
}

.member-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.member-role {
    color: #007bff;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.member-bio {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.achievements-section {
    margin-bottom: 80px;
}

.achievements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.achievement-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.achievement-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.achievement-item i {
    color: #ffc107;
    font-size: 1.5rem;
    width: 30px;
}

.achievement-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3px;
}

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

.achievement-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.philosophy-section {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.philosophy-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
}

.philosophy-principles {
    display: grid;
    gap: 30px;
}

.principle-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.principle-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.principle-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.principle-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.contact-cta {
    text-align: center;
    background: linear-gradient(135deg, #007bff, #0056b3);
    padding: 60px 40px;
    border-radius: 20px;
    color: white;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-button {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: white;
    color: #007bff;
}

.cta-button.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #007bff;
}

@media (max-width: 768px) {
    .brand-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .achievements-content {
        grid-template-columns: 1fr;
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-section {
        padding: 40px 20px;
    }
    
    .principle-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .story-timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 25px;
    }
    
    .timeline-item::before {
        left: -33px;
    }
}

/* Block 5 */
.contact-form-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        .contact-form-section::before {
            content: '';
            background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .form-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .form-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
        }
        
        .form-icon i {
            font-size: 36px;
            color: white;
        }
        
        .form-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }
        
        .form-subtitle {
            font-size: 1.25rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .form-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-bottom: 80px;
        }
        
        .contact-form {
            background: white;
            padding: 60px;
            border-radius: 24px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .form-grid {
            display: flex;
            flex-direction: column;
            gap: 32px;
            margin-bottom: 48px;
        }
        
        .input-group {
            display: flex;
            flex-direction: column;
        }
        
        .input-label {
            font-size: 1rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        
        .input-wrapper {
            position: relative;
        }
        
        .input-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            font-size: 18px;
            z-index: 3;
        }
        
        .form-input {
            width: 100%;
            padding: 18px 20px 18px 56px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            font-size: 1rem;
            background: #fafbfc;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            outline: none;
        }
        
        .form-input:focus {
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }
        
        .form-input:focus + .input-icon {
            color: #667eea;
        }
        
        .form-input::placeholder {
            color: #94a3b8;
        }
        
        .submit-button {
            width: 100%;
            padding: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 16px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 32px;
        }
        
        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
        }
        
        .button-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            position: relative;
            z-index: 2;
        }
        
        .button-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }
        
        .submit-button:hover .button-shine {
            left: 100%;
        }
        
        .form-benefits {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            color: #475569;
        }
        
        .benefit-item i {
            color: #10b981;
            font-size: 16px;
        }
        
        .privacy-note {
            font-size: 0.9rem;
            color: #64748b;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.5;
            margin: 0;
        }
        
        .privacy-note i {
            color: #10b981;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .contact-alternative {
            background: white;
            padding: 60px;
            border-radius: 24px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .alternative-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .alternative-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 12px;
        }
        
        .alternative-subtitle {
            color: #64748b;
            font-size: 1rem;
            margin: 0;
        }
        
        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px;
            background: #f8fafc;
            border-radius: 16px;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }
        
        .contact-method:hover {
            background: white;
            border-color: #e2e8f0;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            color: inherit;
            text-decoration: none;
        }
        
        .method-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .method-icon i {
            color: white;
            font-size: 20px;
        }
        
        .method-content {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .method-label {
            font-size: 0.9rem;
            color: #64748b;
            font-weight: 500;
        }
        
        .method-value {
            font-size: 1.1rem;
            color: #1a202c;
            font-weight: 600;
        }
        
        .trust-signals {
            display: flex;
            justify-content: center;
            gap: 60px;
            align-items: center;
        }
        
        .trust-signal {
            display: flex;
            align-items: center;
            gap: 16px;
            background: white;
            padding: 20px 30px;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            border: 1px solid #f1f5f9;
        }
        
        .trust-logo {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }
        
        .trust-content {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .trust-rating {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .stars {
            display: flex;
            gap: 2px;
        }
        
        .stars i {
            color: #fbbf24;
            font-size: 14px;
        }
        
        .rating-text {
            font-weight: 600;
            color: #1a202c;
            font-size: 0.9rem;
        }
        
        .trust-label {
            font-size: 0.85rem;
            color: #64748b;
            font-weight: 500;
        }
        
        .trust-sublabel {
            font-size: 0.8rem;
            color: #94a3b8;
        }
        
        @media (max-width: 1024px) {
            .form-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .trust-signals {
                flex-direction: column;
                gap: 20px;
            }
            
            .contact-form,
            .contact-alternative {
                padding: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .contact-form-section {
                padding: 80px 0;
            }
            
            .form-title {
                font-size: 2.5rem;
            }
            
            .contact-form,
            .contact-alternative {
                padding: 30px;
            }
            
            .form-header {
                margin-bottom: 40px;
            }
            
            .form-container {
                margin-bottom: 40px;
            }
            
            .trust-signal {
                padding: 16px 24px;
            }
        }
