.cloud-color-section {
    background-color: #2d3737;
    padding: 5rem 2rem;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cloud-color-section h2 {
    color: #ffff;
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center !important;
}

.secondary-container {
    width: 100%;
    max-width: 75%;
    margin-bottom: 3rem;
}

.plans {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 3rem 2rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.plans:hover {
    transform: scale(1.02);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.plan-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 1rem;
    text-align: center;
}

.plan-name::before {
    content: "✨";
    color: #2d3737;
    font-size: 1.5rem;
    position: relative;
    bottom: 3px;
}

.plans-columns {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.left-col3 {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    border-radius: 1rem;
    background: #f0f4f8;
    transition: background 0.3s ease;
    text-align: center;
}

.left-col3:hover {
    background: #e0f3ec;
}

.left-col3 p {
    margin: 0.4rem 0;
    font-size: 1.1rem;
    color: #333;
}

.left-col3 strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #2c3e50;
}

.elementor-divider {
    margin: 0.5rem 0;
    position: relative;
}

.elementor-divider-separator {
    margin: auto;
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #2d3737, #2d3737);
    width: 100px;
    border-radius: 2px;
    animation: slide-in 1.2s ease-out forwards;
}

@keyframes slide-in {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

@media screen and (max-width: 1024px) {
    .secondary-container {
        max-width: 90%;
        padding: 2rem 1rem;
    }

    .cloud-color-section h2 {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }

    .plan-name {
        font-size: 1.75rem;
    }

    .plans-columns {
        flex-direction: column;
        gap: 1.5rem;
    }

    .left-col3 {
        padding: 1rem;
        min-width: unset;
    }
}

@media screen and (max-width: 640px) {
    .cloud-color-section {
        padding: 3rem 1rem;
    }

    .cloud-color-section h2 {
        font-size: 2rem;
    }

    .plan-name::before {
        font-size: 1.2rem;
        bottom: 1px;
    }

    .left-col3 p {
        font-size: 1rem;
    }

    .left-col3 strong {
        font-size: 1.1rem;
    }

    .elementor-divider-separator {
        width: 40px;
    }

    @keyframes slide-in {
        to {
            width: 40px;
            opacity: 1;
        }
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    width: 100%;
    display: flex;
    margin: auto;
    flex-direction: column;
    align-items: center;
}

/* FAQ Columns Grid with fixed width items */
.faq-cols {
    padding-top: 2rem;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    width: 100%;
    max-width: 1100px;
    justify-content: center;
}

/* FAQ Item */
.faq-col {
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.faq-col:hover {
    border-color: #84cc16;
    transform: translateY(-4px);
}

/* Icon Styling */
.faq-cols svg {
    fill: #1a202c;
    width: 30px;
    height: 30px;
    margin-bottom: 20px;
}

/* FAQ Text */
.faq-col strong {
    font-size: 1.25rem;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.faq-col p {
    font-size: 1.05rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .faq-cols {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-col {
        padding: 1.5rem;
    }

    .faq-col strong {
        font-size: 1.15rem;
    }

    .faq-col p {
        font-size: 1rem;
    }
}

/* ========== Form Section Styling ========== */
.contact-form-wrapper {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 960px;
    margin: auto;
    width: 100%;
}

/* ========== Headings ========== */
.contact-form-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3737;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.contact-form-wrapper p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

/* ========== Form Layout ========== */
.input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1 1 100%;
}

@media screen and (min-width: 640px) {
    .form-group {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

/* ========== Inputs & Selects ========== */
input.form-control,
select.form-control,
textarea.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    background-color: #f9fafb;
    transition: border-color 0.3s, background 0.3s;
    font-family: 'Inter', sans-serif;
    color: #1a202c;
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
    outline: none;
    border-color: #84cc16;
    background-color: #ffffff;
}

/* Date Input Override */
input[type="date"].form-control {
    color-scheme: light;
}

/* Submit Button */
input.primary-button {
    margin-top: 2rem;
    background-color: #2d3737;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    border: none;
    transition: background-color 0.3s ease;
}

input.primary-button:hover {
    background-color: #1f2626;
    cursor: pointer;
}

/* Fix Safari appearance of select */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%234a5568' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
}

/* Align Submit Button */
.form-group .col-sm-12 {
    display: flex;
    justify-content: center;
}

input#wphoneInput {
    appearance: textfield;
}

.ac-footer {
    margin-top: unset !important;
}

.ch-container {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--container-lg);
    padding-left: calc(var(--h) * 2);
    padding-right: calc(var(--h) * 2);
}

/* Section container */
.shipping-types-section {
    padding: 60px 20px;
    background-color: #2d3737;
    display: flex;
    justify-content: center;
}

.shipping-types-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    width: 100%;
}

/* Individual shipping block */
.shipping-type {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 360px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.shipping-type .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: background 0.3s ease;
}

/* Text block inside the card */
.shipping-type .text-block {
    position: relative;
    z-index: 2;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    min-height: 55%;
}

.shipping-type strong {
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

/* Hover effect */
.shipping-type:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .shipping-types-section {
        padding: 40px 16px;
    }

    .shipping-type {
        height: 300px;
    }

    .shipping-type .text-block {
        font-size: 13px;
    }
}
