/* =============================
   MOM PL HEADER STYLING
============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* =============================
   UPDATED HEADER THEME (BLACK + GOLD)
============================= */

:root {
    --primary-yellow: #d30000;
    --primary-yellow-dark: #7c0a02;

    --black-main: #bdb7ab;
    --black-light: #d9dddc;

    --white: #000000;
}

/* HEADER */
.main-header {
    background: var(--black-main);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* LOGO */
.logo img {
    height: 80px;
}

/* NAVBAR */
.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* NAV LINKS */
.nav-box {
    background: transparent;
    color: var(--white);
    text-decoration: none;

    padding: 6px 16px;
    border-radius: 6px;

    font-weight: 600;
    font-size: 16px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    transition: 0.3s ease;
}

/* HOVER */
.nav-box:hover {
    color: var(--primary-yellow);
    border-bottom: 2px solid var(--primary-yellow);
}

/* ACTIVE */
.nav-box.active {
    color: var(--primary-yellow);
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--black-light);
    list-style: none;
    padding: 10px 0;
    border-radius: 6px;
    min-width: 180px;

    display: none;
    z-index: 9999;
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

/* DROPDOWN ITEMS */
.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: var(--primary-yellow);
    color: #000;
}

/* CTA BUTTON */
.header-cta .cta-btn {
    background: var(--primary-yellow);
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.header-cta .cta-btn:hover {
    background: var(--primary-yellow-dark);
}

/* PLUS ICON */
.plus-icon {
    margin-left: 8px;
    color: var(--white);
    transition: 0.3s ease;
    font-size: 18px;
    font-weight: 600;
}

.dropdown:hover .plus-icon {
    transform: rotate(45deg);
    color: var(--primary-yellow);
}

/* BODY OFFSET */
body {
    padding-top: 110px;
}
/* =====================
   SLIDER
===================== */

/* =====================
   SLIDER (UPDATED THEME)
===================== */

.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
}

/* ARROWS */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    /* 🔥 changed from red → golden */
    background: rgba(250, 204, 21, 0.9);
    
    color: #000;
    border: none;
    font-size: 22px;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}

.prev { left: 20px; }
.next { right: 20px; }

/* 🔥 hover = premium dark */
.prev:hover, .next:hover {
    background: #0f172a;
    color: #fff;
}

/* DOTS */
.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    
    /* 🔥 softer white */
    background: #cbd5e1;
    
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

/* ACTIVE DOT = GOLD */
.dot.active {
    background: #facc15;
}

/* ===============================
   FIXED HEADER
================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Prevent content hiding behind fixed header */
body {
    padding-top: 110px;
}

/* ===============================
   HAMBURGER MENU
================================ */

.menu-toggle {
    display: none;
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
}

/* ===============================
   MOBILE VIEW
================================ */

@media (max-width: 768px) {

    body {
        padding-top: 90px;
    }

    .main-header {
        padding: 10px 20px;
    }

    .logo img {
        height: 60px;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
    }

    /* Hide normal nav initially */
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--mom-red);
        display: none;
        padding: 20px 0;
    }

    .navbar.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .nav-box {
        width: 200px;
        justify-content: center;
    }

    /* Dropdown for mobile */
    .dropdown-menu {
        position: static;
        background: #ffffff;
        margin-top: 8px;
        display: none;
        width: 200px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* CTA button */
    .header-cta {
        display: none;
    }

    /* Slider responsive */
    .slider-container {
        height: 300px;
    }

    .slide img {
        height: 300px;
    }
}

/* =========================
   MODERN HOME ABOUT SECTION
========================= */

/* =========================
   ABOUT SECTION (BALANCED SIZE)
========================= */

.home-about {
    padding: 80px 60px;
    background: #f8fafc;
}

.about-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;   /* 🔥 slightly bigger */
    margin: auto;
}

