* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #121216;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    /* Hide scrollbar */
    overflow-x: hidden;
}

/* Hide scrollbar for webkit browsers */
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.main-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

/* Header / Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 70px;
    width: 100%;
    max-width: 700px;
}

.logo-container {
    margin-bottom: 25px;
}

.logo {
    max-width: 280px;
    height: auto;
}

.hero-text {
    color: #a0a0a0;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
    font-family: 'Montserrat', sans-serif;
}

/* Content Layout */
.content-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
    max-width: 1000px;
}

/* Left Column: Features */
.features-section {
    flex: 1;
    max-width: 550px;
    padding-top: 10px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.highlight-text {
    color: #e6272e;
}

.section-description {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 500px;
    font-family: 'Montserrat', sans-serif;
}

.features-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.feature-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

/* Right Column: Contact Form */
.contact-section {
    flex: 1;
    max-width: 480px;
}

.contact-card {
    background-color: #18181d;
    border: 1px solid #2a2a35;
    border-radius: 12px;
    padding: 50px 40px 60px 40px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.contact-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #ccc;
    margin-bottom: 10px;
    margin-left: 2px;
    font-family: 'Montserrat', sans-serif;
}

.form-input, .form-textarea {
    width: 100%;
    background-color: #121216; /* Input dark bg */
    border: 1px solid #2a2a35;
    border-radius: 8px;
    padding: 16px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #4a4a55;
}

.form-input:focus, .form-textarea:focus {
    border-color: #555;
}

.form-textarea {
    resize: none;
    height: 140px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #e6272e 0%, #ff3b47 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(230, 39, 46, 0.2);
}

/* Success Card */
.success-card {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #121216;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 0.5s ease forwards;
    z-index: 1000;
}

.success-content {
    background-color: #18181d;
    border: 1px solid #2a2a35;
    border-radius: 12px;
    padding: 60px 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 249, 228, 0.1);
    border-radius: 50%;
}

.success-icon {
    font-size: 32px;
    color: #06f9e4;
    z-index: 1;
    background: rgba(6, 249, 228, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 3px solid #06f9e4;
    box-shadow: 0 0 15px rgba(6, 249, 228, 0.3);
    padding-top: 6px;
}

.success-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.success-text {
    font-size: 16px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.home-btn {
    background: linear-gradient(90deg, #e6272e 0%, #ff3b47 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
    font-family: 'Montserrat', sans-serif;
}

.home-btn:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 39, 46, 0.3);
}

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

/* Footer */
.footer-section {
    margin-top: 40px;
    text-align: center;
}

.footer-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #262630;
    color: #aaa;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.social-link:hover {
    background-color: #333340;
    color: #fff;
}

.social-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}


/* Responsive Design */
@media (max-width: 900px) {
    body {
        padding: 20px 15px;
    }
    
    .main-container {
        max-width: 100%;
        align-items: center;
    }
    
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        width: 100%;
        max-width: 500px;
    }

    .features-section, .contact-section {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    .features-section {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-description {
        text-align: center;
        max-width: 100%;
    }
    
    .features-images {
        align-items: center;
        width: 100%;
    }
    
    .contact-title {
        text-align: center;
    }
    
    .logo-section {
        margin-bottom: 40px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    body {
        padding: 15px 10px;
    }
    
    .main-container {
        max-width: 100%;
        align-items: center;
    }
    
    .logo-section {
        margin-bottom: 30px;
        text-align: center;
        width: 100%;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .hero-text {
        font-size: 14px;
        text-align: center;
        max-width: 100%;
    }
    
    .content-wrapper {
        gap: 40px;
        max-width: 100%;
        align-items: center;
    }
    
    .section-title {
        font-size: 26px;
        text-align: center;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 14px;
        text-align: center;
        max-width: 100%;
    }
    
    .features-images {
        width: 100%;
        align-items: center;
    }
    
    .feature-image {
        max-width: 100%;
        width: 90%;
    }
    
    .contact-section {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-card {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-input, .form-textarea {
        padding: 14px;
        font-size: 14px;
    }
    
    .form-textarea {
        height: 120px;
    }
    
    .submit-btn {
        padding: 16px;
        font-size: 13px;
    }
    
    .footer-section {
        margin-top: 30px;
        text-align: center;
        width: 100%;
    }
    
    .footer-title {
        font-size: 16px;
        text-align: center;
    }
    
    .social-links {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-link {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .success-content {
        padding: 40px 20px;
        max-width: 95%;
        width: 95%;
    }
    
    .success-title {
        font-size: 24px;
    }
    
    .success-text {
        font-size: 14px;
    }
    
    .home-btn {
        padding: 14px 30px;
        font-size: 13px;
        min-width: 180px;
    }
}
