/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #ffffff;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.btn-header {
    background: linear-gradient(135deg, #F2BF0E 0%, #FFD700 100%) !important;
    color: #000000 !important;
    border-radius: 25px !important;
    padding: 10px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    box-shadow: 0 3px 12px rgba(242, 191, 14, 0.3);
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}

.btn-header:hover {
    background: linear-gradient(135deg, #FFD700 0%, #F2BF0E 100%) !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(242, 191, 14, 0.5);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
}

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: #f8f9fa;
}

.mobile-menu .btn-mobile {
    background: #000;
    color: #fff;
    margin: 10px 20px;
    border-radius: 5px;
    text-align: center;
    border-bottom: none;
}

.mobile-menu .btn-mobile:hover {
    background: #333;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #424242;
    color: #ffffff;
}

.btn i {
    font-size: 16px;
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.hero-text {
    flex: 1;
    padding: 100px 50px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 50px;
    color: #333;
}

.hero .btn {
    align-self: flex-start;
    margin-bottom: 50px;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 30px;
}

.testimonial-avatars {
    display: flex;
    margin-right: 10px;
}

.testimonial-avatars img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
    margin-right: -15px;
}

.testimonial-avatars img:last-child {
    margin-right: 0;
}

.rating {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stars {
    display: flex;
    gap: 6px;
    color: #F2BF0E;
}

.rating p {
    font-size: 16px;
    color: #7A7A7A;
    white-space: nowrap;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background-image: url('https://plus.unsplash.com/premium_photo-1670315264879-59cc6b15db5f?q=80&w=1171&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
}

.hero-image img {
    display: none;
}

/* Benefits Section */
.benefits {
    background: #888888;
    padding: 0;
}

.benefits-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.benefit-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    padding: 20px;
}

.benefit-item i {
    color: #ffffff;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    text-align: center;
    background: #f9fafb;
}

.problem h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.problem h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F2BF0E, #ffd700);
    border-radius: 2px;
}

.problem-description {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 50px;
    margin-top: 30px;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    color: #000000;
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.problem-content p {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #4b5563;
    line-height: 1.8;
}

.problem-content p:last-child {
    margin-bottom: 0;
}

.problem-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.problem-point {
    text-align: center;
    padding: 25px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #dc3545;
    transition: all 0.3s ease;
}

.problem-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
}

.problem-point i {
    font-size: 32px;
    color: #dc3545;
    margin-bottom: 15px;
    display: block;
}

.problem-point h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.problem-point p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
    position: relative;
}

.solution-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.solution-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-image img {
    width: 100%;
    max-width: 530px;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.solution-image img:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.solution-text {
    flex: 1;
    padding: 0;
}

.solution-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.solution-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F2BF0E, #ffd700);
    border-radius: 2px;
}

.solution-text p {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.8;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #fafbfc 0%, #f0f2f5 100%);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 191, 14, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 191, 14, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

.why-choose h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(242, 191, 14, 0.2);
    border-color: #F2BF0E;
}

.benefit-card i {
    font-size: 60px;
    color: #F2BF0E;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.benefit-card:hover i {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.benefit-card:hover h3 {
    color: #F2BF0E;
}

.benefit-card p {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    text-align: center;
    background: #f9fafb;
}

.how-it-works h2 {
    font-size: 50px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    max-width: 270px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #F2BF0E;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    transition: all 0.3s ease;
}

.step:nth-child(1) .step-icon {
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
}

.step:nth-child(2) .step-icon {
    background: rgba(255, 99, 71, 0.1);
    color: #FF6347;
}

.step:nth-child(3) .step-icon {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.step:nth-child(4) .step-icon {
    background: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
}

.step:hover .step-icon {
    transform: scale(1.1);
}

.step:nth-child(1):hover .step-icon {
    background: #FF8C00;
    color: #fff;
}

.step:nth-child(2):hover .step-icon {
    background: #FF6347;
    color: #fff;
}

.step:nth-child(3):hover .step-icon {
    background: #4CAF50;
    color: #fff;
}

.step:nth-child(4):hover .step-icon {
    background: #9C27B0;
    color: #fff;
}

.step h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    background: #ffffff;
    padding: 80px 0 0;
}

.testimonials .container {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.testimonial-video {
    flex: 1;
    background: #ffffff;
    z-index: 1;
}

.testimonial-video h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
}

