/*
Theme Name: Fully Sparkd Electrical
Theme URI: https://fullysparkdelectrical.com.au/
Author: Site Design Now
Author URI: https://sitedesignnow.com/
Description: Custom WordPress theme for Fully Spark'd Electrical. Licenced electrician in Logan QLD. Dark theme with blue accent. Converted from static HTML.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fullysparkd-electrical
*/

/* ---------- Custom Properties ---------- */
:root {
    --primary: #1E2A38;
    --primary-dark: #141D27;
    --primary-light: #263545;
    --accent: #2D9CDB;
    --accent-dark: #1A7BB5;
    --accent-light: #4FB3E8;
    --accent-rgb: 45, 156, 219;
    --dark-1: #111827;
    --dark-2: #0F172A;
    --dark-3: #1A2332;
    --text-light: #E2E8F0;
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;
    --white: #FFFFFF;
    --danger: #EF4444;
    --star: #FBBF24;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 120px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--text-light); background: var(--dark-1); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
ul { list-style: none; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; color: var(--text-white); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; }

/* ---------- Section Helpers ---------- */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-tag { display: inline-block; font-family: var(--font-heading); font-size: .8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); background: rgba(45, 156, 219, .12); padding: 6px 18px; border-radius: 40px; margin-bottom: 12px; }
.section-title { margin-bottom: 12px; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 600; font-size: .95rem; padding: 10px 24px; border-radius: var(--radius-sm); border: 2px solid transparent; cursor: pointer; transition: all .25s; text-decoration: none; }
.btn--accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
.btn--white-outline { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .5); }
.btn--white-outline:hover { background: rgba(255, 255, 255, .1); border-color: var(--white); color: var(--white); }
.btn--lg { padding: 14px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---------- Navbar (Dark - matching logo bg) ---------- */
.navbar { position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height); background: var(--primary); z-index: 1000; transition: background .3s, box-shadow .3s; display: flex; align-items: center; }
.navbar.scrolled { background: var(--primary-dark); box-shadow: 0 2px 20px rgba(0, 0, 0, .5); }
.navbar__inner { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.navbar__logo { display: flex; align-items: center; }
.navbar__logo-img { height: 100px; width: auto; }
/* Target both wp_nav_menu output (.navbar__menu) AND fallback menu (.navbar__inner > ul) */
.navbar__menu,
.navbar__inner > ul { display: flex; align-items: center; gap: 28px; list-style: none; padding: 0; margin: 0; }
.navbar__menu li,
.navbar__inner > ul > li { list-style: none; margin: 0; padding: 0; display: inline-block; }
.navbar__menu li a,
.navbar__menu li a:visited,
.navbar__inner > ul li a,
.navbar__inner > ul li a:visited { color: var(--text-light); font-size: .92rem; font-weight: 500; transition: color .2s; position: relative; text-decoration: none; }
.navbar__menu li a::after,
.navbar__inner > ul li a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width .3s; }
.navbar__menu li a:hover,
.navbar__menu li a.active,
.navbar__menu li.current-menu-item > a,
.navbar__inner > ul li a:hover,
.navbar__inner > ul li.current-menu-item > a { color: var(--accent-light); }
.navbar__menu li a:hover::after,
.navbar__menu li a.active::after,
.navbar__menu li.current-menu-item > a::after,
.navbar__inner > ul li a:hover::after,
.navbar__inner > ul li.current-menu-item > a::after { width: 100%; }
.navbar__cta { white-space: nowrap; }
.navbar__hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.navbar__hamburger span { display: block; width: 26px; height: 3px; background: var(--text-light); border-radius: 2px; transition: .3s; }

/* ---------- Mobile Menu ---------- */
.mobile-menu { position: fixed; inset: 0; background: var(--primary); z-index: 2000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; transform: translateX(100%); transition: transform .35s ease; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--text-light); font-size: 2.2rem; cursor: pointer; }
.mobile-menu__logo { height: 60px; margin-bottom: 16px; }
.mobile-menu__list { text-align: center; list-style: none; padding: 0; }
.mobile-menu__list li { margin: 16px 0; }
.mobile-menu__list li a { color: var(--text-light); font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; }
.mobile-menu__list li a:hover { color: var(--accent-light); }
.mobile-menu__cta { margin-top: 16px; }

