:root {
	--primary-colour: #ffffff;
	--secondary-colour: #000000;
    --tertiary-colour: #d18202;
    --quartary-colour: #717171;
    --quinary-colour: #c4c4ce;
    --background-colour: #f9f9f9;
    --section-background-colour: var(--primary-colour);
    --button-background-colour: var(--primary-colour);
    --header-footer-colour: #47516a;
	--text-colour: #333333;
	--heading-text-colour: #222222;
    --button-text-colour: var(--heading-text-colour);
    --inverse-button-text-colour: var(--primary-colour);
    --footer-text-colour: #cccccc;
	--link-colour: #0056b3;
}
/* --- CSS Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-colour);
    line-height: 1.6;
    background-color: var(--background-colour);
}

section {
    scroll-margin-top: 68px;
}

a {
    color: var(--link-colour);
}

h1, h2 {
    margin-bottom: 1.25rem;
    color: var(--heading-text-colour);
}

h3 {
    margin-bottom: 0.625rem;
    color: var(--heading-text-colour);
}
    
 
p, li {
    padding-top: 0.625rem;
}

ul, ol {
    padding-top: 0.625rem;
    padding-left: 2.5rem;
}

ul.no-style,
ol.no-style {
    list-style: none;
    padding: 0;
}

ul.no-style > li,
ol.no-style > li {
    padding: 0;
}

input, textarea {
    padding: 0.625rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

table {
    width: 100%;
    margin-top: 0.625rem;
    border-collapse: collapse;
    background-color: var(--section-background-colour);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

th, td {
    padding: 0.6rem;
    text-align: left;
    border: 1px solid #dddddd;
}

th {
    background-color: var(--quartary-colour);
    color: var(--primary-colour);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 0 1rem 0;
}

.section-content {
    background-color: var(--section-background-colour);
    padding: 1.5rem 2rem;
    border-radius: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
	color: var(--button-text-colour);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
	box-shadow: 4px 4px 6px var(--secondary-colour);
	transition: background-color 0.2s ease-in-out, transform .08s, box-shadow .08s;
	will-change: transform;
}

.btn:not([disabled]):active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 4px var(--secondary-colour);
}

.btn[disabled] {
    background-color: #cecece;
	opacity: 0.4;
    cursor: default;
}

.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.btn-small {
    padding: 0.625rem 1.25rem;
    border-radius: 5px;
    font-size: 0.835rem;
    line-height: 1;
}

.btn-small > .btn-icon {
    width: 16px;
    height: 16px;
}

.btn-call,
.btn-send {
    background-color: var(--button-background-colour);
    border-color: var(--secondary-colour);
	border-style: solid;
	border-width: 2px 0 0 2px;
    box-shadow: 2px 2px 0 var(--secondary-colour), 4px 4px 6px var(--secondary-colour);
}

.btn-call:active,
.btn-send:not([disabled]):active {
    box-shadow: 2px 2px 0 var(--secondary-colour), 2px 2px 4px var(--secondary-colour);
}

.btn-call:hover,
.btn-send:not([disabled]):hover {
    background-color: var(--tertiary-colour);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--inverse-button-text-colour);
}

.btn-whatsapp:hover {
    background-color: #20b357;
}

.company-name {
    color: var(--tertiary-colour);
    font-weight: 800;
}

/* --- Header (Fixed) --- */
header {
    position: sticky;
    top: 0;
    background-color: var(--header-footer-colour);
    background-image: linear-gradient(to right, #202329, var(--header-footer-colour));
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 2000;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.25rem;
    padding: 0.938rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo img {
    width: auto;
    height: 60px;
    display: block;
	filter: drop-shadow(0px 0px 3px var(--primary-colour));
}

.header-right {
    order: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-right .btn {
	border: none;
}

.header-actions {
    display: flex;
    gap: 0.625rem;
}

.nav-menu ul {
    display: flex;
    gap: 1.25rem;
}

.nav-menu a {
    color: var(--inverse-button-text-colour);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--quinary-colour);
    text-decoration: underline;
}

.hamburger-btn {
    display: none;
    position: relative;
    width: 24px;
    height: 18px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: none;
}

.hamburger-btn .bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--inverse-button-text-colour);
    border-radius: 3px;
    transition: all 0.25s ease-in-out;
    transform-origin: center;
}

.hamburger-btn .bar:nth-child(1) {
    top: 0;
}

.hamburger-btn .bar:nth-child(2) {
    top: 7.5px;
}

.hamburger-btn .bar:nth-child(3) {
    bottom: 1px;
}

