/* CSS Custom Properties */
:root {
    --primary-bg: #fffcf0;
    --text-white: #ffffff;
	--text-black: #000000;
    --highlight: #ffec9e;
    --text-gray: #e0e0e0;
    --divider: #1b2324;
    --border-gray: #575757;
	--border-blue: #CFFEFF;
	--email-link: #4E5E5E;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Flex', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--primary-bg);
    padding-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Animations */
@keyframes pulse-gentle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.06);
        opacity: 1.0;
    }
}

.pulse-resume {
    animation: pulse-gentle 2s ease-in-out infinite;
    display: inline-block;
}

/* -------------------------------------------------
   HERO SECTION
   ------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('/images/f1.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: var(--text-white);
    overflow: hidden;
}

.hero-section2 {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('/images/f2.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: var(--text-white);
    overflow: hidden;
}

.hero-section3 {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('/images/f3.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: var(--text-white);
    overflow: hidden;
}

/* Navigation */
.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container::before {
    content: '';
    position: fixed;
    inset: 0 0 auto 0;
    height: 88px;
    background-color: rgba(27, 35, 36, 0.7);
    backdrop-filter: blur(5px);
    z-index: -1;
}

.logo img {
    height: 4vw;
    width: auto;
    min-height: 26px;
    max-height: 30px;
}

/* Desktop Navigation */
nav {
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text-white);
    font-weight: 100;
    font-size: 1.0rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--highlight);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.menu-toggle span { 
    top: 50%; 
    transform: translateY(-50%); 
}

.menu-toggle span::before { 
    top: -9px; 
}

.menu-toggle span::after { 
    top: 9px; 
}

.menu-toggle.active span { 
    background: transparent; 
}

.menu-toggle.active span::before { 
    top: 0; 
    transform: translateY(0) rotate(45deg); 
}

.menu-toggle.active span::after { 
    top: 0; 
    transform: translateY(0) rotate(-45deg); 
}

/* SECOND FIXED BAND – sits perfectly under the main nav */
.subnav-band {
    position: fixed;
    top: 88px;                     /* exactly under your 88 px desktop nav */
    left: 0;
    right: 0;
    height: 42px;
    background: rgba(128, 128, 128, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: white;
    width: 100%;
    transition: background 0.4s ease;
}

/* Adjustable colour – just override this one line anywhere */
.subnav-band { --subnav-bg: rgba(128, 128, 128, 0.7); background: var(--subnav-bg); }

.subnav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: flex-end;     /* text right-aligned */
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-title {
    font-size: 8.0rem;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--text-white);
    line-height: 1.0;
}

.hero-subtitle {
    font-size: 1.9rem;
    font-weight: 100;
    color: var(--text-gray);
    line-height: 1.3;
    margin-bottom: 0;
}

/* -------------------------------------------------
   BANNER SECTION – IMAGE OR HEX COLOUR
   ------------------------------------------------- */
.banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    background: var(--primary-bg);
}

.banner-container {
    width: 100%;
    height: 18vh;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    background: var(--banner-bg, transparent);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hide <img> when using a solid colour */
.banner-container.use-bg-color .banner-image {
    display: none;
}

/* New helper classes for multiple background images */
.banner-bg-image-reception1 {
    --banner-bg: url('/images/reception-1.jpg');
}

.banner-bg-image-reception2 {
    --banner-bg: url('/images/reception-2.jpg');
}

.banner-bg-image-equipment {
    --banner-bg: url('/images/cleaning-equipment.jpg');
}

.banner-bg-color { 
    --banner-bg: #868885;
}

/* -------------------------------------------------
   MAIN CONTENT & SECTIONS
   ------------------------------------------------- */
.main-content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 5rem 30px;
    background: var(--primary-bg);
}

.section-title {
    font-size: 4.0rem;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 400;
    color: var(--text-black);
    line-height: 1.8;
}

.section-content,
.list-item p {
    font-size: 1.9rem;
    color: var(--text-black);
    text-align: left;
    font-weight: 200;
    line-height: 1.6;
}

.new-window-link {
    color: #ffffff;
    transition: color 0.3s ease;
}

.new-window-link:hover {
    color: #00f6ff;
}

.list-item {
    padding: 1.0rem 0;
    text-align: left;
    position: relative;
    width: 100%;
}

.list-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--divider);
}

/* Perfectly symmetrical spacing */
.list-item h3 {
    font-weight: 400;
    font-size: 1.9rem;
    margin: 1rem 0 0.5rem 0;      /* only bottom margin, or make it 0.5rem 0 for symmetry */
    color: #000000;
    line-height: 1.5;
}

