/* easydeliveryservice.com.au -- reconstructed stylesheet.
   The original css/style.css was never archived (0 of 46 assets captured), so
   this is authored against the archived markup: every selector below exists in
   the 2024 index.html and nothing here changes the page content. */

:root {
    --red: #e4322b;
    --red-dark: #c2261f;
    --navy: #17293b;
    --navy-soft: #223b52;
    --ink: #2c3e50;
    --muted: #6c7a89;
    --line: #e3e8ee;
    --soft: #f5f7fa;
    --white: #ffffff;
    --shadow: 0 14px 40px rgba(23, 41, 59, 0.10);
    --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { border: 0; }
.img_fluid, .img_flui { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--red-dark); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; color: var(--navy); font-weight: 700; line-height: 1.25; }
p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

.self_container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- LOADER ---------- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader.is_hidden { opacity: 0; visibility: hidden; }

.loader_circle {
    width: 54px;
    height: 54px;
    border: 4px solid var(--line);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: eds_spin 0.9s linear infinite;
}

@keyframes eds_spin { to { transform: rotate(360deg); } }

/* ---------- SHARED ---------- */
.title_box span {
    display: block;
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title_box h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.title_box img { margin: 0 0 18px; }
.title_box.center { text-align: center; }
.title_box.center img { margin-left: auto; margin-right: auto; }
.title_box.center .description { max-width: 760px; margin: 0 auto; }
.title_box.white h2,
.title_box.white h2 a { color: var(--white); }
.title_box.white span { color: #ffd8d6; }
.title_box.white .description { color: rgba(255, 255, 255, 0.88); }

.description { color: var(--muted); }

.btn_holder { margin-top: 26px; }

.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 40px;
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.4px;
    border: 0;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn:hover {
    color: var(--white);
    background: var(--navy-soft);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(23, 41, 59, 0.28);
}

.btn_red { background: var(--red); }
.btn_red:hover { background: var(--red-dark); box-shadow: 0 10px 24px rgba(228, 50, 43, 0.34); }

.hov_item { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hov_item:hover { transform: translateY(-6px); }

/* ---------- HEADER ---------- */
.header_section {
    position: relative;
    z-index: 900;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.header_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
    flex-wrap: wrap;
}

.header_logo img { max-height: 58px; width: auto; }

.header_contact ul {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.header_contact li a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
}

.header_contact li a:hover { color: var(--red); }
.header_contact img { width: 18px; height: 18px; }

.header_menu_box {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    border-top: 1px solid var(--line);
    padding-top: 12px;
    justify-content: space-between;
}

.header_menu > ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header_menu > ul > li { position: relative; }

.header_menu > ul > li > a {
    display: block;
    padding: 10px 0;
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.header_menu > ul > li > a:hover { color: var(--red); }

.header_menu li.dropdown > a::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    border: 5px solid transparent;
    border-top-color: currentColor;
    transform: translateY(3px);
}

.header_menu li.dropdown ul {
    position: absolute;
    top: 100%;
    left: -18px;
    min-width: 210px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.header_menu li.dropdown:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header_menu li.dropdown ul li a {
    display: block;
    padding: 8px 22px;
    color: var(--ink);
    font-size: 15px;
}

.header_menu li.dropdown ul li a:hover { color: var(--red); background: var(--soft); }

.header_social_icon ul { display: flex; gap: 12px; }

.header_social_icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--soft);
    transition: background 0.25s ease, transform 0.25s ease;
}

.header_social_icon a:hover { background: #ffe3e1; transform: translateY(-2px); }
.header_social_icon img { width: 16px; height: 16px; }

.header_menu_bar { display: none; }

/* ---------- MOBILE MENU ---------- */
.mobile_menu_box { padding: 30px 0; }
.mobile_menu_item { color: var(--white); }
.mobile_menu ul { display: block; }

.mobile_menu li a {
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile_menu li a:hover { color: var(--white); }

.mobile_contact { margin-top: 26px; }

.mobile_contact li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
}

.mobile_contact img,
.mobile_social_icon img { width: 17px; height: 17px; filter: brightness(0) invert(1); }

.mobile_social_icon ul { display: flex; gap: 12px; margin-top: 22px; }

.mobile_social_icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
}

.mobile_social_icon a:hover { background: var(--red); }

/* ---------- BACK TO TOP ---------- */
.to_top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 950;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.to_top.is_visible { opacity: 1; visibility: visible; }

.to_top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 8px 20px rgba(228, 50, 43, 0.35);
}

.to_top a:hover { background: var(--red-dark); }
.to_top img { width: 18px; height: 18px; }

/* ---------- BANNER ---------- */
.banner_section {
    position: relative;
    background-color: var(--navy);
    color: var(--white);
}

.banner_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(14, 26, 38, 0.90) 0%, rgba(14, 26, 38, 0.62) 55%, rgba(14, 26, 38, 0.30) 100%);
}