.video-container {
    position: relative;
    display: inline-block;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(0,0,0,0.9);
}

.testimonial-quote {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-quote i {
    font-size: 40px;
    color: #F2BF0E;
    margin-bottom: 20px;
}

.testimonial-quote p {
    font-size: 27px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.4;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author .stars {
    display: flex;
    gap: 6px;
    color: #F2BF0E;
    margin-bottom: 5px;
}

.testimonial-author h4 {
    font-size: 19px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    font-weight: 400;
    color: #A0A0A0;
    margin: 0;
}

/* Testimonial Cards */
.testimonial-cards {
    background: #ffffff;
    padding: 60px 0 80px;
}

.testimonial-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.testimonial-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.09);
    flex: 1;
    max-width: 400px;
}

.testimonial-card h3 {
    font-size: 25px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    padding-left: 30px;
}

.testimonial-card > p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-left: 30px;
}

.testimonial-card hr {
    border: none;
    border-top: 1px solid #B6B6B6;
    margin: 20px 0;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info .stars {
    display: flex;
    gap: 6px;
    color: #ffd700;
    margin-bottom: 5px;
}

.author-info h4 {
    font-size: 19px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 14px;
    font-weight: 400;
    color: #A0A0A0;
    margin: 0;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #ffffff;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features h2 {
    font-size: 50px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.features h2 .highlight {
    color: #F2BF0E;
}

.highlight {
    color: #F2BF0E;
}

.features-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 710px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1250px;
    margin: 0 auto;
}

.feature-item {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #F2BF0E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(242, 191, 14, 0.3);
}

.feature-icon i {
    font-size: 28px;
    color: #000000;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 15px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: #f5f5f5;
    padding: 100px 0;
    text-align: center;
}

.faq h2 {
    font-size: 50px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
}

.faq h2 .highlight {
    color: #F2BF0E;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 19px;
    font-weight: 600;
    color: #000000;
    border-bottom: 1px solid #eee;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    text-align: left;
}

/* Final CTA Section */
.final-cta {
    background: #000000;
    padding: 100px;
    text-align: center;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.final-cta .btn {
    background: #F2BF0E;
    color: #000000;
}

.final-cta .btn:hover {
    background: #FFD700;
    color: #000000;
}

/* Responsive Design */
/* Tablet View */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }
    
    .benefit-card {
        padding: 40px 30px;
    }
    
    .why-choose h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 8px 0;
    }
    
    .header-cta .btn {
        display: none;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* Modal Responsive */
    .modal {
        padding: 10px;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .modal-content {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        margin: 20px 0;
        border-radius: 10px;
    }
    
    .modal-content h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .modal-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .close-modal {
        font-size: 24px;
        top: 12px;
        right: 15px;
    }
    
    .modal-content form {
        gap: 12px;
    }
    
    .modal-content input,
    .modal-content select,
    .modal-content textarea {
        padding: 12px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .modal-content button {
        margin-top: 10px;
        min-width: 150px;
        font-size: 15px;
        padding: 12px 25px;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        flex-direction: column-reverse;
        gap: 20px;
    }
    
    .hero-text {
        padding: 20px 15px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 25px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero .btn {
        margin-bottom: 30px;
        font-size: 16px;
        padding: 12px 25px;
    }
    
    .hero-image {
        min-height: 250px;
        margin: 0 -15px;
    }
    
    .social-proof {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .testimonial-avatars {
        justify-content: center;
    }
    
    .testimonial-avatars img {
        width: 45px;
        height: 45px;
        margin-right: -10px;
    }
    
    .rating p {
        font-size: 14px;
        text-align: center;
    }
    
    .benefits {
        padding: 15px 0;
    }
    
    .benefits-content {
        flex-direction: column;
        gap: 0;
    }
    
    .benefit-item {
        padding: 15px;
        font-size: 16px;
        text-align: center;
        border-bottom: 1px solid #666;
    }
    
    .benefit-item:last-child {
        border-bottom: none;
    }
    
    .problem {
        padding: 60px 0;
    }
    
    .problem-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .solution {
        padding: 60px 0;
    }
    
    .solution-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .solution-image {
        order: 2;
        margin: 0 -15px;
    }
    
    .solution-text {
        order: 1;
        padding: 0 15px;
        text-align: center;
    }
    
    .solution-text h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .solution-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .why-choose {
        padding: 60px 0;
    }
    
    .why-choose h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .benefit-card i {
        font-size: 50px;
    }
    
    .benefit-card h3 {
        font-size: 20px;
    }
    
    .how-it-works {
        padding: 60px 0;
    }
    
    .how-it-works h2 {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .step {
        margin: 0 15px;
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .testimonials {
        padding: 60px 0 0;
    }
    
    .testimonials .container {
        flex-direction: column;
        gap: 0;
    }
    
    .testimonial-video {
        padding: 0 15px 30px;
    }
    
    .testimonial-video h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .testimonial-quote {
        padding: 30px 20px;
    }
    
    .testimonial-quote p {
        font-size: 18px;
        text-align: center;
    }
    
    .testimonial-cards {
        padding: 40px 0 60px;
    }
    
    .testimonial-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-card {
        margin: 0 15px;
        padding: 20px 15px;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .features-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .features h2 {
        font-size: 28px;
    }
    
    .features-subtitle {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .faq {
        padding: 60px 0;
    }
    
    .faq h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .faq-container {
        margin: 0 15px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 15px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .final-cta {
        padding: 60px 20px;
    }
    
    .final-cta h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .problem h2,
    .solution-text h2,
    .why-choose h2,
    .how-it-works h2,
    .testimonial-video h2,
    .features h2,
    .faq h2,
    .final-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header {
        padding: 5px 0;
    }
    
    .logo img {
        height: 35px;
    }
    
    /* Modal Responsive */
    .modal {
        padding: 5px;
    }
    
    .modal-content {
        padding: 25px 15px;
        margin: 10px 0;
        border-radius: 8px;
    }
    
    .modal-content h2 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .modal-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .close-modal {
        font-size: 22px;
        top: 10px;
        right: 12px;
    }
    
    .modal-content form {
        gap: 10px;
    }
    
    .modal-content input,
    .modal-content select,
    .modal-content textarea {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .modal-content textarea {
        rows: 3;
    }
    
    .modal-content button {
        margin-top: 8px;
        min-width: 130px;
        font-size: 14px;
        padding: 10px 20px;
        border-radius: 20px;
    }
    
    .hero {
        padding: 70px 0 40px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-image {
        min-height: 200px;
    }
    
    .btn {
        font-size: 15px;
        padding: 10px 20px;
        gap: 8px;
    }
    
    .testimonial-avatars {
        gap: 0;
    }
    
    .testimonial-avatars img {
        width: 40px;
        height: 40px;
        margin-right: -15px;
    }
    
    .rating p {
        font-size: 13px;
    }
    
    .benefit-item {
        padding: 12px;
        font-size: 15px;
    }
    
    .problem-content {
        padding: 25px 15px;
    }
    
    .problem-content p {
        font-size: 15px;
    }
    
    .solution-text h2,
    .problem h2,
    .why-choose h2,
    .how-it-works h2,
    .testimonial-video h2,
    .features h2,
    .faq h2,
    .final-cta h2 {
        font-size: 24px;
    }
    
    .benefit-card {
        padding: 25px 15px;
    }
    
    .benefit-card i {
        font-size: 40px;
    }
    
    .benefit-card h3 {
        font-size: 20px;
    }
    
    .step {
        padding: 25px 15px;
    }
    
    .step-icon {
        width: 65px;
        height: 65px;
        font-size: 30px;
    }
    
    .step h3 {
        font-size: 18px;
    }
    
    .step p {
        font-size: 14px;
    }
    
    .testimonial-quote p {
        font-size: 16px;
    }
    
    .testimonial-card h3 {
        font-size: 20px;
        padding-left: 15px;
    }
    
    .testimonial-card > p {
        font-size: 15px;
        padding-left: 15px;
    }
    
    .feature-item {
        padding: 25px 20px;
    }
    
    .feature-item h3 {
        font-size: 18px;
    }
    
    .feature-item p {
        font-size: 14px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 12px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .final-cta {
        padding: 50px 15px;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .faq-question {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    /* Improve text readability */
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Better spacing for mobile */
    .hero-text {
        padding: 15px;
    }
    
    .social-proof {
        padding: 0 15px;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-content::-webkit-scrollbar {
    display: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #000;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #000;
}

.modal-content p {
    color: #666;
    margin-bottom: 25px;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    background: #fff;
}

.modal-content select {
    padding-right: 40px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.modal-content select option {
    padding: 10px;
    background: #fff;
    color: #333;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #F2BF0E;
    box-shadow: 0 0 0 3px rgba(242, 191, 14, 0.1);
}

.modal-content select:hover {
    border-color: #F2BF0E;
}

.modal-content textarea {
    resize: vertical;
}

.modal-content button {
    margin: 15px auto 0;
    display: block;
    border-radius: 25px;
    min-width: 200px;
}

/* Thank You Page */
.thank-you-page {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10000;
    overflow-y: auto;
    flex-direction: column;
}

.thank-you-header {
    text-align: center;
    padding: 50px 20px 30px;
    background: #fff;
    animation: fadeIn 0.5s ease;
    flex-shrink: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-header i {
    font-size: 70px;
    color: #4CAF50;
    margin-bottom: 15px;
}

.thank-you-header h1 {
    font-size: 42px;
    color: #000;
    margin-bottom: 12px;
}

.thank-you-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-header button {
    margin-top: 5px;
}

/* Analytics Section */
.analytics-section {
    width: 100%;
    padding: 40px 20px 60px;
    background: #f9fafb;
    flex: 1;
}

.analytics-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.analytics-left h2 {
    font-size: 38px;
    color: #000;
    margin-bottom: 12px;
}

.analytics-left > p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 15px;
}

.happy-clients-card {
    background: linear-gradient(135deg, #2c3e50 0%, #F2BF0E 100%);
    padding: 35px 30px;
    border-radius: 16px;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.happy-clients-card h3 {
    font-size: 44px;
    margin-bottom: 8px;
}

.happy-clients-card p {
    font-size: 17px;
    margin-bottom: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.badge::before {
    content: '📈';
}

.chart-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.chart-header h4 {
    font-size: 20px;
    color: #000;
}

.chart-change {
    color: #F2BF0E;
    font-weight: 600;
    font-size: 14px;
}

.chart-subtitle {
    color: #F2BF0E;
    font-size: 14px;
    margin-bottom: 20px;
}

.chart-wrapper {
    position: relative;
}

.line-chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 2;
    pointer-events: none;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 150px;
    position: relative;
    z-index: 1;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #F2BF0E, #FFE082);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s;
    opacity: 0.6;
}

.bar:hover {
    opacity: 0.9;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 5px;
}

.chart-labels span {
    font-size: 12px;
    color: #666;
}

.service-distribution {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.service-distribution h3 {
    font-size: 22px;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
}

.donut-chart {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.donut-chart svg {
    width: 100%;
    height: 100%;
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-center h4 {
    font-size: 36px;
    color: #000;
    margin-bottom: 5px;
}

.donut-center p {
    font-size: 14px;
    color: #666;
}

.legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: #333;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.legend-item strong {
    color: #F2BF0E;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-card i {
    font-size: 32px;
    color: #F2BF0E;
    margin-bottom: 15px;
}

.stat-card h4 {
    font-size: 32px;
    color: #000;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 1024px) {
    .analytics-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .analytics-left h2 {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .thank-you-header {
        padding: 30px 15px 20px;
    }
    
    .thank-you-header h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .thank-you-header i {
        font-size: 50px;
        margin-bottom: 12px;
    }
    
    .thank-you-header p {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .thank-you-header button {
        font-size: 15px;
        padding: 12px 25px;
    }
    
    .analytics-section {
        padding: 30px 15px 40px;
    }
    
    .analytics-container {
        gap: 25px;
    }
    
    .analytics-left h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .analytics-left > p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .happy-clients-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .happy-clients-card h3 {
        font-size: 36px;
        margin-bottom: 6px;
    }
    
    .happy-clients-card p {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .badge {
        font-size: 13px;
        padding: 6px 14px;
    }
    
    .chart-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .chart-header h4 {
        font-size: 18px;
    }
    
    .chart-change {
        font-size: 13px;
    }
    
    .chart-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .bar-chart {
        height: 120px;
    }
    
    .line-chart {
        height: 120px;
    }
    
    .chart-labels span {
        font-size: 10px;
    }
    
    .service-distribution {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .service-distribution h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .donut-chart {
        width: 180px;
        height: 180px;
        margin-bottom: 25px;
    }
    
    .donut-center h4 {
        font-size: 32px;
    }
    
    .donut-center p {
        font-size: 13px;
    }
    
    .legend {
        gap: 10px;
    }
    
    .legend-item {
        font-size: 14px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        margin-right: 8px;
    }
    
    .stats-grid {
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-card i {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .stat-card h4 {
        font-size: 28px;
        margin-bottom: 4px;
    }
    
    .stat-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .thank-you-header {
        padding: 25px 10px 15px;
    }
    
    .thank-you-header h1 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .thank-you-header i {
        font-size: 40px;
        margin-bottom: 10px;
    }
    
    .thank-you-header p {
        font-size: 13px;
    }
    
    .thank-you-header button {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .analytics-section {
        padding: 25px 10px 30px;
    }
    
    .analytics-container {
        gap: 20px;
    }
    
    .analytics-left h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .analytics-left > p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .happy-clients-card {
        padding: 25px 15px;
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    .happy-clients-card h3 {
        font-size: 28px;
        margin-bottom: 5px;
    }
    
    .happy-clients-card p {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .badge {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .chart-card {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 8px;
    }
    
    .chart-header h4 {
        font-size: 16px;
    }
    
    .chart-change {
        font-size: 12px;
    }
    
    .chart-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .bar-chart {
        height: 100px;
        gap: 4px;
    }
    
    .line-chart {
        height: 100px;
    }
    
    .chart-labels {
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 8px;
    }
    
    .chart-labels span {
        font-size: 9px;
    }
    
    .service-distribution {
        padding: 20px 15px;
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    .service-distribution h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .donut-chart {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
    
    .donut-center h4 {
        font-size: 28px;
    }
    
    .donut-center p {
        font-size: 12px;
    }
    
    .legend {
        gap: 8px;
    }
    
    .legend-item {
        font-size: 13px;
    }
    
    .dot {
        width: 9px;
        height: 9px;
        margin-right: 6px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 18px 12px;
        border-radius: 12px;
    }
    
    .stat-card i {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .stat-card h4 {
        font-size: 24px;
        margin-bottom: 3px;
    }
    
    .stat-card p {
        font-size: 12px;
    }
}

/* Footer Section */
.footer {
    background: #ffffff;
    padding: 50px 0 30px;
    color: #000000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.footer-left {
    flex: 1;
}

.reviews-section {
    margin-bottom: 40px;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.reviews-header i {
    font-size: 20px;
    color: #000000;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #000000;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: #000000;
    margin: 0;
}

.footer-right {
    flex: 2;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 15px;
}

.contact-item i {
    color: #000000;
    font-size: 20px;
    margin-top: 2px;
    min-width: 25px;
}

.contact-item span {
    line-height: 1.6;
    color: #000000;
}

.contact-item a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #0000FF;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-left {
        text-align: center;
    }
    
    .reviews-header {
        writing-mode: horizontal-tb;
        transform: none;
        justify-content: center;
    }
    
    .footer-contact {
        gap: 20px;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
}

/* Multi-Step Form Styles */
.multi-step-modal {
    max-width: 600px;
    padding: 30px;
}

.progress-container {
    margin: 15px 0 20px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #F2BF0E 0%, #FFD700 100%);
    border-radius: 10px;
    transition: width 0.4s ease;
    width: 25%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #F2BF0E 0%, #FFD700 100%);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(242, 191, 14, 0.3);
}

.progress-step.completed .step-number {
    background: #4CAF50;
    color: #fff;
}

.progress-step.completed .step-number::before {
    content: '✓';
    font-weight: bold;
}

.step-label {
    font-size: 12px;
    text-align: center;
    font-weight: 500;
    color: #666;
}

.progress-step.active .step-label {
    color: #000;
    font-weight: 600;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

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

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.step-card {
    text-align: center;
    padding: 15px 20px 10px;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, #F2BF0E 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(242, 191, 14, 0.3);
}

.step-icon i {
    font-size: 28px;
    color: #000;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #000;
}

.step-description {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F2BF0E;
    box-shadow: 0 0 0 3px rgba(242, 191, 14, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #f44336;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.form-navigation {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.btn-secondary {
    background: #e0e0e0;
    color: #666;
}

.btn-secondary:hover {
    background: #d0d0d0;
    color: #333;
}

.btn-primary i,
.btn-secondary i {
    margin: 0 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .multi-step-modal {
        padding: 25px 20px;
    }
    
    .progress-steps {
        gap: 5px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 28px;
    }
    
    .step-card h3 {
        font-size: 20px;
    }
    
    .step-card {
        padding: 20px 10px;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .form-navigation button {
        width: 100%;
    }
}