.list-item p {
    font-weight: 200;
    font-size: 1.3rem;
    margin: 0 0 0.0rem 0;      /* only bottom margin, or make it 0.5rem 0 for symmetry */
    color: #000000;
    line-height: 1.5;
	 align-items: center;
}

/* Buttons & Links */
.button {
    display: inline-block;
    padding: 0.7rem 2.1rem;
    margin-bottom: 1.0rem;
    margin-right: 0.5rem;
    width: 220px;
    background-color: var(--primary-bg);
    color: var(--text-black);
    font-weight: 100;
    font-size: 0.9rem;
    border-radius: 0;
    transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
    border: 1px solid var(--border-gray);
    text-align: center;
}

.button:hover {
    background-color: rgba(238, 36, 56, 0.1);
    color: var(--highlight);
    border-color: var(--highlight);
}

.email-link {
    color: var(--text-black);
    transition: all 0.5s ease;
}

.email-link:hover {
    color: var(--email-link);
}

.icon {
  display: inline-flex;           /* ← the key change */
  align-items: center;            /* perfect vertical centering */
  justify-content: center;        /* perfect horizontal centering */
  width: 1.6em;                   /* your fixed width */
  height: 1.6em;                  /* add a fixed height (makes vertical centering 100% reliable) */
  font-size: 1.3em;               /* actual icon size */
  line-height: 1;                 /* remove any line-height interference */
  vertical-align: -0.15em;        /* tiny fine-tune for most fonts */
  margin-right: 1.2rem;            /* optional: space after the icon */
  flex-shrink: 0;                 /* prevents shrinking in flex containers */
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
}

footer p {
    color: var(--text-black);
    font-weight: 100;
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s ease;
}

footer a {
    display: inline-block;
    color: var(--text-black);
}

footer a.footer-link:hover p {
    color: var(--email-link);
    transition: color 0.3s ease;
}

/* =================================================
   REQUEST A QUOTE FORM – FULL WIDTH (matches .main-content)
   ================================================= */
.quote-form {
    width: 100%;
    max-width: 1200px;                    /* identical to .main-content */
    margin: 3rem auto 1rem;               /* generous top spacing, same bottom as other sections */
    padding: 4rem 30px;                   /* exact same horizontal padding as .main-content on desktop */
    background: rgba(27, 35, 36, 0.6);
    border: 1px solid var(--border-gray);
    box-sizing: border-box;
}

.quote-form h2 {
    font-size: 4.0rem;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    text-align: left;
    line-height: 1.2;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
}

.form-grid .full-width {
    grid-column: 1 / -1;
}

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

.form-group label {
    color: var(--text-gray);
    font-size: 1.3rem;
    font-weight: 100;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(27, 35, 36, 0.8);   /* or any color you want */
    border: 1px solid var(--border-gray);
    color: var(--text-white);
    font-family: 'Roboto Flex', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 100;
    padding: 0.9rem 1.2rem;
    border-radius: 0;
    transition: border-color 0.4s ease, color 0.4s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight);
    color: var(--highlight);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

.submit-btn {
    margin-top: 2.5rem;
    padding: 0.9rem 3.2rem;
    background: transparent;
    border: 3px solid var(--border-blue);
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 200;
    cursor: pointer;
    transition: all 0.5s ease;
}

.submit-btn:hover {
    background-color: rgba(27, 35, 36, 0.8);
    color: var(--highlight);
    border-color: var(--highlight);
}

/* ========================================
   MOBILE ≤768px – QUOTE FORM 
   NOW 100% CONSISTENT WITH THE REST OF THE SITE
   ======================================== */
@media (max-width: 768px) {
    .quote-form {
        margin: 2vh auto;
        padding: 0rem 0px 0rem;        /* EXACT same 30px horizontal padding as .main-content */
        background: transparent;       /* no card, no border */
        border: none;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
	}

    .quote-form h2 {
        font-size: 2.6rem;
        text-align: left;
        margin-top: 2.5rem;
		margin-bottom: 2.5rem;
		color: var(--text-black);
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }
	
	.quote-form label {
        color: var(--text-black) !important;
        font-weight: 200;
    }

    /* Full-width fields — identical usable width to all other mobile content */
    .form-group,
    .form-group input,
    .form-group select,
    .form-group textarea,
    .submit-btn {
        width: 100% !important;
        max-width: none !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1.1rem;
        padding: 1rem 1.1rem;
        box-sizing: border-box;
    }

    .submit-btn {
        margin: 2.5rem auto 0;
        padding: 1.2rem;
        font-size: 1.1rem;
		color: var(--text-black);
		border: 3px solid var(--border-gray);
    }
}