/* --- Hero Section --- */
.hero {
    max-width: 1200px;
    padding: 1.5rem;
    background-color: var(--section-background-colour);
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-content {
    flex: 3;
}

.hero-image {
    flex: 2
}

.hero-badge {
    display: inline-block;
    background-color: var(--quinary-colour);
    color: #4a4a4a;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.hero-strap {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.hero-bullets li {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.625rem;
    display: flex;
    align-items: center;
}

.check-icon {
    color: #16a34a;
    flex-shrink: 0;
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* --- Summary Details --- */

details {
    background-color: var(--section-background-colour);
    border-radius: 8px;
    box-shadow: 2px 4px 4px rgba(0,0,0,0.2);
}

details > summary {
    list-style: none;
}

details > summary::-webkit-details-marker,
details > summary::marker {
    display: none;
    content: none;
}

details > summary .summary-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details > summary .summary-cta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--link-colour);
    white-space: nowrap;
}

/* Dynamic text toggle via CSS */
details:not([open]) > summary .summary-cta-label::before {
    content: "More info";
}

details[open] > summary .summary-cta-label::before {
    content: "Less info";
}

details > summary .chevron-icon {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

details[open] > summary .chevron-icon {
    transform: rotate(180deg);
}

/* --- Services Section --- */
.services details {
    margin-bottom: 0.938rem;
    padding: 1.25rem;
}

.services details > summary {
    cursor: pointer;
}

.services details[open] > summary {
    padding-bottom: 0.625rem;
    border-bottom: 1px solid #808080;
}

.services details > summary .summary-cta {
    margin-bottom: 0.625rem;
}

/* --- Map & Areas Covered --- */
.map-section {
    display: flex;
    padding: 0;
}

.map-container {
    height: 500px;
    width: 100%;
    max-width: 800px;
    flex: 2;
}

.areas-container {
    flex: 1;
    padding: 1rem 2.5rem;
}

.areas-container li {
    padding-top: 0;
}

/* --- FAQs --- */
.faqs details {
    padding: 0.938rem;
    margin-bottom: 0.625rem;
    cursor: pointer;
}

.faqs summary {
    font-weight: bold;
}

.faq-scroll-margin {
    scroll-margin-top: 140px;
}

/* --- Contact Us --- */
.contact-section {
    display: flex;
    gap: 2.5rem;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.938rem;
    padding-bottom: 0.5rem;
}

.contact-success,
.contact-failure,
.contact-details {
    flex: 1;
    scroll-margin-top: 120px;
}

.contact-hidden {
    display: none;
}

.required-text {
    color: #ff0000
}

/* --- About --- */
.about-section {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.about-content {
    flex: 4;
}

.about-image {
    flex: 2
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* --- Scrolling Images (Marquee) --- */
.scrolling-wrapper {
    overflow: hidden;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.938rem 0;
    margin-bottom: 1.563rem;
    white-space: nowrap;
}

.scrolling-content {
    display: inline-flex;
    vertical-align: middle;
    animation: scroll-left 40s linear infinite;
}

/* Styled Brand Badges */
.brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    margin: 0 0.5rem;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    height: 80px;
    width: 160px;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Footer --- */
footer {
    background-color: var(--header-footer-colour);
    color: var(--footer-text-colour);
    padding: 1.875rem 1rem 1.25rem 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 1rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #444444;
    font-size: 0.8rem;
    color: #888888;
    line-height: 1.4;
}

footer a {
    color: var(--footer-text-colour);
}

footer a:hover {
    color: var(--inverse-button-text-colour);
}

/* --- Privacy Page --- */
body.privacy h1,
body.privacy h2,
body.privacy h3 {
    margin-bottom: 5px;
}

body.privacy h3 {
    padding-top: 1.25rem;
}

body.privacy .container {
    padding: 1.25rem 0;
}

.heading-flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.to-intro {
    text-decoration: none;
}

/* Visually hide off-screen, but remain accessible to screen readers & keyboard */
.skip-link {
    position: absolute;
    top: -999px;
    left: 0;
    background-color: var(--secondary-colour);
    color: var(--inverse-button-text-colour);
    padding: 0.25rem;
    z-index: 9999;
    font-size: 0.5rem;
    font-weight: bold;
}

/* Bring into view when focused via Tab key */
.skip-link:focus {
    top: 0;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-logo img {
        height: 48px;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .hamburger-btn {
        display: block;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding-top: 0.5rem;
    }

    .nav-menu li a {
        display: block;
        padding: 0.75rem 0;
        border-top: 1px solid #f1f5f9;
        font-size: 1rem;
    }

    .nav-menu.is-open {
        max-height: 280px;
    }

    .hamburger-btn[aria-expanded="true"] > .bar:nth-child(1) {
        top: 7.5px;
        transform: rotate(45deg);
    }

    .hamburger-btn[aria-expanded="true"] > .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn[aria-expanded="true"] > .bar:nth-child(3) {
        bottom: auto;
        top: 7.5px;
        transform: rotate(-45deg);
    }

    .hero,
    .contact-section,
    .map-section,
    .about-section {
        flex-direction: column;
    }

    .map-container {
        flex: none;
    }
}

@media (max-width: 520px) {

    .header-logo img {
        height: 36px;
    }
    
    .btn-small {
        padding: 0.625rem 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scrolling-content {
        animation: none;
    }
}