  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #1e3a6e;
    --navy-dark: #122448;
    --navy-light: #2a4f96;
    --sky: #5aade0;
    --yellow: #F5C200;
    --white: #ffffff;
    --off-white: #f4f7fc;
    --gray-100: #e8edf5;
    --gray-300: #b0bdd0;
    --gray-500: #6b7a91;
    --gray-700: #374151;
    --text: #1a2333;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(18, 36, 72, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--yellow);
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
  }

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

  .nav-logo img {
    height: 52px; width: auto;
  }

  .nav-links {
    display: flex; gap: 2rem; list-style: none;
  }

  .nav-links a {
    color: var(--gray-300);
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
  }

  .nav-links a:hover {
    color: var(--yellow);
    border-bottom-color: var(--yellow);
  }

  .nav-cta {
    background: var(--yellow);
    color: var(--navy-dark) !important;
    padding: 8px 20px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    border-bottom: none !important;
  }

  .nav-cta:hover {
    background: #e6b400 !important;
    color: var(--navy-dark) !important;
    border-bottom: none !important;
  }

  .hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 4px;
  }

  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); transition: 0.3s;
  }

  .mobile-menu {
    display: none;
    position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
    background: var(--navy-dark);
    border-bottom: 2px solid var(--yellow);
    flex-direction: column;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    color: var(--gray-300);
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.2s, color 0.2s;
  }

  .mobile-menu a:hover { background: rgba(255,255,255,0.05); color: var(--yellow); }

  /* ── HERO ── */
  #home {
    position: relative;
    height: 100vh; min-height: 600px;
    display: flex; align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('/kitchen-electrical-upgrade-lighting-appliances.jpeg');
    background-size: cover;
    background-position: center 40%;
    filter: brightness(0.45);
  }

  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(18,36,72,0.6) 0%, rgba(18,36,72,0.2) 100%);
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 1100px; margin: 0 auto;
    padding: 0 2rem; padding-top: 80px;
  }

  .hero-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }

  .hero-logo {
    flex-shrink: 0;
  }

  .hero-logo img {
    height: 140px;
    width: auto;
    display: block;
  }

  .hero-text {
    flex: 1;
  }

  @media (max-width: 720px) {
    .hero-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .hero-logo img { height: 100px; }
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--yellow);
    color: var(--navy-dark);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 3px;
    margin-bottom: 1.2rem;
  }

  .hero-badge::before {
    content: '';
    display: block; width: 8px; height: 8px;
    background: var(--navy-dark);
    border-radius: 50%;
  }

  .hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 1.2rem;
  }

  .hero-title span { color: var(--yellow); }

  .hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    max-width: 520px;
    margin-bottom: 2rem;
    font-weight: 400;
  }

  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--yellow);
    color: var(--navy-dark);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-primary:hover { background: #e6b400; transform: translateY(-1px); }

  .btn-secondary {
    background: transparent;
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }

  .btn-secondary:hover { border-color: var(--white); color: var(--white); }

  .hero-stats {
    display: flex; gap: 2.5rem; flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  .hero-stat-num {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 3px;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--navy);
    padding: 1rem 2rem;
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 2rem;
  }

  .trust-item {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .trust-item svg { flex-shrink: 0; }

  .trust-divider {
    width: 1px; height: 20px;
    background: rgba(255,255,255,0.2);
  }

  /* ── SECTIONS ── */
  section { padding: 5rem 2rem; }

  .section-inner {
    max-width: 1100px; margin: 0 auto;
  }

  .section-label {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 10px;
  }

  .section-label::before {
    content: '';
    display: block; width: 30px; height: 2px;
    background: var(--yellow);
  }

  .section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .section-body {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.7;
  }

  /* ── SERVICES ── */
  #services { background: var(--off-white); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .service-card {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-100);
    padding: 1.75rem;
    border-top: 3px solid var(--navy);
    transition: border-top-color 0.2s, transform 0.2s, box-shadow 0.2s;
  }

  .service-card:hover {
    border-top-color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(18,36,72,0.1);
  }

  .service-icon {
    width: 44px; height: 44px;
    background: var(--navy);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
  }

  .service-icon svg { width: 22px; height: 22px; }

  .service-name {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
  }

  .service-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
  }

  /* ── ABOUT ── */
  #about { background: var(--white); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
  }

  .about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
  }

  .about-img-main {
    grid-column: 1 / -1;
    border-radius: 8px;
    overflow: hidden;
    height: 280px;
  }

  .about-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

  .about-img-sm {
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
  }

  .about-img-sm img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

  .about-text .section-body { max-width: 100%; }

  .about-text p {
    margin-bottom: 1rem;
    color: var(--gray-500);
    line-height: 1.75;
  }

  .about-credentials {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 1.5rem;
  }

  .credential-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-left: 3px solid var(--navy);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy-dark);
    font-family: var(--font-head);
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  /* ── GALLERY ── */
  #gallery { background: var(--navy-dark); }

  #gallery .section-label { color: var(--sky); }
  #gallery .section-title { color: var(--white); }
  #gallery .section-body { color: rgba(255,255,255,0.6); }

  .gallery-filters {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin: 2rem 0 1.5rem;
  }

  .filter-btn {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.2s;
  }

  .filter-btn:hover, .filter-btn.active {
    background: var(--yellow);
    color: var(--navy-dark);
    border-color: var(--yellow);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
  }

  .gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
  }

  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .gallery-item:hover img { transform: scale(1.05); }

  .gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(18,36,72,0.85));
    padding: 1.5rem 1rem 0.75rem;
    color: var(--white);
    font-size: 0.82rem;
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .gallery-item:hover .gallery-caption { opacity: 1; }

  .gallery-item.hidden { display: none; }

  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--off-white); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .testimonial-card {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-100);
    padding: 1.75rem;
    position: relative;
  }

  .stars {
    display: flex; gap: 3px; margin-bottom: 1rem;
  }

  .star { color: var(--yellow); font-size: 1.1rem; }

  .testimonial-text {
    font-size: 0.97rem;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-style: italic;
  }

  .testimonial-author {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy-dark);
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .testimonial-location {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 2px;
  }

  .google-badge {
    position: absolute; top: 1.5rem; right: 1.5rem;
    font-size: 0.72rem;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-500);
    display: flex; align-items: center; gap: 4px;
  }

  /* ── SERVICE AREA ── */
  #service-area { background: var(--white); }

  .area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
  }

  .area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 1.5rem;
  }

  .area-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.95rem;
    color: var(--gray-700);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .area-item::before {
    content: '';
    display: block; width: 8px; height: 8px;
    background: var(--navy);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .area-note {
    margin-top: 1.5rem;
    background: var(--navy);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .area-note strong { color: var(--yellow); }

  .area-map-placeholder {
    background: var(--off-white);
    border: 2px dashed var(--gray-300);
    border-radius: 8px;
    height: 380px;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 1rem;
    color: var(--gray-500);
    text-align: center;
    padding: 2rem;
  }

  .area-map-placeholder svg { opacity: 0.4; }

  .area-map-placeholder p { font-size: 0.9rem; }

  /* ── CONTACT / QUOTE ── */
  #contact { background: var(--navy-dark); }

  #contact .section-label { color: var(--sky); }
  #contact .section-title { color: var(--white); }
  #contact .section-body { color: rgba(255,255,255,0.6); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
  }

  .contact-info { color: var(--white); }

  .contact-info-item {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 1.75rem;
  }

  .contact-info-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
  }

  .contact-info-label {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 3px;
  }

  .contact-info-value {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
  }

  .contact-info-value a {
    color: var(--white);
    transition: color 0.2s;
  }

  .contact-info-value a:hover { color: var(--yellow); }

  .quote-form {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem 2rem;
  }

  .form-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
  }

  .form-subtitle {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
  }

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

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 5px;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

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

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--navy);
    background: var(--white);
  }

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

  .form-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }

  .form-submit:hover { background: var(--navy-light); }

  .form-note {
    font-size: 0.78rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 0.75rem;
  }

  /* ── FOOTER ── */
  footer {
    background: #0b1829;
    color: rgba(255,255,255,0.55);
    padding: 2rem;
    text-align: center;
  }

  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
  }

  .footer-logo img { height: 42px; }

  .footer-links {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
  }

  .footer-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--yellow); }

  .footer-copy {
    font-size: 0.78rem;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  /* ── LIGHTBOX ── */
  .lightbox {
    display: none;
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.92);
    align-items: center; justify-content: center;
  }

  .lightbox.open { display: flex; }

  .lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 4px;
    object-fit: contain;
  }

  .lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: none; cursor: pointer;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }

  .lightbox-close:hover { background: rgba(255,255,255,0.2); }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .about-grid, .contact-grid, .area-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-images { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 720px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .trust-divider { display: none; }
    .trust-bar { gap: 1rem; }
    .hero-stats { gap: 1.5rem; }
    .about-img-sm { height: 140px; }
  }

  @media (max-width: 480px) {
    section { padding: 3.5rem 1.25rem; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .area-list { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; align-items: center; }
  }