/* ---------- WordPress Admin Bar Offset ---------- */
/* WP admin bar is 32px on desktop (>782px) and 46px on mobile (<=782px).
   Offset the fixed navbar, mobile menu, hero, and scroll target so nothing
   hides behind the admin bar when a logged-in user views the site. */
body.admin-bar .navbar { top: 32px; }
body.admin-bar .mobile-menu { top: 32px; }
body.admin-bar { scroll-padding-top: calc(var(--nav-height) + 32px); }
body.admin-bar .hero { padding-top: calc(160px + 32px); }
body.admin-bar .page-main { padding-top: calc(140px + 32px); }

@media (max-width: 782px) {
    body.admin-bar .navbar { top: 46px; }
    body.admin-bar .mobile-menu { top: 46px; }
    body.admin-bar { scroll-padding-top: calc(var(--nav-height) + 46px); }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 160px 24px 100px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center center; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30, 42, 56, 0.55) 0%, rgba(30, 42, 56, 0.45) 50%, rgba(30, 42, 56, 0.6) 100%); }
.hero__content { position: relative; z-index: 2; max-width: 800px; }
.hero__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 20px; }
.hero__badge { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; background: rgba(45, 156, 219, .2); color: var(--white); padding: 6px 16px; border-radius: 40px; backdrop-filter: blur(6px); border: 1px solid rgba(45, 156, 219, .3); }
.hero__badge--licence { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .2); }
.hero__badge i { color: var(--star); }
.hero__badge--licence i { color: var(--accent-light); }
.hero__title { margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0, 0, 0, .4); }
.hero__subtitle { font-size: 1.15rem; color: rgba(255, 255, 255, .88); margin-bottom: 28px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 28px; }
.hero__usps { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; font-size: .9rem; color: rgba(255, 255, 255, .8); }
.hero__usps span { display: flex; align-items: center; gap: 6px; }
.hero__usps i { color: var(--accent-light); }

/* ---------- Services ---------- */
.services { padding: 100px 24px; background: var(--dark-2); }
.services__inner { max-width: 1200px; margin: 0 auto; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--dark-3); border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s; border: 1px solid rgba(255, 255, 255, .06); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card__img { height: 250px; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .4s; }
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__body { padding: 24px; }
.service-card__icon { font-size: 1.6rem; color: var(--accent); margin-bottom: 12px; display: block; }
.service-card__body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card__body p { font-size: .9rem; color: var(--text-muted); }

/* ---------- About ---------- */
.about { padding: 100px 24px; background: var(--dark-1); }
.about__inner { max-width: 1100px; margin: 0 auto; }
.about__header { text-align: center; margin-bottom: 48px; }
.about__header .section-tag { margin-bottom: 12px; }
.about__header .section-title { margin-bottom: 0; }
.about__columns { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about__left { display: flex; flex-direction: column; gap: 24px; }
.about__image-wrap img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about__text p { color: var(--text-muted); margin-bottom: 14px; }
.about__text a { color: var(--accent-light); font-weight: 600; }
.about__highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about__highlight { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 500; color: var(--text-light); }
.about__highlight i { color: var(--accent); font-size: 1.1rem; }

/* ---------- Project Gallery ---------- */
.gallery { padding: 100px 24px; background: var(--dark-2); }
.gallery__inner { max-width: 1200px; margin: 0 auto; }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px; background: linear-gradient(transparent, rgba(0, 0, 0, .75)); color: var(--white); font-family: var(--font-heading); font-size: .9rem; font-weight: 600; transform: translateY(100%); transition: transform .35s; }
.gallery__item:hover .gallery__caption { transform: translateY(0); }