.banner_text_box {
    position: relative;
    z-index: 2;
    padding: 120px 0 130px;
}

.banner_text { max-width: 640px; }

.banner_title h1 {
    color: var(--white);
    font-size: 56px;
    line-height: 1.12;
}

.curve_img { margin: 20px 0 6px; }
.curve_img img { max-width: 190px; }

.banner_description .description {
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.banner_slogan {
    position: relative;
    z-index: 2;
    margin-top: 46px;
    display: inline-block;
    padding: 10px 22px;
    border-left: 4px solid var(--red);
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    font-size: 18px;
    font-style: italic;
}

/* ---------- SERVICES ---------- */
.service_section {
    background-color: var(--soft);
    padding: 92px 0;
}

.service_title_box { margin-bottom: 52px; }

.service_item_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service_items {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    text-align: center;
}

.service_items:hover { box-shadow: 0 22px 50px rgba(23, 41, 59, 0.16); }

.service_img { margin-bottom: 22px; }
.service_img img { width: 88px; height: 88px; margin: 0 auto; }
.service_title h3 { font-size: 22px; margin-bottom: 12px; }
.service_description p { color: var(--muted); }

.service_list ul {
    margin-top: 18px;
    display: inline-block;
    text-align: left;
}

.service_list li {
    position: relative;
    padding-left: 22px;
    color: var(--ink);
    font-size: 15px;
    line-height: 2;
}

.service_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}

/* ---------- ABOUT ---------- */
.about_us_section { background: var(--white); }

.about_us_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.about_us_img_box { min-height: 480px; background: var(--soft); }
.about_us_img { width: 100%; min-height: 480px; }

.about_text_box {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.about_text_box .self_container { padding-left: 60px; padding-right: 20px; max-width: 640px; margin: 0; }
.about_text .title_box { margin-bottom: 8px; }

/* ---------- BENEFITS ---------- */
.benifit_section {
    background-color: var(--navy);
    padding: 92px 0;
    color: var(--white);
}

.benifit_section .title_box h2 { color: var(--white); }
.benifit_section .title_box span { color: #ffd8d6; }
.benifit_section .title_box .description { color: rgba(255, 255, 255, 0.80); }

.benifit_title_box { margin-bottom: 54px; }

.benifit_item_box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.benifit_items {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    padding: 34px 26px;
    text-align: center;
}

.benifit_items:hover { background: rgba(255, 255, 255, 0.11); }

.benifit_img {
    width: 74px;
    height: 74px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benifit_img img { width: 34px; height: 34px; filter: brightness(0) invert(1); }
.benifit_text .title h3 { color: var(--white); font-size: 19px; margin-bottom: 10px; }
.benifit_text .description p { color: rgba(255, 255, 255, 0.78); font-size: 15px; }

/* ---------- GALLERY ---------- */
.gallery_section { background: var(--white); }

.gallery_box {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.gallery_item { position: relative; overflow: hidden; }
.gallery_item a { display: block; height: 100%; }

.gallery_img {
    width: 100%;
    min-height: 260px;
    background-color: var(--soft);
    transition: transform 0.5s ease;
}

.gallery_item:hover .gallery_img { transform: scale(1.07); }

.gallery_item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(23, 41, 59, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery_item:hover::after { opacity: 1; }

/* ---------- CALL US ---------- */
.call_us_section {
    position: relative;
    background-color: var(--red);
    padding: 68px 0;
}

.call_us_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(140, 24, 19, 0.72);
}

.call_us_title { position: relative; z-index: 2; }
.call_us_title .title_box h2 { font-size: 36px; }
.call_us_title .title_box h2 a { border-bottom: 2px solid rgba(255, 255, 255, 0.5); }
.call_us_title .title_box h2 a:hover { border-bottom-color: var(--white); }

/* ---------- TESTIMONIALS ---------- */
.testimonial_section {
    position: relative;
    background-color: var(--navy);
    padding: 92px 0;
}

.testimonial_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(14, 26, 38, 0.86);
}

.testimonial_box { position: relative; z-index: 2; }
.testimonial_title { margin-bottom: 46px; }

.testimonial_items {
    background: var(--white);
    border-radius: var(--radius);
    padding: 38px 34px 32px;
    margin: 10px;
    text-align: center;
    min-height: 300px;
}

.testimonial_img img { width: 40px; height: 40px; margin: 0 auto 18px; }
.testimonial_des .description p { color: var(--muted); font-size: 15.5px; }

.testimonial_name h4 {
    margin-top: 20px;
    font-size: 17px;
    color: var(--red);
}

.testimonial_slider .owl-dots { margin-top: 26px; }
.testimonial_slider .owl-dots .owl-dot span { background: rgba(255, 255, 255, 0.35); }
.testimonial_slider .owl-dots .owl-dot.active span,
.testimonial_slider .owl-dots .owl-dot:hover span { background: var(--red); }

/* ---------- VIDEO ---------- */
.video_section {
    background-color: var(--soft);
    padding: 92px 0;
}

.video_title { margin-bottom: 44px; }

.video_img {
    max-width: 880px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--navy);
    line-height: 0;
}

.video_img video { width: 100%; height: auto; display: block; }

/* ---------- CONTACT ---------- */
.contact_us_section {
    position: relative;
    background-color: var(--navy);
    padding: 92px 0;
}

.contact_us_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(14, 26, 38, 0.90);
}

.contact_us_box { position: relative; z-index: 2; }
.contact_us_title { margin-bottom: 44px; }

.contact_us_item_box {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
    align-items: start;
}

.contact_us_item { color: var(--white); }

.contact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.contact_img {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_img img { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.contact_text a { color: rgba(255, 255, 255, 0.92); font-weight: 600; word-break: break-word; }
.contact_text a:hover { color: var(--red); }

.contact.two {
    display: block;
    border-bottom: 0;
    padding-top: 26px;
}

.contact_title a { font-size: 22px; font-weight: 700; color: var(--white); }
.contact_social_icon ul { display: flex; gap: 12px; margin-top: 16px; }

.contact_social_icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
}

.contact_social_icon a:hover { background: var(--red); }
.contact_social_icon img { width: 17px; height: 17px; filter: brightness(0) invert(1); }

.contact_form_box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 34px 32px;
    box-shadow: var(--shadow);
}

.contact_form_title h3 { font-size: 24px; margin-bottom: 22px; }

.contact_form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group.four { grid-column: 1 / -1; }

.form_control {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--soft);
    color: var(--ink);
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form_control:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
}

