/* GLOBAL RESETS & THEME VARIABLES */
:root {
    --primary-orange: #f25411;
    --dark-orange: #d44307;
    --bg-dark: #0f1011;
    --bg-light-gray: #f4f5f6;
    --text-light: #ffffff;
    --text-dark: #1c1d1f;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER & NAVIGATION */
.header {
    background-color: #000000;
    padding: 20px 0;
    border-bottom: 1px solid #1a1a1c;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 65px;
    width: auto;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-light);
    line-height: 1;
}

.logo-sub {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 0.5px;
}

.logo-tag {
    font-size: 8px;
    font-weight: 600;
    color: #8a8d91;
    letter-spacing: 1px;
    margin-top: 4px;
    border-top: 1px solid #333;
    padding-top: 2px;
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-orange { background-color: var(--primary-orange); }
.btn-whatsapp { background-color: #1bd741; }
.btn-facebook { background-color: #1877f2; }

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: #b0b3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--primary-orange);
}

/* HERO SECTION */
.hero {
    position: relative;
    background-image: url('hero-bg-placeholder.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 520px;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.4) 100%);
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    text-align: left;
}

.hero h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 16px;
    color: #cfd1d4;
    max-width: 550px;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.trust-badges span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
}

.trust-badges i {
    color: var(--primary-orange);
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.primary-btn {
    background-color: var(--primary-orange);
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.secondary-btn {
    border: 2px solid #ffffff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
}

/* SERVICES SECTION */
.services-section {
    background-color: var(--bg-light-gray);
    padding: 80px 0;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    letter-spacing: 0.5px;
}

.text-dark { color: var(--text-dark); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.service-card {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    font-size: 45px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

/* PRICING & AREAS SIDE-BY-SIDE SECTION */
.split-pricing-areas {
    background-color: #0b0c0d;
    padding: 80px 0 40px 0;
    border-top: 1px solid #1a1a1c;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.pricing-side, .areas-side {
    display: flex;
    flex-direction: column;
}

.pricing-list, .areas-list-clean {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pricing-item, .area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1f2124;
    padding-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
}

.pricing-item.column-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.orange-check, .orange-pin {
    color: var(--primary-orange);
    margin-right: 8px;
}

.price {
    font-weight: 700;
    color: #ffffff;
}

.price-sub {
    font-size: 13px;
    color: #a0a3a6;
    padding-left: 26px;
}

.service-tag {
    font-size: 12px;
    font-weight: 600;
    color: #8a8d91;
    background: #17191c;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #222428;
}

/* POSTCODE CHECKER WIDGET */
.postcode-checker-section {
    background-color: #0b0c0d;
    padding: 0 0 80px 0;
}

.checker-container {
    max-width: 600px;
    margin: 0 auto;
    background: #121315;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #1f2124;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.checker-container h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.checker-container p {
    font-size: 14px;
    color: #8a8d91;
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto;
}

#postcodeInput {
    flex: 1;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 600;
    background: #1c1d20;
    border: 2px solid #2c2e33;
    border-radius: 6px;
    color: #ffffff;
    text-transform: uppercase;
    outline: none;
    transition: border-color 0.2s;
}

#postcodeInput:focus {
    border-color: var(--primary-orange);
}

.checker-container button {
    padding: 14px 28px;
    background-color: var(--primary-orange);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.checker-container button:hover {
    background-color: var(--dark-orange);
}

.checker-container button:active {
    transform: scale(0.98);
}

.result-box {
    margin-top: 25px;
    padding: 18px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.result-box.success {
    background-color: rgba(27, 186, 64, 0.1);
    color: #2ed55a;
    border: 1px solid rgba(27, 186, 64, 0.25);
}

.result-box.error {
    background-color: rgba(242, 84, 17, 0.1);
    color: #ff6b35;
    border: 1px solid rgba(242, 84, 17, 0.25);
}

.hidden {
    display: none;
}

/* ABOUT OLI SECTION WITH LOG BURNER */
.about-section {
    background-color: var(--bg-light-gray);
    padding: 80px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-side .about-inline-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: block;
}

.about-text-side p {
    color: #4a4d52;
    font-size: 15px;
    margin-bottom: 20px;
}

.about-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.badge-hetas {
    background-color: #ffffff;
    border: 1px solid #dcdfe3;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: #111;
    border-radius: 4px;
}

.hetas-w {
    background: var(--primary-orange);
    color: #fff;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 12px;
}

.badge-insured {
    border: 1px solid #1c1d1f;
    color: var(--text-dark);
    padding: 8px 16px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.5px;
    font-size: 12px;
    display: flex;
    align-items: center;
}

/* ADVICE FAQ SECTION */
.advice-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.section-subtitle {
    color: #70757d;
    margin-top: -30px;
    margin-bottom: 50px;
    font-size: 14px;
}

.faq-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-box {
    background: #f7f8f9;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eaecef;
    margin-bottom: 5px;
}

.faq-head {
    background-color: #0c0d0e;
    color: #ffffff;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-head::-webkit-details-marker {
    display: none;
}

.faq-head i {
    font-size: 12px;
    color: var(--primary-orange);
}

.faq-body {
    padding: 20px;
    color: #4a4d52;
    font-size: 14px;
    background-color: #ffffff;
}

/* FOOTER SECTION */
.footer {
    background-color: #000000;
    padding: 50px 0 20px;
    border-top: 2px solid var(--primary-orange);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #1a1a1c;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 50px;
}

.footer-brand h4 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.footer-brand p {
    font-size: 11px;
    color: var(--primary-orange);
    font-weight: 700;
}

.footer-center {
    text-align: center;
}

.tagline-top {
    font-size: 14px;
    font-weight: 600;
    color: #8a8d91;
}

.tagline-orange {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-orange);
}

.footer-right {
    display: flex;
    gap: 20px;
}

.footer-right a {
    color: #b0b3b8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-right a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: #65676b;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .header-inner, .split-container, .about-container, .faq-two-column, .footer-inner {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .nav-container {
        align-items: center;
    }
    .hero-overlay {
        text-align: center;
    }
    .hero-actions, .trust-badges, .footer-right {
        justify-content: center;
    }
    .input-group {
        flex-direction: column;
    }
}