body {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}

:root {
    --green: #306a30;
    --grey: #f0eeec;
    --yellow: #ffb11e;
    --orange: #ff921e;
    --dark: #020202;
}
html,
body {
    height: 100%;
}
header {
    z-index: 50;
    position: fixed;
    top: 0;
    width: 100%;
}
header::before {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    content: "";
    z-index: -1;
    position: absolute;
    left: 0;
    top: -20px;
    width: 100%;
    height: calc(100% + 20px);
    background: var(--green);
}
#homePage header::before {
    top: -150px;
}

#homePage.scrolled header::before {
    top: -20px;
}

/* =========SECTIONS ============ */

.bgYellow {
    background: var(--yellow);
}
.bgYellow h2 {
    color: var(--dark);
}

.bgGreen {
    background: var(--green);
}
.bgGrey {
    background: var(--grey);
}
.bgWhite {
    background: #fff;
}
.bgImage {
    background: url("../images/background-desktop.jpg") no-repeat center / cover;
    color: #fff;
}
.bgImage::after {
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #108149;
    mix-blend-mode: multiply;
}
.bgImage h2 {
    color: #fff;
}

.pageHero {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    color: #fff;
    background: url("../images/background-mobile.jpg") no-repeat center / cover;
}
.pageHero::after {
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #108149;
    mix-blend-mode: multiply;
}
.pageHeroContent {
    z-index: 10;
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

@media screen and (min-width: 481px) {
    .pageHero {
        background: url("../images/background-desktop.jpg") no-repeat center / cover;
    }
}
main {
    z-index: 10;
    position: relative;
    background: #fff;
    padding-top: 100px;
}
#homePage main {
    padding-top: 0;
}
#homePage main,
#homePage footer {
    top: 100%;
}

/* === animated headings ====== */

/* Base style for elements you want to reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    /* This controls the "smoothness" and "time" */
    transition:
        opacity 0.8s ease-out,
        transform 0.8s ease-out;
    will-change: opacity, transform; /* Performance optimization */
}

/* The state triggered by JS */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.revealUp {
    transform: translateY(60px);
}
.revealUp.active {
    transform: translateY(0);
}
.revealLeft {
    opacity: 0;
    transform: translatex(-100px);
    /* This controls the "smoothness" and "time" */
    transition:
        opacity 0.8s ease-out,
        transform 0.8s ease-out;
    will-change: opacity, transform; /* Performance optimization */
}
.revealLeft.active {
    opacity: 1;
    transform: translateX(0);
}

.revealRight {
    opacity: 0;
    transform: translatex(100px);
    /* This controls the "smoothness" and "time" */
    transition:
        opacity 0.8s ease-out,
        transform 0.8s ease-out;
    will-change: opacity, transform; /* Performance optimization */
}
.revealRight.active {
    opacity: 1;
    transform: translateX(0);
}

.delay01 {
    transition-delay: 0.1s;
}
.delay02 {
    transition-delay: 0.2s;
}
.delay03 {
    transition-delay: 0.3s;
}
.delay04 {
    transition-delay: 0.4s;
}
.delay05 {
    transition-delay: 0.5s;
}
.delay06 {
    transition-delay: 0.6s;
}

/* === animated headings ====== */

/* ====== TABLES ======= */

.dataTable {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.dataTable th,
.dataTable td {
    padding: 6px;
    font-size: 0.8rem;
    vertical-align: middle;
    border: solid 1px var(--yellow);
}
.dataTable th {
    background: var(--green);
    color: #fff;
    font-weight: 400;
}
.dataTable td {
    background: #fff;
}
.dataTable th:first-child,
.dataTable td:first-child {
    text-align: left;
}

.mobileTableContainer {
    overflow-x: auto;
}

@media screen and (min-width: 768px) {
    .dataTable th,
    .dataTable td {
        padding: 12px;
        font-size: 1rem;
    }

    .dataTable td:last-child {
        font-size: 1.8rem;
    }
}
/* ====== FORMS ========= */

/* Form container - strictly one column */
.contact-form {
    width: 100%;
    padding-top: 40px;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form .field-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    text-align: left;
    font-size: 1rem;
    color: var(--dark);
}

/* Field styling with your specific border and radius */
.contact-form input,
textarea {
    padding: 10px;
    border: 1px solid #dee2e6; /* Subtle grey border */
    border-radius: 5px; /* 5px rounded corners */
    font-size: 1rem;
    font-family: "Ubuntu", sans-serif;
    outline: none;
    width: 100%;
}

/* Subtle focus effect so users know where they are typing */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #adb5bd;
}

/* ==== images ===== */

.liftImage {
    position: relative;
    top: -80px;
    margin: 0 auto;
    display: block;
}
/* ========= TYPE ============ */

