/* ==================================================
   NEXGEN ENQUIRY PAGE
   Logo Theme: Blue, Sky Blue, Green and Lime
================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap");


/* ==================================================
   Theme Colours
================================================== */

:root {
    --navy-blue: #003b73;
    --deep-blue: #0059a8;
    --primary-blue: #138ac8;
    --sky-blue: #45c3e9;

    --dark-green: #007f68;
    --primary-green: #18a875;
    --light-green: #78c63d;
    --lime-green: #acd532;

    --dark-heading: #062e4f;
    --text-color: #536474;
    --white: #ffffff;
    --soft-background: #f5fbff;
    --light-blue-background: #eaf7fd;
    --light-green-background: #eff9e8;
    --border-color: #dceaf1;

    --gradient-main: linear-gradient(
        135deg,
        #0059a8 0%,
        #20a9d6 45%,
        #18a875 72%,
        #acd532 100%
    );

    --gradient-blue: linear-gradient(
        135deg,
        #003b73,
        #138ac8,
        #45c3e9
    );

    --gradient-green: linear-gradient(
        135deg,
        #007f68,
        #18a875,
        #acd532
    );

    --shadow-light: 0 15px 40px rgba(0, 89, 168, 0.10);
    --shadow-medium: 0 20px 55px rgba(0, 89, 168, 0.16);
}


/* ==================================================
   General Reset
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-color);
    background: var(--white);
    line-height: 1.7;
}

h1,
h2,
h3 {
    font-family: "Poppins", sans-serif;
    color: var(--dark-heading);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font-family: "Inter", sans-serif;
}


/* ==================================================
   Header
================================================== */

.main-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 89, 168, 0.10);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 22px rgba(0, 89, 168, 0.06);
}

.header-container {
    width: 90%;
    max-width: 1250px;
    min-height: 88px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-box {
    display: flex;
    align-items: center;
}

.logo-box img {
    width: 180px;
    height: auto;
    display: block;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 34px;
}

.navbar a {
    color: var(--dark-heading);
    font-size: 15px;
    font-weight: 700;
    position: relative;
    transition: 0.3s ease;
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 20px;
    background: var(--gradient-main);
    transition: 0.3s ease;
}

.navbar a:hover {
    color: var(--primary-blue);
}

.navbar a:hover::after {
    width: 100%;
}

.header-call-btn {
    padding: 13px 22px;
    border-radius: 9px;
    background: var(--gradient-main);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 10px 24px rgba(0, 89, 168, 0.20);
    transition: 0.3s ease;
}

.header-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(0, 127, 104, 0.26);
}


/* ==================================================
   Hero Section
================================================== */

.enquiry-hero {
    min-height: 440px;
    padding: 95px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(69, 195, 233, 0.32),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 25%,
            rgba(172, 213, 50, 0.28),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #002f5c 0%,
            #005fa9 40%,
            #008f84 72%,
            #65b93c 100%
        );
}

.enquiry-hero::before {
    content: "";
    position: absolute;
    width: 370px;
    height: 370px;
    border-radius: 50%;
    border: 55px solid rgba(255, 255, 255, 0.06);
    left: -170px;
    top: -170px;
}

.enquiry-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    right: -120px;
    bottom: -150px;
}

.hero-content {
    max-width: 860px;
    position: relative;
    z-index: 2;
}

.hero-small-title {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #dffbff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.12;
    margin-bottom: 18px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-content p {
    max-width: 700px;
    margin: 0 auto 23px;
    color: #e8f8ff;
    font-size: 17px;
}

.hero-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    color: #ddf6f4;
    font-size: 14px;
}

.hero-links a {
    color: var(--white);
    font-weight: 700;
}

.hero-links a:hover {
    color: var(--lime-green);
}


/* ==================================================
   Main Enquiry Section
================================================== */

.enquiry-section {
    padding: 100px 0;
    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(69, 195, 233, 0.09),
            transparent 28%
        ),
        radial-gradient(
            circle at 95% 90%,
            rgba(172, 213, 50, 0.10),
            transparent 30%
        ),
        var(--soft-background);
}

.enquiry-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.85fr 1.25fr;
    gap: 48px;
    align-items: start;
}


