@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --primary: #f28b00; /* Builderan orange */
  --primary-hover: #d97d00;
  --secondary: #122131; /* Deep navy */
  --secondary-light: #1e334a;
  --text-dark: #222222;
  --text-body: #666666;
  --bg-light: #f5f6f8;
  --white: #ffffff;
  --border: #e6e6e6;
  --font-heading: 'Jost', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: all 0.3s ease-in-out;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
}

html { overflow-x: hidden; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text-body); line-height: 1.6; background: var(--white); overflow-x: hidden; max-width: 100vw; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--secondary); font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; width: 100%; }
.section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--secondary); color: var(--white); }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }

.btn { display: inline-block; padding: 12px 26px; font-family: var(--font-heading); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--secondary); color: var(--white); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: var(--primary); color: var(--white); }

/* --- TOP BAR --- */
.top-bar { background: var(--secondary); color: #ccc; padding: 10px 0; font-size: 14px; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar ul { display: flex; gap: 20px; }
.top-bar ul li { display: flex; align-items: center; gap: 8px; }
.top-bar svg { width: 16px; height: 16px; fill: var(--primary); }

/* --- HEADER --- */
.header { background: var(--white); padding: 12px 0; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap; gap: 10px; }
.header-logo img { max-height: 52px; object-fit: contain; }
.main-nav ul { display: flex; gap: 18px; flex-wrap: nowrap; }
.main-nav a { font-family: var(--font-heading); font-size: 13px; font-weight: 600; color: var(--secondary); text-transform: uppercase; padding: 8px 0; position: relative; white-space: nowrap; }
.main-nav a:hover { color: var(--primary); }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.main-nav a:hover::after { width: 100%; }
.header-action { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.call-btn { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 700; color: var(--secondary); font-size: 15px; white-space: nowrap; }
.call-btn svg { width: 22px; height: 22px; fill: var(--primary); }
.hamburger { display: none; font-size: 26px; cursor: pointer; color: var(--secondary); }

/* --- HERO --- */
.hero { position: relative; height: 90vh; min-height: 600px; display: flex; align-items: center; background-size: cover; background-position: center; z-index: 1; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(18, 33, 49, 0.7); z-index: -1; }
.hero-content { max-width: 800px; }
.hero-subtitle { color: var(--primary); font-family: var(--font-heading); font-size: 20px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; display: block; }
.hero-title { color: var(--white); font-size: 58px; font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
.hero-text { color: #e0e0e0; font-size: 18px; margin-bottom: 40px; max-width: 600px; }
.hero-btns { display: flex; gap: 20px; }

/* --- SECTION TITLES --- */
.sec-subtitle { color: var(--primary); font-family: var(--font-heading); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.sec-subtitle::before { content: ''; width: 30px; height: 2px; background: var(--primary); }
.sec-title { font-size: 34px; margin-bottom: 20px; position: relative; padding-bottom: 20px; }
.text-center .sec-subtitle { justify-content: center; }
.text-center .sec-subtitle::before, .text-center .sec-subtitle::after { content: ''; width: 30px; height: 2px; background: var(--primary); }

/* --- ABOUT --- */
.about-wrap { display: flex; gap: 50px; align-items: center; }
.about-img { flex: 1; position: relative; }
.about-img img { border-radius: 8px; box-shadow: var(--shadow); }
.exp-box { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: var(--white); padding: 25px 30px; border-radius: 8px; text-align: center; box-shadow: var(--shadow); }
.exp-num { font-family: var(--font-heading); font-size: 42px; font-weight: 800; line-height: 1; }
.exp-text { font-size: 14px; font-weight: 600; text-transform: uppercase; }
.about-content { flex: 1; }
.about-text { margin-bottom: 30px; font-size: 18px; }
.about-features { margin-bottom: 40px; }
.about-features li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: var(--secondary); }
.about-features svg { fill: var(--primary); width: 24px; height: 24px; }

/* --- SERVICES --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.service-card { background: var(--white); padding: 30px; border-radius: 8px; box-shadow: var(--shadow); transition: var(--transition); border-bottom: 4px solid transparent; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-8px); border-bottom-color: var(--primary); box-shadow: var(--shadow-hover); }
.service-icon { margin-bottom: 18px; width: 52px; height: 52px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.service-icon svg { width: 26px; height: 26px; fill: var(--primary); }
.service-card:hover .service-icon { background: var(--primary); }
.service-card:hover .service-icon svg { fill: var(--white); }
.service-title { font-size: 20px; margin-bottom: 12px; }
.service-desc { margin-bottom: 20px; }
.service-link { font-family: var(--font-heading); font-weight: 700; color: var(--secondary); text-transform: uppercase; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; }
.service-link:hover { color: var(--primary); }
.service-link svg { width: 14px; height: 14px; fill: currentColor; }

/* --- UNIVERSAL BOOKING FORM --- */
.booking-section { background: url('../images/hero-construction.png') center/cover fixed; position: relative; padding: 100px 0; }
.booking-section::before { content: ''; position: absolute; inset: 0; background: rgba(18, 33, 49, 0.9); }
.booking-container { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 8px; box-shadow: var(--shadow); }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-control { width: 100%; padding: 15px; border: 1px solid var(--border); border-radius: 4px; font-family: var(--font-body); font-size: 16px; background: var(--bg-light); transition: var(--transition); outline: none; }
.form-control:focus { border-color: var(--primary); background: var(--white); }
textarea.form-control { height: 120px; resize: vertical; }

/* --- TRUST ELEMENTS --- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.trust-item { text-align: center; padding: 24px 20px; background: var(--white); border-radius: 8px; box-shadow: var(--shadow); transition: var(--transition); }
.trust-item:hover { transform: translateY(-5px); }
.trust-icon { margin: 0 auto 16px; width: 64px; height: 64px; background: rgba(242, 139, 0, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.trust-icon svg { width: 32px; height: 32px; fill: var(--primary); }
.trust-title { font-size: 17px; margin-bottom: 8px; }

/* --- AREAS WE SERVE --- */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.area-item { background: var(--secondary); color: var(--white); border-radius: 4px; font-family: var(--font-heading); font-size: 18px; font-weight: 600; border-left: 4px solid var(--primary); transition: var(--transition); position: relative; overflow: hidden; }
.area-item a { display: block; padding: 24px 20px; color: var(--white); text-decoration: none; width: 100%; height: 100%; }
.area-item:hover { background: var(--primary); border-left-color: var(--secondary); }

/* --- FOOTER --- */
.footer { background: #0b141d; color: #a0a0a0; padding: 80px 0 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-logo { display: block; margin-bottom: 20px; }
.footer-logo img { max-height: 55px; filter: brightness(0) invert(1); opacity: 0.9; display: block; object-fit: contain; }
.footer-about { margin-bottom: 20px; }
.footer-widget h4 { color: var(--white); font-size: 22px; margin-bottom: 25px; position: relative; padding-bottom: 15px; }
.footer-widget h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--primary); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-links svg { width: 12px; height: 12px; fill: var(--primary); }
.footer-contact li { display: flex; gap: 15px; margin-bottom: 20px; }
.footer-contact svg { width: 20px; height: 20px; fill: var(--primary); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 25px 0; text-align: center; font-size: 14px; }
.footer-bottom-links { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
.footer-bottom-links a:hover { color: var(--primary); }

/* --- STICKY CTA BAR (Desktop + Mobile) --- */
.sticky-cta { display: flex; position: fixed; top: 0; left: 0; width: 100%; background: var(--secondary); z-index: 3000; box-shadow: 0 3px 16px rgba(0,0,0,0.18); }
.sticky-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 10px; font-family: var(--font-heading); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--white); text-decoration: none; transition: var(--transition); border-right: 1px solid rgba(255,255,255,0.12); }
.sticky-cta a:last-child { border-right: none; }
.sticky-cta a.cta-call { background: var(--secondary); }
.sticky-cta a.cta-call:hover { background: #1e334a; }
.sticky-cta a.cta-book { background: var(--primary); }
.sticky-cta a.cta-book:hover { background: var(--primary-hover); }
.sticky-cta svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
body { padding-top: 50px; }
.header { top: 50px; }
@media (min-width: 768px) {
  .sticky-cta { top: auto; bottom: 20px; left: auto; right: 30px; max-width: 420px; border-radius: 50px; overflow: hidden; box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
  .sticky-cta a { padding: 14px 22px; font-size: 13px; }
  body { padding-top: 0; }
  .header { top: 0; }
}
/* hide old mobile-cta if it exists */
.mobile-cta { display: none !important; }


/* --- BREADCRUMB HERO --- */
.page-hero { height: 400px; background: url('../images/hero-construction.png') center/cover; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(18, 33, 49, 0.8); }
.page-title { color: var(--white); font-size: 50px; position: relative; z-index: 2; margin-bottom: 15px; }
.breadcrumb { position: relative; z-index: 2; color: #ccc; font-family: var(--font-heading); font-size: 16px; font-weight: 500; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { color: var(--white); }

/* --- PROJECT PHOTO STRIP (on service pages) --- */
.project-photos { padding: 80px 0; background: var(--bg-light); }
.project-photos .sec-title { margin-bottom: 40px; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.photo-grid img { width: 100%; height: 260px; object-fit: cover; border-radius: 6px; transition: var(--transition); cursor: pointer; }
.photo-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-hover); }
.photo-grid .wide { grid-column: span 2; }
.photo-grid .wide img { height: 260px; }

/* --- GALLERY PAGE --- */
.gallery-page { padding: 80px 0; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 50px; }
.filter-btn { padding: 10px 28px; border: 2px solid var(--border); background: transparent; color: var(--secondary); font-family: var(--font-heading); font-size: 15px; font-weight: 600; border-radius: 4px; cursor: pointer; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.gallery-grid { columns: 3; gap: 15px; }
.gallery-item { break-inside: avoid; margin-bottom: 15px; position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(18,33,49,0.6); opacity: 0; transition: var(--transition); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-family: var(--font-heading); font-size: 15px; font-weight: 600; background: var(--primary); padding: 6px 18px; border-radius: 4px; }
.gallery-item-overlay svg { width: 40px; height: 40px; fill: white; }

/* --- LIGHTBOX --- */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: fixed; top: 20px; right: 30px; font-size: 42px; color: white; cursor: pointer; line-height: 1; font-weight: 300; }
.lightbox-close:hover { color: var(--primary); }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); font-size: 50px; color: white; cursor: pointer; line-height: 1; font-weight: 200; user-select: none; }
.lightbox-prev { left: 15px; }
.lightbox-next { right: 15px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--primary); }
.lightbox-caption { position: fixed; bottom: 20px; left: 0; right: 0; text-align: center; color: #ccc; font-family: var(--font-heading); font-size: 15px; }

/* --- SERVICE PAGE PHOTO GALLERY INLINE --- */
.service-gallery { padding: 0 0 80px; }
.service-gallery .sec-subtitle { margin-bottom: 8px; }
.service-gallery .sec-title { margin-bottom: 35px; }
.sgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.sgrid-item { overflow: hidden; border-radius: 6px; }
.sgrid-item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s ease; display: block; }
.sgrid-item:hover img { transform: scale(1.05); }
.sgrid-item.tall img { height: 456px; }

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
  .main-nav ul { gap: 14px; }
  .main-nav a { font-size: 12px; }
  .call-btn { font-size: 13px; }
  .call-btn svg { width: 18px; height: 18px; }
}
@media (max-width: 991px) {
  .hero-title { font-size: 42px; }
  .about-wrap { flex-direction: column; }
  .exp-box { right: 10px; bottom: -15px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid .wide { grid-column: span 2; }
  .gallery-grid { columns: 2; }
  .sgrid { grid-template-columns: 1fr 1fr; }
  .sgrid-item.tall img { height: 220px; }
  .sec-title { font-size: 28px; }
}
@media (max-width: 767px) {
  .top-bar { display: none; }
  .main-nav { display: none; }
  .header-action .btn { display: none; }
  .call-btn { display: none; }
  .hamburger { display: block; }
  /* prevent horizontal scroll */
  .container { padding: 0 12px; }
  .section { padding: 50px 0; }
  .hero { height: 70vh; min-height: 400px; }
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 13px; }
  .hero-text { font-size: 14px; margin-bottom: 25px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { text-align: center; width: 100%; }
  /* All grids collapse to 1 column */
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid .wide { grid-column: span 1; }
  .gallery-grid { columns: 1; }
  .sgrid { grid-template-columns: 1fr 1fr; }
  .sgrid-item.tall img { height: 200px; }
  .sgrid-item img { height: 160px; }
  .lightbox-prev { left: 5px; }
  .lightbox-next { right: 5px; }
  .sec-title { font-size: 22px; }
  .sec-subtitle { font-size: 13px; }
  /* About section */
  .about-wrap { flex-direction: column; gap: 30px; }
  .about-img { width: 100%; }
  .exp-box { right: 10px; bottom: -10px; padding: 15px 18px; }
  .exp-num { font-size: 28px; }
  .exp-text { font-size: 12px; }
  /* Footer */
  .footer { padding: 40px 0 0; }
  .footer-top { gap: 25px; }
  .footer-widget h4 { font-size: 18px; margin-bottom: 15px; }
  /* Booking */
  .booking-section { padding: 50px 0; }
  .booking-container { padding: 25px 15px; }
  /* Page hero */
  .page-title { font-size: 32px; }
  /* Service gallery grid */
  .service-gallery { padding: 0 0 40px; }
}




