/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a2744;
    --navy-dark: #0f1a2e;
    --red: #c0392b;
    --red-dark: #a93226;
    --orange: #d46a27;
    --gold: #d4a437;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --light-gray: #e8e8e8;
    --gray: #6b7280;
    --dark: #1f2937;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    padding: 8px 0;
}

.top-bar-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-weight: 600;
    transition: color 0.2s;
}

.top-phone:hover {
    color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    margin-right: -5px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 22px 12px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.2s, background 0.2s;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.nav-links li a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    border-radius: 4px;
    padding: 11px 20px !important;
    margin-left: 8px;
    font-size: 0.88rem !important;
}

.nav-cta:hover {
    background: var(--red-dark) !important;
}

.nav-facebook {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1877F2 !important;
    color: var(--white) !important;
    border-radius: 50% !important;
    padding: 0 !important;
    margin-left: 8px;
    transition: all 0.25s !important;
}

.nav-facebook:hover {
    background: #0d65d9 !important;
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(24, 119, 242, 0.5);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: url('images/backround.jpg') center center no-repeat;
    background-size: cover;
    background-color: var(--navy);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 26, 46, 0.65) 0%,
        rgba(15, 26, 46, 0.45) 40%,
        rgba(15, 26, 46, 0.75) 100%
    );
    backdrop-filter: brightness(0.9) contrast(1.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.hero-logo {
    height: 100px;
    width: auto;
    margin: 0 auto 20px;
    filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.5));
}

.hero h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 6px;
    margin-bottom: 10px;
    text-shadow: 2px 4px 12px rgba(0,0,0,0.7), 0 0 40px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.6);
}

.hero-sub {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(192,57,43,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--off-white);
    border-top: 3px solid var(--light-gray);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 12px;
    color: var(--navy);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 45px;
}

.inline-phone {
    color: var(--red);
    font-weight: 600;
}

.inline-phone:hover {
    text-decoration: underline;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 14px;
    color: #444;
}

.about-highlights {
    list-style: none;
    margin-top: 20px;
}