/* ==================================================
   Section Headings
================================================== */

.section-label {
    display: inline-block;
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 11px;
}

.company-info h2,
.form-heading h2 {
    color: var(--dark-heading);
    font-size: clamp(29px, 4vw, 42px);
    line-height: 1.25;
    margin-bottom: 16px;
}

.company-description {
    font-size: 15px;
    margin-bottom: 32px;
}


/* ==================================================
   Contact Information Cards
================================================== */

.company-info {
    padding: 10px 0;
}

.contact-card {
    padding: 18px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 7px 22px rgba(0, 89, 168, 0.05);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateX(7px);
    border-color: rgba(24, 168, 117, 0.42);
    box-shadow: var(--shadow-light);
}

.contact-icon {
    min-width: 54px;
    width: 54px;
    height: 54px;
    border-radius: 13px;
    background: var(--gradient-main);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 89, 168, 0.16);
}

.contact-content h3 {
    color: var(--dark-heading);
    font-size: 15px;
    margin-bottom: 3px;
}

.contact-content a,
.contact-content p {
    color: #617080;
    font-size: 14px;
    word-break: break-word;
}

.contact-content a:hover {
    color: var(--primary-green);
}


/* ==================================================
   WhatsApp Contact Box
================================================== */

.quick-contact {
    margin-top: 27px;
    padding: 29px;
    color: var(--white);
    background:
        radial-gradient(
            circle at top right,
            rgba(172, 213, 50, 0.32),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #003b73,
            #006c95,
            #00896f
        );
    border-radius: 17px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.quick-contact::before {
    content: "";
    position: absolute;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    border: 30px solid rgba(255, 255, 255, 0.06);
    right: -55px;
    bottom: -65px;
}

.quick-contact h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 7px;
    position: relative;
    z-index: 2;
}

.quick-contact p {
    color: #dff8f4;
    font-size: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.whatsapp-btn {
    width: fit-content;
    padding: 12px 19px;
    border-radius: 8px;
    background: #25d366;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 9px;
    position: relative;
    z-index: 2;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    background: #20b95a;
    box-shadow: 0 11px 24px rgba(37, 211, 102, 0.30);
}


/* ==================================================
   Form Container
================================================== */

.form-wrapper {
    background: rgba(255, 255, 255, 0.96);
    padding: 44px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 89, 168, 0.08);
}

.form-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-main);
}

.form-wrapper::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(69, 195, 233, 0.07);
    right: -85px;
    top: -85px;
    pointer-events: none;
}

.form-heading {
    margin-bottom: 31px;
    position: relative;
    z-index: 2;
}

.form-heading h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.form-heading p {
    font-size: 14px;
}

.enquiry-form {
    width: 100%;
    position: relative;
    z-index: 2;
}


/* ==================================================
   Form Fields
================================================== */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 21px;
}

.form-group label {
    display: block;
    color: var(--dark-heading);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group label span {
    color: var(--primary-green);
}

.input-box {
    min-height: 56px;
    border: 1px solid #d7e7ee;
    border-radius: 11px;
    background: #fbfdfe;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: 0.3s ease;
}

.input-box:hover {
    border-color: rgba(19, 138, 200, 0.45);
}

.input-box:focus-within {
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(69, 195, 233, 0.14);
}

.input-box i {
    width: 54px;
    color: var(--primary-blue);
    text-align: center;
    font-size: 16px;
}

.input-box input,
.input-box select,
.input-box textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #304456;
    font-size: 14px;
    padding: 16px 16px 16px 0;
}

.input-box select {
    cursor: pointer;
}

.input-box input::placeholder,
.input-box textarea::placeholder {
    color: #91a1ae;
}

.textarea-box {
    align-items: flex-start;
}

.textarea-box i {
    padding-top: 20px;
}

.textarea-box textarea {
    min-height: 140px;
    resize: vertical;
}


/* ==================================================
   Privacy Checkbox
================================================== */

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 3px 0 23px;
}

.privacy-check input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--primary-green);
    cursor: pointer;
}

.privacy-check label {
    color: #657585;
    font-size: 13px;
    cursor: pointer;
}


/* ==================================================
   Submit Button
================================================== */