/* ---------- Why Choose Us ---------- */
.why-us { padding: 100px 24px; background: var(--primary); }
.why-us__inner { max-width: 1100px; margin: 0 auto; }
.why-us__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.why-card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: transform .3s, background .3s; backdrop-filter: blur(6px); }
.why-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .08); }
.why-card__icon { width: 56px; height: 56px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; background: rgba(45, 156, 219, .15); border-radius: 50%; }
.why-card__icon i { font-size: 1.3rem; color: var(--accent-light); }
.why-card h3 { font-size: .95rem; margin-bottom: 8px; }
.why-card p { font-size: .82rem; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq { padding: 100px 24px; background: var(--dark-1); }
.faq__inner { max-width: 800px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--dark-3); border-radius: var(--radius-sm); border: 1px solid rgba(255, 255, 255, .06); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; background: none; border: none; color: var(--text-light); font-family: var(--font-heading); font-size: 1rem; font-weight: 600; cursor: pointer; text-align: left; transition: color .2s; }
.faq-question:hover { color: var(--accent-light); }
.faq-question i { font-size: .8rem; color: var(--accent); transition: transform .3s; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 22px 18px; }
.faq-answer p { font-size: .92rem; color: var(--text-muted); }

/* ---------- Testimonials ---------- */
.testimonials { padding: 100px 24px; background: var(--dark-2); }
.testimonials__inner { max-width: 1100px; margin: 0 auto; }
.testimonials__rating-summary { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; font-size: .95rem; color: var(--text-muted); }
.testimonials__rating-summary .stars { display: flex; gap: 3px; }
.testimonials__rating-summary .stars i { color: var(--star); font-size: 1rem; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--dark-3); border-radius: var(--radius); padding: 28px; border-left: 4px solid var(--accent); transition: transform .3s; }
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card__stars { margin-bottom: 14px; display: flex; gap: 3px; }
.testimonial-card__stars i { color: var(--star); font-size: .9rem; }
.testimonial-card__text { font-size: .95rem; color: var(--text-muted); font-style: italic; margin-bottom: 18px; line-height: 1.7; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: .85rem; flex-shrink: 0; }
.testimonial-card__author strong { display: block; color: var(--text-light); font-size: .9rem; }
.testimonial-card__author span { font-size: .8rem; color: var(--text-muted); }

/* ---------- CTA Banner ---------- */
.cta-banner { position: relative; padding: 80px 24px; text-align: center; overflow: hidden; }
.cta-banner__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-banner__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30, 42, 56, 0.6) 0%, rgba(30, 42, 56, 0.5) 50%, rgba(30, 42, 56, 0.65) 100%); }
.cta-banner__content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-banner__badge { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; background: rgba(45, 156, 219, .2); color: var(--white); padding: 6px 16px; border-radius: 40px; margin-bottom: 16px; border: 1px solid rgba(45, 156, 219, .3); }
.cta-banner__badge i { color: var(--accent-light); }
.cta-banner__content h2 { margin-bottom: 12px; text-shadow: 0 2px 8px rgba(0, 0, 0, .4); }
.cta-banner__content p { color: rgba(255, 255, 255, .85); margin-bottom: 24px; font-size: 1.05rem; }
.cta-banner__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ---------- Service Areas ---------- */
.service-areas { padding: 80px 24px; background: var(--dark-1); }
.service-areas__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.service-areas__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 24px; }
.area-tag { display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; font-weight: 500; color: var(--text-light); background: var(--dark-3); border: 1px solid rgba(255, 255, 255, .08); padding: 10px 20px; border-radius: 40px; transition: background .2s, border-color .2s; }
.area-tag:hover { background: rgba(45, 156, 219, .12); border-color: rgba(45, 156, 219, .3); }
.area-tag i { color: var(--accent); font-size: .8rem; }
.service-areas__note { font-size: .9rem; color: var(--text-muted); }