.about-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-weight: 600;
    color: var(--dark);
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.placeholder-img {
    background: linear-gradient(135deg, var(--light-gray), #d0d0d0);
    border-radius: 8px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-family: var(--font-heading);
    gap: 6px;
}

.placeholder-img span {
    font-weight: 700;
    font-size: 1.1rem;
}

.placeholder-img small {
    font-size: 0.8rem;
    opacity: 0.7;
}

.placeholder-sm {
    min-height: 220px;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ===== FORMS ===== */
.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.section-alt .form-wrapper {
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ===== GOOGLE FORM EMBED ===== */
.google-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.google-form-wrapper iframe {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .google-form-wrapper {
        max-width: 100%;
        padding: 10px;
        position: relative;
        overflow: hidden;
    }

    .google-form-wrapper iframe {
        max-width: 100%;
        height: 1700px;
    }
}

/* ===== FIREWOOD SECTION ===== */
.firewood-section {
    background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
    color: var(--white);
}

.firewood-badge {
    text-align: center;
    margin-bottom: 10px;
}

.firewood-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 10px;
    text-align: center;
    display: block;
    width: fit-content;
}

.firewood-title {
    color: var(--white) !important;
}

.firewood-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.firewood-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.firewood-card {
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.2s;
}

.firewood-card:hover {
    transform: translateY(-3px);
}

.firewood-photo {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.firewood-card:hover .firewood-photo {
    transform: scale(1.05);
}

.firewood-card-body {
    padding: 25px;
}

.firewood-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.firewood-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.firewood-features {
    list-style: none;
    margin-bottom: 15px;
}

.firewood-features li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

.firewood-features li::before {
    content: "\2714 ";
    color: var(--orange);
    margin-right: 8px;
}

.price-note {
    font-style: italic;
    color: var(--gold) !important;
    font-weight: 600;
    font-size: 0.85rem !important;
}

.business-card-wrap {
    text-align: center;
    margin-bottom: 35px;
}

.business-card-img {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-card-img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.firewood-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.firewood-section .btn-primary {
    background: var(--orange);
    border-color: var(--orange);
}

.firewood-section .btn-primary:hover {
    background: #b85a20;
    border-color: #b85a20;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 12px;
}

.footer h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 12px;
}

.footer h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    padding: 4px 0;
    font-size: 0.9rem;
}

.footer ul li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer .emergency {
    color: var(--gold);
    font-weight: 600;
    margin-top: 8px;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold);
    transition: color 0.2s;
}

.footer-phone:hover {
    color: var(--white);
}

.footer-social {
    margin-top: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #1877F2;
    border: none;
    border-radius: 6px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: all 0.25s;
}

.social-link:hover {
    background: #0d65d9;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.5);
}

.btn-facebook {
    background: #1877F2;
    border-color: #1877F2;
    color: var(--white);
}

.btn-facebook:hover {
    background: #0d65d9;
    border-color: #0d65d9;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.5);
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in,
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in { transform: translateY(20px); }
.fade-in-up { transform: translateY(40px); }
.fade-in-left { transform: translateX(-40px); }
.fade-in-right { transform: translateX(40px); }

.fade-in.visible,
.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== WHY CHOOSE US BANNER ===== */
.why-banner {
    background: var(--navy);
    padding: 35px 0;
    border-bottom: 3px solid var(--red);
}

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

.why-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    padding: 10px;
    border-radius: 6px;
    transition: background 0.2s;
}

.why-item:hover {
    background: rgba(255,255,255,0.06);
}

.why-icon {
    flex-shrink: 0;
    color: var(--gold);
}

.why-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.why-text strong {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.why-text span {
    font-size: 0.78rem;
    opacity: 0.65;
}

/* ===== ENHANCED SERVICE CARDS ===== */
.service-icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    color: var(--navy);
}

.service-svg {
    width: 36px;
    height: 36px;
    transition: transform 0.35s ease;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover .service-icon-wrap {
    background: var(--red);
    color: var(--white);
    transform: scale(1.1);
}

.service-card:hover .service-svg {
    transform: rotate(-5deg) scale(1.05);
}

.card-link {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s;
}

.card-link:hover {
    color: var(--red-dark);
    letter-spacing: 2px;
}

/* ===== ENHANCED ABOUT HIGHLIGHTS ===== */
.about-highlights li {
    transition: transform 0.2s ease;
}

.about-highlights li:hover {
    transform: translateX(6px);
}

.about-highlights li:hover .highlight-icon {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(192,57,43,0.4);
}

.highlight-icon {
    transition: all 0.25s ease;
}

/* ===== ENHANCED FIREWOOD CARDS ===== */
.firewood-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.firewood-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    border-color: var(--orange);
}

.firewood-card-img {
    overflow: hidden;
}

.firewood-card-img .placeholder-img {
    transition: transform 0.4s ease;
}

.firewood-card:hover .firewood-card-img .placeholder-img {
    transform: scale(1.05);
}

/* ===== ENHANCED BUTTONS ===== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* ===== ENHANCED FORM FOCUS ===== */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
    transform: translateY(-1px);
}

.form-group input,
.form-group select,
.form-group textarea {
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

/* ===== FOOTER LINK HOVER ===== */
.footer ul li a {
    position: relative;
    transition: color 0.2s, padding-left 0.2s;
}

.footer ul li a:hover {
    padding-left: 6px;
    text-decoration: none !important;
    color: var(--gold) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .top-bar-inner span:first-child {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 10px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        padding: 14px 20px;
        justify-content: center;
    }

    .nav-cta {
        margin: 10px 20px !important;
        justify-content: center;
        border-radius: 4px;
    }

    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        letter-spacing: 3px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 25px;
    }

    .firewood-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section {
        padding: 50px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}