textarea.form_control { resize: vertical; min-height: 130px; }

.contact_form_btn { margin-top: 22px; }
.contact_form_btn .btn { width: 100%; font-size: 16px; }

.successmessage {
    margin-bottom: 18px;
    padding: 12px 16px;
    border-radius: 6px;
    background: #e6f6ec;
    color: #1c7a41;
    cursor: pointer;
}

/* ---------- FOOTER ---------- */
.footer_section {
    background: var(--navy);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Centred, not space-between: the copyright line was removed on Tommy's
   instruction (2026-08-24) and the logo is now the footer's only child. */
.footer_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer_img img { max-height: 50px; width: auto; filter: brightness(0) invert(1); }
.footer_text span { color: rgba(255, 255, 255, 0.66); font-size: 14px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .banner_title h1 { font-size: 44px; }
    .title_box h2 { font-size: 34px; }
    .benifit_item_box { grid-template-columns: repeat(2, 1fr); }
    .gallery_box { grid-template-columns: repeat(3, 1fr); }
    .about_us_box { grid-template-columns: 1fr; }
    .about_us_img_box, .about_us_img { min-height: 320px; }
    .about_text_box .self_container { padding-left: 20px; max-width: 100%; margin: 0 auto; }
    .contact_us_item_box { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .header_menu_box { display: none; }
    .header_menu_bar { display: block; }
    .header_box { padding: 14px 0; flex-wrap: nowrap; }
    .header_contact_box { display: none; }
    .service_item_box { grid-template-columns: 1fr; }
    .banner_text_box { padding: 86px 0 92px; }
}

@media (max-width: 600px) {
    .banner_title h1 { font-size: 34px; }
    .title_box h2 { font-size: 28px; }
    .call_us_title .title_box h2 { font-size: 26px; }
    .service_section, .benifit_section, .testimonial_section, .video_section, .contact_us_section { padding: 62px 0; }
    .gallery_box { grid-template-columns: repeat(2, 1fr); }
    .gallery_img { min-height: 190px; }
    .benifit_item_box { grid-template-columns: 1fr; }
    .contact_form { grid-template-columns: 1fr; }
    .contact_form_box { padding: 26px 22px; }
    .footer_box { justify-content: center; text-align: center; }
}