/* ---------- Enquiry Form ---------- */
.enquiry { padding: 100px 24px; background: var(--dark-2); }
.enquiry__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.enquiry__info .section-tag { margin-bottom: 12px; }
.enquiry__info .section-title { text-align: left; margin-bottom: 14px; }
.enquiry__info > p { color: var(--text-muted); margin-bottom: 24px; }
.enquiry__checklist { margin-bottom: 28px; }
.enquiry__checklist li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: .95rem; color: var(--text-light); }
.enquiry__checklist li i { color: var(--accent); }
.enquiry__form,
.enquiry__form-wrap { background: var(--dark-3); border-radius: var(--radius); padding: 32px; border: 1px solid rgba(255, 255, 255, .06); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 500; color: var(--text-light); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; font-family: var(--font-body); font-size: .92rem; border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius-sm); background: var(--dark-1); color: var(--text-light); transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg fill='%2394A3B8' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; }
.form-group--checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-group--checkbox input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.form-group--checkbox label { margin-bottom: 0; font-size: .85rem; color: var(--text-muted); }

/* ---------- Contact Form 7 Styling ---------- */
.wpcf7 .form-group { margin-bottom: 18px; }
.wpcf7 label { display: block; font-size: .85rem; font-weight: 500; color: var(--text-light); margin-bottom: 6px; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: .92rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-sm);
    background: var(--dark-1);
    color: var(--text-light);
    transition: border-color .2s;
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15); }
.wpcf7 textarea { resize: vertical; min-height: 100px; }
.wpcf7 select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg fill='%2394A3B8' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; }
.wpcf7 .form-group--checkbox { display: flex; align-items: flex-start; gap: 10px; }
.wpcf7 .form-group--checkbox .wpcf7-acceptance { margin-top: 2px; }
.wpcf7 .form-group--checkbox label { margin-bottom: 0; font-size: .85rem; color: var(--text-muted); }
.wpcf7-not-valid-tip { color: var(--danger); font-size: .85rem; margin-top: 4px; }
.wpcf7-response-output { padding: 12px 16px; border-radius: var(--radius-sm); margin-top: 16px; font-size: .95rem; }
.wpcf7 form.sent .wpcf7-response-output { border-color: #22c55e; background: rgba(34, 197, 94, .1); color: #86efac; }
.wpcf7 form.invalid .wpcf7-response-output { border-color: var(--danger); background: rgba(239, 68, 68, .1); color: #fca5a5; }
.wpcf7 input[type="submit"] {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px 32px;
    font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
    background: var(--accent); color: var(--white);
    border: 2px solid var(--accent); border-radius: var(--radius-sm);
    cursor: pointer; transition: all .25s;
    position: relative; padding-left: 48px;
}
.wpcf7 input[type="submit"]::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f1d8'; /* fa-paper-plane */
    position: absolute;
    left: calc(50% - 60px);
    font-size: 1rem;
}
.wpcf7 input[type="submit"]:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.wpcf7 .wpcf7-honeypot { display: none !important; }

/* ---------- Contact ---------- */
.contact { padding: 80px 24px; background: var(--dark-1); }
.contact__inner { max-width: 1100px; margin: 0 auto; }
.contact__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.contact__card { background: var(--dark-3); border-radius: var(--radius); padding: 28px; text-align: center; border: 1px solid rgba(255, 255, 255, .06); transition: transform .3s; }
.contact__card:hover { transform: translateY(-4px); }
.contact__card i { font-size: 1.6rem; color: var(--accent); margin-bottom: 12px; display: block; }
.contact__card h3 { font-size: 1rem; margin-bottom: 8px; }
.contact__card a { color: var(--accent-light); font-weight: 500; }
.contact__card p { font-size: .88rem; color: var(--text-muted); }
.contact__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact__map iframe { display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--dark-2); border-top: 1px solid rgba(255, 255, 255, .06); padding: 60px 24px 0; }
.footer__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 40px; }
.footer__logo-img { height: 55px; margin-bottom: 16px; }
.footer__brand p { color: var(--text-muted); font-size: .88rem; margin-bottom: 12px; }
.footer__rating { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-muted); }
.footer__rating .stars { display: flex; gap: 2px; }
.footer__rating .stars i { color: var(--star); font-size: .85rem; }
.footer h4 { font-size: .9rem; font-weight: 700; margin-bottom: 16px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.footer__links ul li, .footer__services ul li { margin-bottom: 8px; }
.footer__links ul li a { color: var(--text-muted); font-size: .88rem; transition: color .2s; }
.footer__links ul li a:hover { color: var(--accent-light); }
.footer__services ul li { color: var(--text-muted); font-size: .88rem; }
.footer__contact p { color: var(--text-muted); font-size: .88rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer__contact i { color: var(--accent); font-size: .9rem; width: 18px; text-align: center; }
.footer__contact a { color: var(--text-muted); }
.footer__contact a:hover { color: var(--accent-light); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .06); padding: 20px 24px; text-align: center; }
.footer__bottom p { font-size: .8rem; color: var(--text-muted); }

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 900; padding: 12px 16px; background: var(--primary-dark); border-top: 1px solid rgba(255, 255, 255, .1); }
.sticky-cta__btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; background: var(--accent); color: var(--white); font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; border-radius: var(--radius-sm); }

