/* Custom Sections Styles */

/* --- How It Works / Methods Section --- */
#section-methods {
    background-color: #ffffff !important;
    /* Force clean white */
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

#section-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#2FA8A1 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
    /* Subtle dot pattern */
    z-index: -1;
}

.de_tab.tab_steps .de_nav li {
    background: transparent;
    border: none;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.de_tab.tab_steps .de_nav li.active {
    color: var(--tertiary-color);
    /* Orange */
    border-bottom: 2px solid var(--tertiary-color);
}

.de_tab.tab_steps .de_nav li span {
    font-size: var(--font-size-base);
}

.de_tab_content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Soft shadow for depth */
    margin-top: 30px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.de_tab_content h3 {
    color: #142B4F;
    font-size: var(--font-size-h4);
    margin-bottom: 20px;
    font-weight: 800;
}

.de_tab_content p {
    color: #666;
    line-height: 1.7;
    font-size: var(--font-size-base);
}


/* --- Contact Us Section --- */
#section-contact {
    background: #142B4F !important;
    /* Brand Deep Blue */
    background-image: linear-gradient(135deg, #142B4F 0%, #0D1F3A 100%) !important;
    padding: 100px 0;
    color: #fff;
    position: relative;
}

#section-contact h2 {
    color: #fff;
    margin-bottom: 10px;
}

#section-contact .small-border {
    background-color: var(--tertiary-color);
    /* Orange accent */
}

/* Contact Form Container */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

#contact_form input[type="text"],
#contact_form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

#contact_form input[type="text"]::placeholder,
#contact_form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#contact_form input[type="text"]:focus,
#contact_form textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #2FA8A1;
    outline: none;
    box-shadow: 0 0 15px rgba(47, 168, 161, 0.2);
}

.btn-custom {
    background: var(--tertiary-color);
    /* Orange */
    color: #fff;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(242, 140, 40, 0.3);
}

.btn-custom:hover {
    background: #fff;
    color: var(--tertiary-color);
    /* Orange */
    transform: translateY(-3px);
}

.error,
.success {
    display: none;
    /* Hide default error messages initially */
    margin-top: 10px;
    font-size: 14px;
}

/* --- Modern Company Name Styling --- */
.modern-company-name {
    font-size: 3.0rem !important;
    /* Larger than other content */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    /* Teal → Orange → Deep Blue gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 4px 10px rgba(47, 168, 161, 0.3));
    margin-bottom: 25px;
    display: inline-block;
    line-height: 1.1;
}

/* Gradient styling for last two characters */
.modern-company-name .gradient-text {
    background: var(--tertiary-color);
    /* Orange → Teal → Deep Blue gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 4px 10px rgba(242, 140, 40, 0.4));
    /* Orange glow */
}

@media (max-width: 992px) {
    .modern-company-name {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 576px) {
    .modern-company-name {
        font-size: 2.0rem !important;
    }
}


/* --- Modern Company Name Styling --- */
.modern-company-name-about {
    font-size: 2.4rem !important;
    /* Larger than other content */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(181deg, var(--primary-color) 30%, var(--secondary-color) 100%);
    /* Teal → Orange → Deep Blue gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 4px 10px rgba(47, 168, 161, 0.3));
    margin-bottom: 25px;
    display: inline-block;
    line-height: 1.1;
}

/* Gradient styling for last two characters */
.modern-company-name-about .gradient-text {
    background: var(--tertiary-color);
    /* Orange → Teal → Deep Blue gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 4px 10px rgba(242, 140, 40, 0.4));
    /* Orange glow */
}

@media (max-width: 992px) {
    .modern-company-name-about {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 576px) {
    .modern-company-name-about {
        font-size: 2.0rem !important;
    }
}