/* LEFT BOX */
.about-left {
    flex: 1;
    max-width: 550px;   /* 🔥 increased */
    height: 420px;      /* 🔥 increased height */
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transform: translateX(-80px);
    opacity: 0;
    transition: 0.7s ease;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT BOX */
.about-right {
    flex: 1;
    max-width: 550px;
    background: #ffffff;
    padding: 40px;   /* 🔥 increased padding */
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transform: translateX(80px);
    opacity: 0;
    transition: 0.7s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* SHOW */
.about-left.show,
.about-right.show {
    transform: translateX(0);
    opacity: 1;
}

/* TEXT */
.about-small {
    color: #facc15;
    font-weight: 600;
    font-size: 14px;
}

.about-right h2 {
    font-size: 26px;   /* 🔥 bigger heading */
    margin: 15px 0 25px;
    color: #0f172a;
}

/* POINTS */
.about-point {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.about-point span {
    font-size: 20px;
    color: #facc15;
}

.about-point h4 {
    font-size: 15px;
}

.about-point p {
    font-size: 14px;
    color: #555;
}

/* BUTTON */
.about-btn {
    margin-top: 20px;
    background: #facc15;
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.about-btn:hover {
    background: #eab308;
}
@media (max-width: 768px) {

    .home-about {
        padding: 60px 20px;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .about-right {
        padding: 30px;
    }

    .about-right h2 {
        font-size: 20px;
    }
}

/* =========================
        OUR OFFERINGS (UPDATED)
========================= */

.our-offerings {
    padding: 80px 60px;
    background: #f8fafc;
}

/* HEADING */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading span {
    color: #facc15; /* gold */
    font-weight: 600;
    font-size: 16px;
}

.section-heading h2 {
    font-size: 28px;
    margin-top: 8px;
    color: #0f172a;
}

/* GRID */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* 🔥 reduced gap */
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.offer-card {
    background: #ffffff;
    padding: 25px 22px;   /* 🔥 smaller */
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

/* TOP LINE */
.offer-card::before {
    content: "";
    display: block;
    height: 3px;
    width: 40px;
    background: #facc15;
    margin-bottom: 15px;
    border-radius: 2px;
}

/* HOVER */
.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(250,204,21,0.2);
}

/* ICON */
.offer-icon {
    width: 55px;
    height: 55px;
    border: 1.5px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* ICON HOVER */
.offer-card:hover .offer-icon {
    border-color: #facc15;
    background: #fef9c3;
}

/* TITLE */
.offer-card h3 {
    margin-bottom: 10px;
    font-size: 17px;
    color: #0f172a;
}

/* TEXT */
.offer-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .offerings-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
        COUNTER SECTION
========================= */

.counter-section {
    background: #0f172a; /* 🔥 dark premium */
    padding: 80px 60px;
}

.counter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.counter-box {
    flex: 1;
    position: relative;
}

/* Vertical Divider */
.counter-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.3);
}

/* 🔥 highlight numbers */
.counter-box h2 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #facc15; /* GOLD */
}

.counter-box p {
    font-size: 16px;
    color: #e2e8f0;
}

/* =========================
        OUR PRODUCTS
========================= */

.our-products {
    padding: 80px 60px;
    background: #f8fafc; /* light clean */
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* PRODUCT CARD */
.product-card {
    width: 400px;
    background: #ffffff; /* cleaner than grey */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(250,204,21,0.2); /* 🔥 gold glow */
}

/* IMAGE */
.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* CONTENT */
.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
}

.product-content p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

/* BUTTON */
.product-btn {
    display: inline-block;
    background: #facc15; /* GOLD */
    color: #000;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: 0.3s ease;
}

.product-btn:hover {
    background: #eab308;
    transform: scale(1.05);
}
@media (max-width: 768px) {

    .our-products {
        padding: 50px 20px;
    }

    .products-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 100%;
        max-width: 350px;
    }

    .product-image {
        height: 220px;
    }

    .product-content h3 {
        font-size: 18px;
    }
}

/* =========================
        OUR MANAGEMENT
========================= */

.our-management {
    padding: 100px 80px;
    background: #f8fafc; /* light clean */
}

.management-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* CARD */
.management-card {
    width: 380px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.management-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(250,204,21,0.2); /* GOLD */
}

/* IMAGE */
.management-img {
    height: 360px;
    overflow: hidden;
}

.management-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* CONTENT PANEL (was red) */
.management-content {
    background: #0f172a; /* 🔥 dark premium instead of red */
    padding: 30px;
    color: #ffffff;
    flex: 1;
}

.management-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.management-content h4 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
    color: #facc15; /* GOLD highlight */
}

.management-content p {
    font-size: 13px;
    line-height: 1.6;
    color: #e2e8f0;
}

/* =========================
        CERTIFICATES
========================= */

.certificates-section {
    padding: 100px 100px;
    background: #f8fafc;
    overflow: hidden;
}

.certificates-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.certificates-slider {
    overflow: hidden;
    width: 90%;
}

.certificates-track {
    display: flex;
    gap: 80px;
    animation: scrollCertificates 20s linear infinite;
}

/* BOX */
.certificate-item{
    background:#ffffff;
    padding:25px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.3s ease;
}

.certificate-item img{
    max-width:150px;
    height:auto;
    object-fit:contain;
}

/* GOLD HOVER */
.certificate-item:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(250,204,21,0.25);
}