/* ---------- Back to Top ---------- */
.back-to-top { position: fixed; bottom: 80px; right: 24px; width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: var(--white); border: none; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(20px); transition: opacity .3s, transform .3s, background .2s; z-index: 800; box-shadow: 0 4px 16px rgba(0, 0, 0, .3); }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-dark); }

/* ---------- Fade-in Animation ---------- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- WordPress Page Template Styles ---------- */
.page-main { padding: 140px 0 80px; min-height: 60vh; background: var(--dark-1); }
.page-container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.page-title { font-size: 2.4rem; margin-bottom: 32px; color: var(--text-white); }
.entry-content h2 { font-size: 1.5rem; margin: 32px 0 16px; color: var(--text-white); }
.entry-content h3 { font-size: 1.25rem; margin: 24px 0 12px; color: var(--text-white); }
.entry-content p { margin-bottom: 16px; line-height: 1.7; color: var(--text-muted); }
.entry-content ul, .entry-content ol { margin: 0 0 16px 24px; color: var(--text-muted); }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 8px; }
.entry-content a { color: var(--accent-light); text-decoration: underline; }
.entry-content img { border-radius: var(--radius); margin: 24px 0; }
.entry-content blockquote { border-left: 4px solid var(--accent); padding: 16px 24px; margin: 24px 0; background: var(--dark-3); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--text-muted); }
.post-meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.post-thumbnail img { width: 100%; border-radius: var(--radius); margin-bottom: 32px; }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .why-us__grid { grid-template-columns: repeat(3, 1fr); }
    .contact__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-height: 80px; }

    .navbar__menu,
    .navbar__inner > ul { display: none; }
    .navbar__cta { display: none; }
    .navbar__hamburger { display: flex; }
    .navbar__logo-img { height: 50px; }

    .hero { min-height: 80vh; padding: 60px 16px; }
    .hero__usps { flex-direction: column; gap: 10px; }
    .hero__ctas { flex-direction: column; align-items: center; }
    .hero__ctas .btn { width: 100%; justify-content: center; }
    .hero__badges { flex-direction: column; align-items: center; }

    .services__grid { grid-template-columns: 1fr; }
    .service-card__img { height: 200px; }

    .about__columns { grid-template-columns: 1fr; gap: 32px; }

    .gallery__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .gallery__caption { transform: translateY(0); font-size: .8rem; padding: 10px 12px; }

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

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

    .enquiry__inner { grid-template-columns: 1fr; gap: 32px; }

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

    .footer__inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer__contact p { justify-content: center; }

    .sticky-cta { display: block; }
    .back-to-top { bottom: 90px; }

    .page-main { padding: 100px 0 60px; }

    /* Admin bar mobile offset (hero + page-main) */
    body.admin-bar .hero { padding-top: calc(60px + 46px); }
    body.admin-bar .page-main { padding-top: calc(100px + 46px); }
}

@media (max-width: 480px) {
    .why-us__grid { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr; }
    .about__highlights { grid-template-columns: 1fr; }
}