.submit-btn {
    width: 100%;
    min-height: 59px;
    border: none;
    border-radius: 11px;
    background: var(--gradient-main);
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 14px 30px rgba(0, 89, 168, 0.22);
    transition: 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(0, 127, 104, 0.29);
}

.submit-btn i {
    transition: 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(6px);
}

.form-note {
    margin-top: 17px;
    text-align: center;
    color: #7d8d99;
    font-size: 12px;
}

.form-note i {
    color: var(--primary-green);
    margin-right: 5px;
}


/* ==================================================
   Services Strip
================================================== */

.services-strip {
    padding: 30px 0;
    background: var(--gradient-main);
}

.services-strip-container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.strip-item {
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.strip-item i {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-green);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}


/* ==================================================
   Footer
================================================== */

.footer {
    background:
        radial-gradient(
            circle at top right,
            rgba(24, 168, 117, 0.15),
            transparent 25%
        ),
        #032c4b;
    color: #c8dce8;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 68px 0 47px;
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1fr;
    gap: 55px;
}

.footer-logo {
    width: 185px;
    margin-bottom: 18px;
    background: var(--white);
    padding: 9px;
    border-radius: 9px;
}

.footer-about p {
    max-width: 450px;
    font-size: 14px;
    color: #c4d5df;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #c4d5df;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--lime-green);
    padding-left: 6px;
}

.footer-contact p {
    font-size: 14px;
    color: #c4d5df;
}

.footer-contact i {
    width: 25px;
    color: var(--sky-blue);
}

.footer-bottom {
    padding: 19px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 13px;
    color: #b7ccd8;
}


/* ==================================================
   Floating WhatsApp Button
================================================== */

.floating-whatsapp {
    width: 59px;
    height: 59px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
    border: 4px solid var(--white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.07);
}

@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.45),
            0 12px 30px rgba(0, 0, 0, 0.24);
    }

    70% {
        box-shadow:
            0 0 0 15px rgba(37, 211, 102, 0),
            0 12px 30px rgba(0, 0, 0, 0.24);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0),
            0 12px 30px rgba(0, 0, 0, 0.24);
    }

}


/* ==================================================
   Tablet Responsive
================================================== */

@media screen and (max-width: 992px) {

    .navbar {
        display: none;
    }

    .enquiry-container {
        grid-template-columns: 1fr;
    }

    .company-info {
        max-width: 720px;
    }

    .services-strip-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

}


/* ==================================================
   Mobile Responsive
================================================== */

@media screen and (max-width: 650px) {

    .header-container {
        width: 92%;
        min-height: 74px;
    }

    .logo-box img {
        width: 140px;
    }

    .header-call-btn {
        padding: 10px 14px;
        font-size: 12px;
    }

    .header-call-btn i {
        display: none;
    }

    .enquiry-hero {
        min-height: 360px;
        padding: 72px 18px;
    }

    .hero-content h1 {
        font-size: 39px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .enquiry-section {
        padding: 65px 0;
    }

    .enquiry-container {
        width: 92%;
        gap: 36px;
    }

    .company-info h2 {
        font-size: 30px;
    }

    .form-wrapper {
        padding: 29px 19px;
        border-radius: 15px;
    }

    .form-heading h2 {
        font-size: 27px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-card {
        padding: 15px;
    }

    .contact-icon {
        min-width: 47px;
        width: 47px;
        height: 47px;
        font-size: 18px;
    }

    .quick-contact {
        padding: 24px 20px;
    }

    .services-strip-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .strip-item {
        justify-content: flex-start;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-about {
        grid-column: auto;
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
        font-size: 26px;
    }

}
@media screen and (max-width: 768px) {

    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .navbar {
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .header-call-btn {
        width: 100%;
        justify-content: center;
    }

    .enquiry-hero {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .enquiry-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .company-info,
    .form-wrapper {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        width: 100%;
    }

    .services-strip-container {
        flex-direction: column;
        gap: 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {

    .hero-content h1 {
        font-size: 28px;
    }

    .form-wrapper {
        padding: 25px 18px;
    }

    input,
    select,
    textarea,
    button {
        font-size: 16px;
    }

    .contact-card {
        padding: 16px;
    }
}