/* BUTTON */
.cert-btn {
    background: #facc15; /* GOLD */
    color: #000;
    border: none;
    font-size: 22px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 2;
}

.cert-btn:hover {
    background: #eab308;
}

/* =========================
        GALLERY
========================= */

.gallery-section {
    padding: 100px 60px;
    background: #f8fafc;
    overflow: hidden;
}

.gallery-slider {
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 40px;
    animation: scrollGallery 20s linear infinite;
}

.gallery-item {
    flex: 0 0 50%;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    transition: 0.3s ease;
}

/* GOLD GLOW */
.gallery-item img:hover {
    box-shadow: 0 0 25px rgba(250,204,21,0.4);
    transform: scale(1.02);
}
/* =========================
        MOBILE VIEW FIX
========================= */

@media (max-width: 768px) {

    /* ===== MANAGEMENT ===== */
    .our-management {
        padding: 60px 20px;
    }

    .management-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .management-card {
        width: 100%;
        max-width: 320px; /* 🔥 controlled width */
    }

    .management-img {
        height: 240px; /* 🔥 reduced height */
    }

    .management-content {
        padding: 20px;
        text-align: center;
    }

    .management-content h3 {
        font-size: 18px;
    }

    .management-content h4 {
        font-size: 13px;
    }

    .management-content p {
        font-size: 12px;
    }

    /* ===== CERTIFICATES ===== */
    .certificates-section {
        padding: 60px 20px;
    }

    .certificates-slider {
        width: 100%;
    }

    .certificates-track {
        gap: 30px;
        animation: scrollCertificates 15s linear infinite;
    }

    .certificate-item {
        width: 120px;
        height: 120px;
        padding: 15px;
    }

    .certificate-item img {
        max-width: 100px;
    }

    .cert-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    /* ===== GALLERY ===== */
    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-track {
        gap: 20px;
        animation: scrollGallery 15s linear infinite;
    }

    .gallery-item {
        flex: 0 0 100%; /* 🔥 full width */
    }

    .gallery-item img {
        height: 240px;
        border-radius: 16px;
    }
}


/* =========================
        FOOTER
========================= */

/* =========================
        FOOTER (UPDATED)
========================= */

.main-footer {
    background: #0f172a; /* 🔥 dark premium */
    color: #ffffff;
    padding-top: 70px;
}

/* TOP GRID */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 0 80px 60px;
    align-items: start;
}

/* LOGO */
.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.footer-social img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(250,204,21,0.6); /* GOLD glow */
}

