*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #FFA500;
  --orange-dark: #E08C00;
  --black: #111111;
  --black-soft: #1a1a1a;
  --dark: #222222;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', Arial, sans-serif; font-size: 16px; line-height: 1.6; color: var(--black); background: var(--white); }
a { color: inherit; text-decoration: none; }

/* NAV */
header { position: sticky; top: 0; z-index: 100; background: rgba(17,17,17,0.97); backdrop-filter: blur(8px); border-bottom: 1px solid #2a2a2a; }
nav { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { flex-shrink: 1; min-width: 0; overflow: hidden; }
.nav-logo img { height: 40px; width: auto; max-width: 100%; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 600; color: #ffffff; transition: color 0.2s, background 0.2s; padding: 6px 12px; border-radius: 6px; }
.nav-links a:hover { color: #ffffff; background: #FFA500; padding: 6px 12px; border-radius: 6px; }
.nav-cta { background: var(--orange) !important; color: var(--black) !important; padding: 8px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px !important; }
.nav-cta:hover { background: #FFA500 !important; color: #ffffff !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--white); flex-shrink: 0; width: 36px; height: 36px; align-items: center; justify-content: center; }

/* HERO */
.hero { background: var(--white); border-bottom: 1px solid #e5e5e5; padding: 2.5rem 1.5rem; text-align: center; }
.hero-inner { max-width: 680px; margin: 0 auto; }
.hero-logo { max-width: 640px; width: 95%; height: auto; margin: 0 auto 1.5rem; display: block; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,165,0,0.12); border: 1px solid rgba(255,165,0,0.4); color: var(--orange-dark); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 100px; margin-bottom: 1.5rem; letter-spacing: 0.05em; text-transform: uppercase; }
.hero h1 { font-size: clamp(2rem, 5.5vw, 3.2rem); font-weight: 700; line-height: 1.15; color: var(--black); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.hero h1 span { color: var(--orange); }
.hero .tagline { font-size: 1.1rem; color: #666; font-style: italic; margin-bottom: 1rem; }
.hero p { font-size: 16px; color: #555; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 13px 26px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; border: none; font-family: inherit; }
.btn-primary { background: var(--orange); color: var(--black); }
.btn-primary:hover { background: #FFA500; color: #ffffff; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--black); border: 1.5px solid #bbb; border-radius: var(--radius-sm); }
.btn-secondary:hover { background: #FFA500; color: #ffffff; border-color: #FFA500; transform: translateY(-1px); }

/* STATS BAR */
.stats-bar { background: var(--dark); border-bottom: 1px solid #2a2a2a; padding: 1.25rem 1.5rem; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-item .num { font-size: 22px; font-weight: 700; color: var(--orange); }
.stat-item .lbl { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* SECTION */
.section { max-width: 1100px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.section-eyebrow { font-size: 11px; font-weight: 700; color: var(--orange-dark); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.75rem; }
.section-heading { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--black); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.section-sub { font-size: 15px; color: #666; max-width: 520px; margin-bottom: 2.5rem; line-height: 1.7; }
.orange-rule { height: 3px; background: var(--orange); width: 48px; border-radius: 2px; margin-bottom: 1.25rem; }

/* SERVICES */
#services { background: #111111; border-top: 1px solid #2a2a2a; border-bottom: 1px solid #2a2a2a; }
#services .section-eyebrow { color: var(--orange); }
#services .section-heading { color: #ffffff; }
#services .section-sub { color: #cccccc; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { background: #ffffff; border: 1.5px solid #111111; border-radius: var(--radius-lg); padding: 1.5rem; transition: border-color 0.2s, transform 0.2s; }
.service-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.service-card h3 { font-size: 15px; font-weight: 600; color: #111111; margin-bottom: 6px; }
.service-card p { font-size: 13px; color: #444444; line-height: 1.5; }

/* WHY US */
#why-us { background: var(--white); border-bottom: 1px solid #e5e5e5; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.why-card { border-left: 3px solid var(--orange); padding-left: 1.25rem; }
.why-card h3 { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.why-card p { font-size: 13px; color: #666; line-height: 1.6; }

/* CONTACT */
#contact { background: #ffffff; border-top: 1px solid #e5e5e5; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; }
.contact-info h3 { font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 1.25rem; }
.contact-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1.1rem; padding: 0.6rem 0.5rem; border-radius: var(--radius-sm); }
.contact-row .ci { width: 38px; height: 38px; border-radius: var(--radius-sm); background: rgba(255,165,0,0.1); border: 1px solid rgba(255,165,0,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.contact-row .ct { font-size: 14px; color: #666; line-height: 1.6; padding-top: 6px; }
.contact-row .ct strong { display: block; font-weight: 600; color: var(--black); font-size: 13px; margin-bottom: 1px; }
.contact-row .ct a { color: var(--orange-dark); }
.contact-row .ct a:hover { text-decoration: underline; }

@media (min-width: 769px) {
  .whatsapp-callout { margin-top: auto; }
}

.whatsapp-callout { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 1.25rem; background: #25D366; color: #ffffff; font-weight: 700; font-size: 14px; text-align: center; padding: 12px 18px; border-radius: var(--radius-md); }
.whatsapp-callout svg { flex-shrink: 0; color: #ffffff; }

/* ENQUIRY FORM */
.enquiry-box { background: #f7f7f7; border: 1px solid #e5e5e5; border-radius: var(--radius-lg); padding: 1.75rem; display: flex; flex-direction: column; }
.enquiry-box h3 { font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 1.25rem; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 11px; font-weight: 700; color: #888; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.07em; }
.field input, .field select, .field textarea { width: 100%; padding: 10px 12px; font-size: 14px; font-family: inherit; color: var(--black); background: var(--white); border: 1.5px solid #ddd; border-radius: var(--radius-sm); transition: border-color 0.2s; appearance: none; -webkit-appearance: none; }
.field input::placeholder, .field textarea::placeholder { color: #aaa; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,165,0,0.12); }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-color: var(--white); padding-right: 36px; }
.form-submit { width: 100%; padding: 12px; background: #25D366; color: #ffffff; border: none; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; font-family: inherit; cursor: pointer; margin-top: 4px; transition: background 0.2s; }
.form-submit:hover { background: #111111; color: #ffffff; }

/* GALLERY */
#gallery { background: #111111; border-top: 1px solid #2a2a2a; border-bottom: 1px solid #2a2a2a; }
#gallery .section-eyebrow { color: var(--orange); }
#gallery .section-heading { color: #ffffff; }
#gallery .section-sub { color: #cccccc; }
.project-row { border: 1px solid #333333; border-radius: var(--radius-lg); overflow: hidden; background: #1a1a1a; margin-bottom: 24px; }
.project-row:last-child { margin-bottom: 0; }
.project-header { display: flex; align-items: center; gap: 12px; padding: 1rem 1.25rem; border-bottom: 1px solid #2a2a2a; }
.project-header h3 { font-size: 16px; font-weight: 600; color: #ffffff; }
.project-header .tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; background: rgba(255,165,0,0.12); color: var(--orange-dark); padding: 3px 10px; border-radius: 100px; }
.project-carousel { position: relative; }
.pc-track-outer { overflow: hidden; }
.pc-track { display: flex; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.pc-slide { flex: 0 0 100%; position: relative; }
.pc-slide img { width: 100%; height: 380px; object-fit: cover; display: block; }
.pc-slide .img-placeholder { width: 100%; height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: #f4f4f4; color: #aaa; font-size: 13px; text-align: center; padding: 2rem; }
.pc-slide .img-placeholder svg { opacity: 0.3; }
.pc-slide-label { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 4px; }
.pc-slide-label.before { background: #FFA500; color: #111111; }
.pc-slide-label.during { background: #FFA500; color: #111111; }
.pc-slide-label.after { background: #FFA500; color: #111111; }
.pc-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.92); border: 1px solid #ddd; box-shadow: 0 2px 8px rgba(0,0,0,0.15); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 5; transition: background 0.2s; }
.pc-btn:hover { background: var(--orange); border-color: var(--orange); }
.pc-btn:hover svg { stroke: var(--black); }
.pc-btn svg { stroke: #333; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.pc-btn.prev { left: 10px; }
.pc-btn.next { right: 10px; }
.pc-btn:disabled { opacity: 0.25; pointer-events: none; }
.pc-dots { display: flex; justify-content: center; gap: 6px; padding: 0.75rem; }
.pc-dots button { width: 7px; height: 7px; border-radius: 50%; border: none; background: #ddd; cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s; }
.pc-dots button.active { background: var(--orange); transform: scale(1.35); }

/* FOOTER */
footer { background: #111111; border-top: 1px solid #2a2a2a; padding: 1rem 1.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-powered { font-size: 12px; color: #ffffff; text-decoration: none; transition: color 0.2s; }
.footer-powered:hover { color: #FFA500; }
.footer-copy { font-size: 12px; color: #ffffff; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #111111;
    border-bottom: 1px solid #2a2a2a;
    padding: 0.75rem 1.5rem 1.25rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 200;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { display: block; padding: 12px 8px; text-align: left; }
  .nav-links.open .nav-cta { text-align: center; margin-top: 8px; }
  nav { position: relative; }
  .hamburger { display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 480px) { .hero { padding: 3rem 1.25rem 2.5rem; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } }