/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* HEADER */
.esh-header {
    background: #ffffff;
    border-bottom: 1px solid #e6e6e6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.esh-container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.esh-container2 {
    max-width: 1200px;
    width: 90%;
    margin: auto;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}


/* LOGO */
.esh-logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a73e8;
    white-space: nowrap;
}

/* NAV */
.esh-nav {
    display: flex;
    gap: 22px;
}

.esh-nav a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.esh-nav a:hover {
    color: #1a73e8;
}

/* CALL BUTTON */
.esh-call-btn {
    background: #1a73e8;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.esh-call-btn:hover {
    background: #1557b0;
}

/* =====================
   RESPONSIVE
===================== */

/* Tablet */
@media (max-width: 900px) {
    .esh-container {
        gap: 20px;
    }

    .esh-nav {
        gap: 16px;
    }

    .esh-call-btn {
        font-size: 14px;
        padding: 9px 15px;
    }
}

/* Mobile */
@media (max-width: 680px) {
    .esh-container {
        flex-wrap: wrap;
    }

    .esh-nav {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }

    .esh-call-btn {
        width: 100%;
        text-align: center;
        margin-top: 12px;
        font-size: 15px;
        padding: 12px;
    }
}

/* Small Mobile */
@media (max-width: 420px) {
    .esh-logo {
        font-size: 20px;
    }

    .esh-nav a {
        font-size: 14px;
    }
}
/* =====================
   HERO SECTION
===================== */
.esh-hero {
    background: linear-gradient(135deg, #f5f9ff, #eef4ff);
    padding: 110px 0;
}

/* Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
    min-height: 460px;
}

/* Left Text */
.hero-text {
    max-width: 620px;
}

/* Heading */
.esh-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a2b49;
    line-height: 1.15;
    margin-bottom: 22px;
}

/* Description */
.esh-hero p {
    font-size: 17px;
    line-height: 1.75;
    color: #4f5d75;
    margin-bottom: 36px;
}

/* CTA Button */
.primary-btn {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(26, 115, 232, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(26, 115, 232, 0.45);
}

/* Right Image */
.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 24px 55px rgba(26, 115, 232, 0.25);
}

/* =====================
   RESPONSIVE
===================== */

/* Tablet */
@media (max-width: 900px) {
    .esh-hero {
        padding: 90px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        margin: auto;
    }

    .hero-image {
        margin-top: 45px;
    }

    .esh-hero h1 {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .esh-hero {
        padding: 75px 0;
    }

    .esh-hero h1 {
        font-size: 34px;
    }

    .esh-hero p {
        font-size: 16px;
    }

    .primary-btn {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .esh-hero h1 {
        font-size: 30px;
    }
}


/* SERVICES SECTION */
.esh-services {
    padding: 90px 0;
    background: #ffffff;
}

.esh-services h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a2b49;
}

/* Grid */
.service-grid {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.service-card {
    background: #f9fbff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e6edff;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(26, 115, 232, 0.15);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #5a6782;
    margin-bottom: 24px;
}

/* Call link */
.service-card a {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #1a73e8;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
}

.service-card a:hover {
    border-color: #1a73e8;
}

/* =====================
   RESPONSIVE
===================== */

/* Tablet */
@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .esh-services h2 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .esh-services h2 {
        font-size: 28px;
    }

    .service-card {
        padding: 34px 26px;
    }
}
/* FEATURES SECTION */
.esh-features {
    background: #ffffff;
    padding: 95px 0;
}

.esh-features h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 55px;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Feature Box */
.feature-box {
    padding: 38px 30px;
    border-radius: 22px;
    background: #f9fbff;
    border: 1px solid #e6edff;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(26, 115, 232, 0.14);
}

.feature-box h3 {
    font-size: 21px;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 14px;
}

.feature-box p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #5a6782;
    margin-bottom: 22px;
}

/* CTA */
.feature-box a {
    font-size: 15px;
    font-weight: 700;
    color: #1a73e8;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border 0.25s ease;
}

.feature-box a:hover {
    border-color: #1a73e8;
}

/* =====================
   RESPONSIVE
===================== */

/* Tablet */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .esh-features h2 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .esh-features h2 {
        font-size: 28px;
    }

    .feature-box {
        padding: 34px 26px;
    }
}
/* CTA STRIP */
.esh-cta-strip {
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    padding: 90px 0;
    color: #ffffff;
    text-align: center;
}

.cta-content {
    max-width: 850px;
}

.esh-cta-strip h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.esh-cta-strip p {
    font-size: 17px;
    line-height: 1.7;
    color: #eaf1ff;
    margin-bottom: 32px;
}