/* TEXT */
.footer-col h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #facc15; /* GOLD headings */
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #cbd5e1;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    padding-left: 6px;
    color: #facc15; /* GOLD hover */
}

/* BOTTOM STRIP */
.footer-bottom {
    background: #020617; /* darker strip */
    padding: 18px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* LEFT LINKS */
.footer-bottom-left a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom-left a:hover {
    color: #facc15;
}

/* RIGHT BUTTON */
.footer-bottom-right a {
    background: #facc15;
    padding: 6px 14px;
    border-radius: 6px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-bottom-right a:hover {
    background: #eab308;
}

/* GENERAL LINKS */
.footer-col a {
    color: #e2e8f0;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-col a:hover {
    color: #facc15;
}

/* =========================
        MOBILE VIEW
========================= */

@media (max-width: 992px) {

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 30px 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 600px) {

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        margin: auto;
    }
}
@media (max-width: 600px) {

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

    .footer-logo {
        width: 130px;
    }
}


/* =========================
        ENQUIRY MODAL
========================= */
/* ================= ENQUIRY MODAL ================= */

.enquiry-modal {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.7); /* 🔥 premium dark overlay */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.enquiry-modal.active {
    display: flex;
}

/* BOX */
.enquiry-content {
    background: #ffffff;
    width: 420px;
    max-width: 90%;
    padding: 25px;
    border-radius: 16px;
    position: relative;
    animation: popup 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* POPUP ANIMATION */
@keyframes popup {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* CLOSE */
.enquiry-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    cursor: pointer;
    color: #0f172a;
    transition: 0.3s;
}

.enquiry-close:hover {
    color: #facc15;
}

/* LOGO */
.enquiry-logo {
    text-align: center;
    margin-bottom: 10px;
}

.enquiry-logo img {
    width: 50px;
    height: 50px;
}

/* HEADING */
.enquiry-content h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #0f172a;
    font-size: 20px;
}

/* FORM */
.enquiry-content form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* INPUTS */
.enquiry-content input,
.enquiry-content textarea,
.enquiry-content select {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    outline: none;
    font-size: 13px;
    background: #fff;
    transition: 0.3s;
}

/* TEXTAREA */
.enquiry-content textarea {
    height: 80px;
    resize: none;
}

/* FOCUS */
.enquiry-content input:focus,
.enquiry-content textarea:focus,
.enquiry-content select:focus {
    border-color: #facc15;
    box-shadow: 0 0 6px rgba(250,204,21,0.3);
}

/* BUTTON */
.enquiry-content button {
    margin-top: 8px;
    padding: 12px;
    border-radius: 25px;
    border: none;
    background: #facc15;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.enquiry-content button:hover {
    background: #eab308;
}

/* ================= CAPTCHA (PREMIUM FIX) ================= */

.captcha-box {
    margin-top: 10px;
}

/* ROW ALIGNMENT */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* CAPTCHA TEXT BOX */
.captcha-text {
    background: #f8fafc;
    border: 1px dashed #e2e8f0;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #0f172a;
    user-select: none;
    min-width: 110px;
    text-align: center;
}

/* REFRESH BUTTON */
.captcha-refresh {
    background: #facc15;
    border: none;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease;
}

.captcha-refresh:hover {
    background: #eab308;
}

/* INPUT */
.captcha-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

/* FOCUS */
.captcha-input:focus {
    border-color: #facc15;
    box-shadow: 0 0 6px rgba(250,204,21,0.3);
}

.captcha-text {
    font-family: monospace;
    transform: skew(-5deg);
}
/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .enquiry-content {
        width: 95%;
        padding: 20px;
        border-radius: 14px;
    }

    .enquiry-content h2 {
        font-size: 18px;
    }

    .enquiry-content input,
    .enquiry-content textarea,
    .enquiry-content select {
        font-size: 12px;
        padding: 9px 12px;
    }

    .enquiry-content button {
        width: 100%;
        text-align: center;
    }

    .enquiry-content textarea {
        height: 70px;
    }
}