h1 {
    font-size: 2.2rem;
    font-weight: 700;
}
h2 {
    font-size: 1.9rem;
    color: var(--green);
    font-weight: 700;
}
h3 {
    font-size: 1.2rem;
    line-height: 150%;
}
p {
    font-size: 1rem;
    line-height: 150%;
}
.smallPrint {
    font-size: 0.8em;
}
a {
    color: inherit;
}
.checkList {
    text-align: left;
    padding-left: 24px;
}
.checkList li {
    list-style-image: url("../images/check.svg");
    padding-left: 6px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 130%;
}
.iconsWhite li img {
    background: #fff;
    border: 5px solid var(--yellow);
    padding: 6px;
}

.bgGrey .checkList li {
    list-style-image: url("../images/check-green.svg");
}

/* --- burger menu ======== */

@media screen and (max-width: 767px) {
    .desktop-menu {
        display: none;
    }

    .burger-menu {
        position: fixed;
        top: 30px;
        right: 30px;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 9999; /* Keeps it on top of other content */
        padding: 0;
    }

    /* Style the individual burger lines */
    .burger-menu .line {
        display: block;
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: var(--yellow);
        border-radius: 3px;
        opacity: 1;
        left: 0;
        /* The cubic-bezier adds a slightly bouncy, extremely smooth effect */
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    /* Initial vertical positions for the three lines */
    .burger-menu .line:nth-child(1) {
        top: 0px;
    }
    .burger-menu .line:nth-child(2) {
        top: 10px;
    }
    .burger-menu .line:nth-child(3) {
        top: 20px;
    }

    /* ANIMATION STATES 
      Triggered when 'menu-open' is added to the body tag 
    */

    /* Top line rotates down to form the first half of the X */
    body.menu-open .burger-menu .line:nth-child(1) {
        top: 10px;
        transform: rotate(45deg);
    }

    /* Middle line fades out and slides right */
    body.menu-open .burger-menu .line:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    /* Bottom line rotates up to form the second half of the X */
    body.menu-open .burger-menu .line:nth-child(3) {
        top: 10px;
        transform: rotate(-45deg);
    }

    /* Prevent scrolling on the main page when the menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Full Screen Overlay Base State */
    .fullscreen-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--dark); /* Dark background for contrast */
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9998; /* Just below the burger button (9999) */

        /* Hidden by default */
        opacity: 0;
        visibility: hidden;

        /* Slide slightly up when closed for a nice reveal effect */
        transform: translateY(-20px);

        /* Ultra-smooth bezier curve for the fade and slide */
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Open State for the Overlay */
    body.menu-open .fullscreen-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Reset list styles */
    .fullscreen-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    /* Style the list items */
    .fullscreen-menu li {
        margin: 20px 0;
    }

    /* Style the links */
    .fullscreen-menu a {
        color: #fff;
        text-decoration: none;
        font-size: 2rem;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    /* Hover effect on links */
    .fullscreen-menu a:hover {
        color: var(--yellow); /* Accent color */
    }
}

@media screen and (min-width: 768px) {
    .burger-menu {
        display: none;
    }

    .fullscreen-menu {
        display: none;
    }
    .desktop-menu ul {
        display: flex;
    }
    .desktop-menu li a {
        color: #fff;
        text-decoration: none;
        padding: 6px 12px;
    }
    .desktop-menu li a.active,
    .desktop-menu li a:hover {
        color: var(--yellow);
    }
}

/* ========= MISC ============ */

.logo {
    width: 120px;
}

.btn {
    background-color: var(--yellow);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    width: 100%;
    display: block;
    font-size: 1em;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    color: var(--dark);
}
.icon {
    background: var(--green);
    margin-bottom: 10px;
    object-fit: scale-down;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 12px;
}
.btn:hover {
    background: var(--orange);
}
@media screen and (min-width: 481px) {
    .btn {
        display: inline-block;
        width: auto;
    }
}
/* ========= REG NUMBER FORM ============ */

.regNumber {
    position: relative;
}
.regNumber img {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 300px;
}
.regNumber input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    padding: 0 10px 2px 40px;
    border: none;
    width: 100%;
    height: 100%;
    background: none;
}
.regNumber input::placeholder {
    color: var(--dark);
}

/* ===== footer ========= */
.socialLinks {
    display: flex;
}
.socialLinks a {
    padding: 10px;
}
footer {
    z-index: 10;
    background: var(--green);
    position: relative;
    color: #fff;
}
footer li a {
    padding: 8px;
    display: block;
    text-decoration: none;
}
footer li a.active,
footer li a:hover {
    color: var(--yellow);
}
/*Altaf*/
#interiorPage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}
.text-content p {
    margin: 0 0 10px;
}