/* =====================
   RESET & BASE
===================== */
/* force hamburger to right side */
.hamburger{
  grid-column: 3;
  justify-self: end;
}


* { margin: 0; padding: 0; box-sizing: border-box; }

:root{
  --teal: #63cdda;
  --black: #000;
  --white: #fff;
  --text: #111;
  --max: 1200px;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
}

img{ max-width: 100%; display: block; }

/* =====================
   HEADER / NAV
===================== */
.site-header{
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.site-nav{
  display: flex;
  gap: 20px;
  align-items: center;

  grid-column: 2;
  justify-content: center;
  width: 100%;
  margin: 0;
}


.brand{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand h1{
  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: 1px;
  line-height: 1;
}


.site-nav a{
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  opacity: 0.95;
}

.site-nav a:hover{ opacity: 1; }
.site-nav a.active_nav{ color: var(--teal); }

.call-now{
  background: var(--teal);
  color: var(--black);
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 900;
  border-radius: 2px;
  white-space: nowrap;
}

/* FORCE hamburger only on mobile */
/* hide the checkbox (removes the white square) */
#nav-toggle{
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hamburger{ display: none; }

@media (max-width: 900px){
  .hamburger{
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .hamburger span{
    display: block !important;
    width: 26px !important;
    height: 3px !important;
    background: #fff !important;
    margin: 0 !important;
    border-radius: 2px;
  }
}


.btn{
  display: inline-block;
  background: var(--teal);
  color: var(--black);
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 900;
  border-radius: 2px;
}

.btn.light{
  background: var(--white);
  color: var(--black);
}

.btn.small{
  padding: 10px 16px;
  font-size: 0.95rem;
}

/* =====================
   SECTIONS / LAYOUT
===================== */
.section{ padding: 80px 20px; }
.container{ max-width: var(--max); margin: 0 auto; }

.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.photo-card img{
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.big-title{
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.accent-line{
  color: var(--teal);
  font-weight: 800;
  margin-bottom: 16px;
}

.body-text{ margin-bottom: 18px; }

/* =====================
   FEATURES ICONS
===================== */
.features{
  background: #fff;
  padding: 70px 20px;
}

.features-wrap{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  text-align: center;
}

.icon-circle{
  width: 110px;
  height: 110px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-circle i{
  color: #fff;
  font-size: 44px;
}

.feature p{
  margin-top: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

/* =====================
   FOOTER
===================== */
footer{
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 20px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1000px){
  .features-wrap{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px){
  .hamburger{ display: flex; }

  .site-nav{
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background: #000;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    margin-left: 0;
    align-items: center;
  }

  .site-nav a{
    display: block;
    padding: 14px 20px;
    width: 100%;
    text-align: center;
  }

  /* toggle menu */

  #nav-toggle:checked ~ .site-nav{ display: flex; }

  .call-now{
    display: none; /* keep it clean on mobile */
  }

  .split{ grid-template-columns: 1fr; gap: 28px; }
  .big-title{ font-size: 2.1rem; }
}

@media (max-width: 500px){
  .features-wrap{ grid-template-columns: 1fr; }
}


/* ===== Eastside-style hero positioning (bottom-left) ===== */
.hero-bottom-left{
  align-items: flex-end;      /* push content to bottom */
  padding-bottom: 90px;       /* space from bottom */
}

.hero-content{
  text-align: left;
}

.hero-content h1{
  text-transform: uppercase;
}

.hero-sub{
  font-size: 1.3rem;
  font-weight: 800;
  margin: 10px 0 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Process / Steps section ===== */
.process{
  background: #fff;
  text-align: center;
}

.process-title{
  font-size: 2.4rem;
  margin-bottom: 50px;
}

.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-card{
  background: #fff;
  padding: 40px 26px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.process-card i{
  font-size: 42px;
  color: var(--teal);
  margin-bottom: 18px;
}

.process-card h3{
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.process-card p{
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1000px){
  .process-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .process-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== Recent Projects ===== */
.recent-projects{
  background: #fff;
}

.projects-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.projects-header h2{
  font-size: 2.4rem;
}

.projects-grid{
  display: grid;
  gap: 24px;
}

.projects-grid.two-images{
  grid-template-columns: repeat(2, 1fr);
}

.project-card{
  overflow: hidden;
  border-radius: 6px;
}

.project-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hover effect (optional but nice) */
.project-card img{
  transition: transform 0.4s ease;
}
.project-card:hover img{
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 800px){
  .projects-grid.two-images{
    grid-template-columns: 1fr;
  }
}

/* ===== Contact strip (Eastside style) ===== */
.contact-strip{
  background:#000;
  padding:90px 20px;
  text-align:center;
}

.contact-strip-title{
  color: var(--teal);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 40px;
}

.contact-form{
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 34px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.contact-form input,
.contact-form textarea{
  width:100%;
  background:#3b3b3b;
  border: 1px solid #555;
  color:#fff;
  padding:16px 18px;
  border-radius: 6px;
  margin-bottom:18px;
  font-size: 1rem;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: rgba(255,255,255,0.8);
}

.contact-form textarea{
  resize: vertical;
  min-height: 170px;
}

.contact-form-bottom{
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
  gap: 1px;
  margin-top: 6px;
}

.captcha{
  display:flex;
  align-items:center;
  gap: 10px;
  color:#fff;
  font-weight: 700;
}

.captcha input{
  width: 90px;
  margin: 0;
  padding: 14px 12px;
}

.btn-outline{
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 14px 26px;
  font-size: 1.2rem;
  border-radius: 6px;
  cursor: pointer;
}

.btn-outline:hover{
  background: var(--teal);
  color:#000;
}

/* Mobile */
@media (max-width: 600px){
  .contact-form{ padding: 22px; }
}

/* ABOUT: / home: icon strip layout (mobile fixed) */
.icon-strip{
  background: #fff;
  padding: 50px 0;
}

.icon-row{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;


  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  text-align: center;
  align-items: start;
}

.icon-item{
  display: grid;
  justify-items: center;
  gap: 18px;
  min-width: 0;
  width: 100%;
}

.icon-strip .icon-circle{
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--teal);
  display: grid;
  place-items: center;
  font-size: 40px;}


.icon-item p{
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: #111;}

/*Tablet*/
@media (max-width: 1000px){.icon-row{grid-template-columns: repeat(2, 1fr); }}


/* Make it 2 per row on tablets */
@media (max-width: 900px){
  .icon-row{
    justify-content: center;
  }
  .icon-item{
    min-width: 260px;
  }
}

/* Make it 1 per row on mobile */
@media (max-width: 520px){
  .icon-item{
    min-width: 100%;
  }
}




/* PROJECTS PAGE GRID */
.projects-title{
  text-align:center;
  font-size: 3rem;
  margin-bottom: 50px;
}

.projects-page-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 across like screenshot */
  gap: 40px;
  justify-items: center;
}

.projects-page-grid img{
  width: 100%;
  max-width: 340px;      /* keeps them neat */
  aspect-ratio: 4 / 3;   /* same size boxes */
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* Button under the grid */
.projects-btn-row{
  text-align:center;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 1100px){
  .projects-page-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px){
  .projects-page-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .projects-page-grid{ grid-template-columns: 1fr; }
  .projects-page-grid img{ max-width: 100%; }
}


/* ===============================
   SERVICES PAGE SPACING FIX
   =============================== */


/* Hero content spacing */
.hero .container {
  padding: 40px 20px;
}

.hero h1 {
  margin-bottom: 10px;
}

.hero .sub {
  margin-bottom: 20px;
}

/* Section spacing */
.Services-page .section { padding: 50px 0;}


/* "What we do" title */
.process-title {
  margin-bottom: 30px;
}

/* Services grid layout */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Service cards text spacing */
.proc h3 {
  margin-bottom: 8px;
}

.proc p {
  margin: 0;
  line-height: 1.5;
}

/* Footer spacing */

.services-page footer { padding: 20px 0; margin-top: 40px; }

.work-section{
  position: relative;
  padding: 90px 20px;
  background: linear-gradient(
    120deg,
    #000 0%,
    #000 35%,
    #0c2233 60%,
    #000 100%
  );
  overflow: hidden;
}

/* diagonal light streaks */
.work-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(
      120deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.04) 2px,
      transparent 2px,
      transparent 120px
    );
  pointer-events:none;
}

.work-wrap{
  position: relative;
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 420px 1fr;
  gap:70px;
  align-items:center;
}

.work-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
  box-shadow:0 25px 70px rgba(0,0,0,.6);
}

.work-content h2{
  font-size: clamp(48px, 6vw, 90px);
  line-height:.95;
  margin:0 0 20px;
  font-weight:900;
  color:#63cbd6;
}

.work-content p{
  font-size:22px;
  margin:0 0 26px;
  color:#fff;
  font-weight:700;
}

.work-btn{
  display:inline-block;
  background:#63cbd6;
  color:#fff;
  text-decoration:none;
  font-weight:900;
  padding:14px 30px;
  border-radius:3px;
}

/* responsive */
@media(max-width:900px){
  .work-wrap{
    grid-template-columns:1fr;
  }
  .work-image img{
    height:420px;
  }
}





.single-project{
  max-width:1200px;
  margin:80px auto;
  padding:0 20px;
}

.single-project h2{
  text-align:center;
  font-size:42px;
  margin-bottom:40px;
}

.single-project-wrap{
  display:flex;
  justify-content:center;
}

.single-project-wrap img{
  width:100%;
  max-width:900px;
  height:auto;
  border-radius:6px;
}


/* ===== Split hero like screenshot ===== */
.split-hero{
  background:#fff;
  padding: 60px 0;
}

.split-hero__wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.1fr 1fr; /* image slightly bigger */
  gap: 60px;
  align-items: center;
}

.split-hero__media{
  background:#fff;
}

.split-hero__media img{
  width: 100%;
  height: 520px;         /* controls image height */
  object-fit: cover;     /* keeps it nice like screenshot */
  display: block;
}

.split-hero__content h1{
  margin: 0 0 18px;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 900;
  color: #000;
}

.split-hero__lead{
  margin: 0 0 20px;
  font-size: 22px;
  line-height: 1.5;
  color: #58c6d3;  /* light blue text like screenshot */
  font-weight: 500;
}

.split-hero__text{
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  max-width: 520px;
}

.split-hero__btn{
  display: inline-block;
  background: #58c6d3;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .5px;

  padding: 14px 26px;
  border-radius: 0; /* square like screenshot */
}

.split-hero__btn:hover{
  filter: brightness(0.95);
}

/* ===== Mobile responsive ===== */
@media (max-width: 900px){
  .split-hero__wrap{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-hero__media img{
    height: 380px;
  }

  .split-hero__content h1{
    font-size: 40px;
  }
}






/* ===== About split section ===== */
.about-split{
  background:#fff;
  padding: 80px 0;
}

.about-split__wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 0.9fr; /* image slightly smaller */
  gap: 70px;
  align-items: center;
}

/* TEXT */
.about-split__content h2{
  margin: 0 0 22px;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: #000;
}

.about-split__lead{
  font-size: 22px;
  line-height: 1.6;
  color: #58c6d3;
  margin-bottom: 34px;
  max-width: 520px;
}

/* BUTTON */
.about-split__btn{
  display: inline-block;
  background: #58c6d3;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  padding: 14px 28px;
  letter-spacing: .5px;
}

.about-split__btn:hover{
  filter: brightness(0.95);
}

/* IMAGE */
.about-split__image img{
  width: 71%;
  height: 350px;        /* 👈 smaller than screenshot */
  border-radius: 50%;
  object-fit: cover;
  display: block;

}

/* MOBILE */
@media (max-width: 900px){
  .about-split__wrap{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-split__content h2{
    font-size: 40px;
  }

  .about-split__image img{
    height: 360px;
  }
}






/* CONTACT QUICK */
.contact-quick{
  padding: 70px 20px;
  background: #0b0f14;
  color: #fff;
}

.contact-quick .wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.contact-quick h2{
  margin: 0 0 8px;
  font-size: 2rem;
  letter-spacing: .5px;
}

.contact-sub{
  margin: 0 0 26px;
  opacity: .85;
}

.contact-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-card{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  text-decoration: none;
  color: #fff;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.contact-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
}

.icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(99, 203, 214, .18);
  color: #63cbd6;
  font-size: 20px;
}

.phone-icon{
  font-size: 0;
}

.contact-text strong{
  display: block;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.contact-text span{
  display: block;
  opacity: .85;
}

/* Responsive */
@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
}


/*facebook logo */

.facebook-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  background:#1877F2;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  border-radius:10px;
  transition:0.2s ease;
}

.facebook-link:hover{
  background:#145dbf;
  transform: translateY(-1px);
}

.fb-icon{
  width:22px;
  height:22px;
  fill:white;
}


/*instagram logo*/
.instagram-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  border-radius:10px;
  transition:0.2s ease;
}

.instagram-link:hover{
  opacity:0.9;
  transform: translateY(-1px);
}

.ig-icon{
  width:22px;
  height:22px;
  fill:white;
}


/*youtube logo*/

.youtube-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  background:#FF0000;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  border-radius:10px;
  transition:0.2s ease;
}

.youtube-link:hover{
  background:#cc0000;
  transform: translateY(-1px);
}

.yt-icon{
  width:22px;
  height:22px;
  fill:white;
}


.sf-btn.whatsapp{
  background:#25D366;
}

.sf-btn.call{
  background:#0bbcd6;
}



.social-fixed{
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.sf-btn{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  transition: 0.25s ease;
}

.sf-btn svg{
  width: 22px;
  height: 22px;
  fill: white;
}

.sf-btn:hover{
  transform: scale(1.1);
}

/* Colors */
.sf-btn.facebook{ background:#1877F2; }
.sf-btn.instagram{
  background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4);
}
.sf-btn.youtube{ background:#FF0000; }



/* ===== COLORBOND RANGE (HOME) ===== */
.colors{ background:#fff; }

.colors .color-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap:30px;
  justify-items:center;
}

.swatch{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.swatch span{
  display:block;
  width:170px;
  height:170px;
  min-width:170px;
  min-height:170px;
  border-radius:999px;
  margin:0 auto 14px;
}

.swatch p{
  margin:0;
  font-weight:900;
}


/* ===== PROCESS (MATCH FEATURES STYLE) ===== */
.process.features-style{
  background:#fff;
  padding: 70px 0;
  text-align:center;
}

.process.features-style .process-row{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.process.features-style .process-circle{
  width: 110px;
  height: 110px;
  background: var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  font-size: 40px;
}

.process.features-style h3{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .04em;
}

.process.features-style p{
  margin: 0 auto;
  max-width: 260px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* responsive */
@media (max-width: 900px){
  .process.features-style .process-row{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px){
  .process.features-style .process-row{
    grid-template-columns: 1fr;
  }
}




@media (max-width:768px) {

h1 {
  font-size: 22px;
}
}



/* === FIX HEADER LOGO SIZE (prevents oversized menu) === */
.logo-wrap img{
  height: 62px;
  width: auto;
  max-width: none;
}

/* optional: keep header tidy */
.site-header .nav-wrap{
  align-items: center;
}







/* ===== HERO (responsive) ===== */
.hero{
  width: 100%;
  height: 550px;          /* desktop height */
  overflow: hidden;
}

.hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills box nicely */
  object-position: center;/* change this if you want the focus higher/lower */
  display: block;
}



/* ===== HERO (responsive) ===== */
.hero{
  width: 100%;
  height: 550px;          /* desktop height */
  overflow: hidden;
}

.hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills box nicely */
  object-position: center;/* change this if you want the focus higher/lower */
  display: block;
}


/* =========================
   SERVICES HERO (FULL IMAGE - NO CROP)
========================= */
.services-hero{
  width: 100%;
  height: auto;          /* let image decide height */
  overflow: visible;     /* no cropping */
  line-height: 0;        /* removes small gap under image */
}

.services-hero-img{
  width: 100%;
  height: auto;          /* keeps full banner */
  display: block;
  object-fit: contain;   /* IMPORTANT: no crop */
}

/* Mobile */
@media (max-width: 768px){
  .services-hero{
    height: auto;
  }
}