/* ===== HEADER (FIXED AT TOP) ===== */
#masthead {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

/* ===== HERO SECTION (NO OVERLAP, PERFECT SPACING) ===== */
.ec-about-hero {
    margin-top: 95px; /* ðŸ”¥ MATCHES YOUR HEADER HEIGHT */
    padding: 80px 0 100px;
    position: relative;
    background: #050510;
    overflow: hidden;
}

/* ===== CONTAINER (NO EDGE TOUCHING) ===== */
.ec-about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ===== BACKGROUND GLOW EFFECT ===== */
.ec-about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 30%, rgba(177,156,217,0.25), transparent 40%),
        radial-gradient(circle at 90% 70%, rgba(250,218,221,0.15), transparent 50%);
    filter: blur(60px);
    opacity: 0.7;
}

/* ===== LIGHT WAVE OVERLAY ===== */
.ec-about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(177,156,217,0.2), rgba(250,218,221,0.08));
    opacity: 0.6;
}

/* ===== BADGE POSITION (SLIGHT LEFT OFFSET) ===== */
.ec-about-badge-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    transform: translateX(-40px);
}

/* ===== BADGE STYLE ===== */
.ec-about-badge {
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    color: #d6cfff;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

/* ===== TITLE ===== */
.ec-about-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: -1px;
}

/* ===== GRADIENT TEXT ===== */
.ec-about-title span {
    background: linear-gradient(90deg, #B19CD9, #FADADD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== SUBTEXT ===== */
.ec-about-subtext {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .ec-about-title {
        font-size: 38px;
    }

    .ec-about-badge-wrap {
        transform: translateX(0);
    }

    .ec-about-hero {
        margin-top: 85px; /* smaller header on mobile */
        padding: 60px 0 80px;
    }
}

.ec-about-hero {
    margin-top: 95px; /* adjust to match header height */
    padding: 80px 0 100px;
}

/*next*/



/* ===== SECTION ===== */
.ec-contact {
    padding: 100px 0;
    background: #050510;
}

/* ===== WRAP ===== */
.ec-contact-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ===== TOP ===== */
.ec-contact-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* heading */
.ec-contact-left h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-top: 15px;
}

/* gradient */
.ec-contact-left h2 span {
    background: linear-gradient(90deg, #B19CD9, #FADADD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* right text */
.ec-contact-right p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
}

/* ===== MAIN GRID ===== */
.ec-contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* ===== MAP ===== */
.ec-contact-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 20px;
}


/* row spacing (already exists but ensure it's correct) */
.ec-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px; /* 🔥 space below row */
}

/* add spacing between all inputs */
.ec-contact-form input,
.ec-contact-form textarea {
    width: 100%;
    padding: 16px;
    border-radius: 30px;
    border: none;
    background: #eaeaea;
    font-size: 14px;
    outline: none;
    margin-bottom: 20px; /* 🔥 THIS FIXES EVERYTHING */
}

/* textarea */
.ec-contact-form textarea {
    height: 140px;
    border-radius: 20px;
}

/* button spacing */
.ec-contact-form button {
    margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

    .ec-contact-top {
        grid-template-columns: 1fr;
    }

    .ec-contact-main {
        grid-template-columns: 1fr;
    }

    .ec-form-row {
        flex-direction: column;
    }

    .ec-contact-left h2 {
        font-size: 32px;
    }
}

/*next*/


/* ===== SECTION ===== */
.ec-contact-cards {
    padding: 100px 0;
    background: #050510;
    text-align: center;
}

/* ===== WRAP ===== */
.ec-contact-cards-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.ec-contact-cards-header h2 {
    font-size: 44px;
    margin: 15px 0;
}

.ec-contact-cards-header h2 span {
    background: linear-gradient(90deg, #B19CD9, #FADADD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ec-contact-cards-header p {
    max-width: 600px;
    margin: 0 auto 50px;
    color: rgba(255,255,255,0.75);
}

/* ===== GRID ===== */
.ec-contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===== CARD ===== */
.ec-contact-card {
    padding: 30px 25px;
    border-radius: 20px;
    text-align: left;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

/* hover */
.ec-contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(177,156,217,0.6);
}

/* ===== ICON ===== */
.ec-contact-icon {
    width: 50px;
    height: 50px;
    background: #e5cfd1;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
    font-size: 20px;
}

/* ===== TITLE ===== */
.ec-contact-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* ===== HIGHLIGHT ===== */
.ec-contact-highlight {
    color: #B19CD9;
    font-size: 14px;
}

/* ===== DIVIDER ===== */
.ec-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 15px 0;
}

/* ===== TEXT ===== */
.ec-contact-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* ===== LINK ===== */
.ec-contact-card a {
    display: inline-block;
    margin-top: 15px;
    color: #FADADD;
    text-decoration: none;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .ec-contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ec-contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .ec-contact-cards-header h2 {
        font-size: 30px;
    }
}

/*next*/


/* ===== SECTION ===== */
.ec-contact-trust {
    padding: 100px 0;
    background: #050510;
}

/* ===== WRAP ===== */
.ec-contact-trust-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* ===== CONTENT ===== */
.ec-contact-trust-content h2 {
    font-size: 42px;
    margin: 15px 0;
}

.ec-contact-trust-content h2 span {
    background: linear-gradient(90deg, #B19CD9, #FADADD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ec-contact-trust-content p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
}

/* ===== LIST ===== */
.ec-trust-list {
    list-style: none;
    padding: 0;
}

.ec-trust-list li {
    margin-bottom: 10px;
    color: #ddd;
    font-size: 14px;
}

/* ===== STATS ===== */
.ec-contact-trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ===== BOX ===== */
.ec-trust-box {
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
}

/* numbers */
.ec-trust-box h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: #B19CD9;
}

/* label */
.ec-trust-box span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .ec-contact-trust-wrap {
        grid-template-columns: 1fr;
    }
}