/* ========================================
   MEDIA QUERIES – MOBILE (≤768px)
   ======================================== */
@media (max-width: 768px) {
    .hero-section { 
        height: 100vh; 
    }

    .hero-content { 
        padding: 0 20px; 
    }

    .hero-title {
        font-size: 3.8rem;
        line-height: 1.0;
        font-weight: 400;
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.2;
        font-weight: 100;
        margin-bottom: 0;
    }

    /* ——— 16px LOGO + CENTERED HAMBURGER ——— */
    .nav-container {
        padding: 16px 20px;           /* 16 + 16 = 32px padding */
        align-items: center;
        margin: 0;
        top: env(safe-area-inset-top, 0);
        height: 48px;                 /* 16px (logo) + 32px (padding) */
        box-sizing: border-box;
    }

    .nav-container::before {
        height: 48px;
        background-color: rgba(27, 35, 36, 0.7);
        backdrop-filter: blur(5px);
        top: env(safe-area-inset-top, 0);
    }

.logo img {
    height: 18px !important;   /* Force 16px */
    min-height: 18px !important;
    max-height: 20px !important;
    width: auto;
    display: block;
    margin: 0;
}
   
/* Mobile – automatically moves to correct position */
@media (max-width: 768px) {
    .subnav-band {
        top: 48px !important;      /* your mobile nav height */
        height: 38px;
        font-size: 0.88rem;
    }
    .subnav-container { padding: 0 20px; }
}
	
	/* Scaled-down hamburger to match 16px logo */
    .menu-toggle {
        display: block;
        cursor: pointer;
        width: 24px;                  /* Proportional: 28 → 24 */
        height: 16px;                 /* Matches logo */
        position: relative;
        z-index: 1001;
        flex-shrink: 0;
        align-self: center;
        margin: 0;
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;                  /* Thinner: 2.5 → 2px */
        background: var(--text-white);
        border-radius: 1px;
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .menu-toggle span { 
        top: 50%; 
        transform: translateY(-50%); 
    }

    .menu-toggle span::before { 
        top: -6px;                    /* ~1/3 of 16px = 5.3 → 6px */
    }

    .menu-toggle span::after { 
        top: 6px; 
    }

    .menu-toggle.active span { 
        background: transparent; 
    }

    .menu-toggle.active span::before { 
        top: 0; 
        transform: translateY(0) rotate(45deg); 
    }

    .menu-toggle.active span::after { 
        top: 0; 
        transform: translateY(0) rotate(-45deg); 
    }

    /* Mobile nav starts below 48px header */
    nav {
        position: fixed;
        top: 48px;
        right: 0;
        width: 200px;
        height: calc(100% - 48px);
        background: rgba(10, 10, 10, 0.7);
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        padding: 1rem 20px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        margin: 0;
    }

    nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    nav ul { 
        flex-direction: column; 
        padding: 0; 
    }
    
    nav ul li { 
        margin: 1.5rem 0; 
    }
    
    nav ul li a { 
        font-size: 1.1rem; 
        display: block; 
        padding: 0.5rem 0; 
    }

    .main-content { 
        padding: 4.0rem 30px; 
    }
    
    .section-title { 
        font-size: 2.6rem; 
    }

    .section-content,
    .list-item h3 { 
        font-size: 1.3rem; 
    }
    
    .list-item p { 
        font-size: 1.0rem; 
    }

    .button { 
        font-size: 0.8rem; 
        width: 200px; 
    }
	
/* Mobile icon – perfectly centered, white-compatible, same behavior as desktop */
.iconm {
  display: inline-flex;           /* ← key for perfect centering */
  align-items: center;            /* vertical center */
  justify-content: center;        /* horizontal center */
  width: 1.4em;                   /* your mobile width */
  height: 1.4em;                  /* ← add this = guaranteed perfect alignment */
  font-size: 1.3em;               /* your mobile icon size */
  line-height: 1;
  vertical-align: -0.15em;        /* tiny fine-tune for all fonts */
  flex-shrink: 0;                 /* prevents shrinking */
  margin-right: 0.35em;           /* optional nice spacing after icon */
}
	
/* Your existing mobile icon class – unchanged */
.iconm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4em;
  height: 1.4em;
  font-size: 1.9em;
  line-height: 1;
  vertical-align: -0.15em;
  flex-shrink: 0;
  margin-right: 0.35em;
}

	
}