/* CTA Button */
.cta-call-btn {
    display: inline-block;
    background: #ffffff;
    color: #1a73e8;
    padding: 18px 38px;
    border-radius: 40px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-call-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.35);
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 768px) {
    .esh-cta-strip {
        padding: 75px 0;
    }

    .esh-cta-strip h2 {
        font-size: 30px;
    }

    .esh-cta-strip p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .esh-cta-strip h2 {
        font-size: 26px;
    }

    .cta-call-btn {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }
}
/* FAQ SECTION */
.esh-faq {
    background: #f9fbff;
    padding: 95px 0;
}

.esh-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 50px;
}

/* FAQ List */
.faq-list {
    max-width: 900px;
    margin: auto;
}

/* FAQ Item */
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 18px;
    border: 1px solid #e6edff;
    overflow: hidden;
}

/* Question */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    font-size: 16px;
    font-weight: 700;
    color: #1a2b49;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Plus */
.faq-question span {
    font-size: 22px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    padding: 0 26px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #5a6782;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 220px;
    padding-bottom: 22px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* CTA */
.faq-cta {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(26, 115, 232, 0.12);
}

.faq-cta p {
    font-size: 16px;
    font-weight: 600;
    color: #1a2b49;
    margin-bottom: 10px;
}

.faq-cta a {
    font-size: 20px;
    font-weight: 800;
    color: #1a73e8;
    text-decoration: none;
}

.faq-cta a:hover {
    text-decoration: underline;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 768px) {
    .esh-faq {
        padding: 80px 0;
    }

    .esh-faq h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .esh-faq h2 {
        font-size: 26px;
    }

    .faq-question {
        font-size: 15px;
    }
}
/* FOOTER */
.esh-footer {
    background: #0f1f3d;
    color: #cfd8ea;
    padding-top: 70px;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #cfd8ea;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cfd8ea;
    text-decoration: none;
    font-size: 14.5px;
    transition: color 0.25s ease;
}

.footer-col ul li a:hover {
    color: #6ea8ff;
}

.footer-col a {
    color: #6ea8ff;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

/* Disclaimer */
.footer-disclaimer {
    background: #0b1830;
    padding: 25px 0;
}

.footer-disclaimer p {
    font-size: 13.5px;
    line-height: 1.8;
    color: #a9b6d6;
    text-align: center;
}

/* Bottom */
.footer-bottom {
    background: #081224;
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13.5px;
    color: #9fb0d3;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* Newsletter */
.footer-newsletter {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    outline: none;
}

.footer-newsletter button {
    background: #6ea8ff;
    color: #0f1f3d;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease;
}

.footer-newsletter button:hover {
    background: #8bb9ff;
}

/* Mobile */
@media (max-width: 900px) {
    .footer-newsletter {
        flex-direction: column;
    }

    .footer-newsletter button {
        width: 100%;
    }
}
/* Fixed Call Now Button */
.esh-fixed-call {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;

    background: #1a73e8;
    color: #ffffff;
    text-decoration: none;

    padding: 14px 20px;
    border-radius: 50px;

    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.2;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-shadow: 0 14px 35px rgba(26, 115, 232, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.esh-fixed-call span {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.95;
}

/* Hover (desktop) */
.esh-fixed-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(26, 115, 232, 0.6);
}

/* Mobile optimization */
@media (max-width: 600px) {
    .esh-fixed-call {
        right: 16px;
        bottom: 16px;
        padding: 16px 22px;
        font-size: 15px;
    }

    .esh-fixed-call span {
        font-size: 14px;
    }
}
/* PAGE HEADER */
.esh-page-header {
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    padding: 90px 0;
    color: #ffffff;
    text-align: center;
}

.esh-page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
}

.esh-page-header p {
    font-size: 17px;
    color: #eaf1ff;
}

/* CONTACT SECTION */
.esh-contact {
    padding: 95px 0;
    background: #f9fbff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

/* CONTACT INFO */
.contact-info h2,
.contact-form h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #5a6782;
    margin-bottom: 18px;
}

.contact-details {
    margin-top: 25px;
}

.contact-call {
    display: inline-block;
    margin: 10px 0 15px;
    font-size: 22px;
    font-weight: 800;
    color: #1a73e8;
    text-decoration: none;
}

.contact-call:hover {
    text-decoration: underline;
}

.support-note {
    font-size: 14.5px;
    color: #5a6782;
}

/* FORM */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(26, 115, 232, 0.12);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a2b49;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #dce6ff;
    font-size: 14.5px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1a73e8;
}

/* SUBMIT BUTTON */
.contact-submit {
    width: 100%;
    padding: 15px;
    border-radius: 40px;
    border: none;
    background: #1a73e8;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.25s ease;
}

.contact-submit:hover {
    background: #1557b0;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .esh-page-header h1 {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .esh-page-header h1 {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px;
    }
}
