* {
  box-sizing: border-box;
}
.menu-toggle {
  display: none;
}
header{
    display:flex;
    justify-content:space-between;
    background-color:#0D0D0D;
    padding-left:30px;
    padding-right:30px;
    padding-top:30px;
    padding-bottom:30px;
}
.logo-group{
    font-size:40px;
    font-family: 'Barlow', sans-serif;
    font-weight:700;
    margin:0;
      text-transform: uppercase;
  letter-spacing: 0.05em;
}
.logo{
   display:flex;
   flex-direction:column;
   gap:0;
   line-height:1;
}

a{
    text-decoration: none;
}
body{
    margin:0;
    padding:0;
}
.logo-big{
    color:#FFFFFF;
}
.yellow{
    color:#D4911E;
}
.logo-small{
    color:#AAAAAA;
     font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 400;
   margin: 0;
  letter-spacing: 0.2em;   
  text-transform: uppercase;
}
nav{
    display:flex;
    align-items:center;
    gap:32px;
    flex:1;
    justify-content:center;
}
nav a{
    color:#FFFFFF;
    font-family:'Barlow', sans-serif;
    font-size:20px;
    font-weight:500;
}
nav a:hover{
    color:#F5A623;
   transform: scale(1.1);
}
.header-btn{
    padding:25px;
    background-color:#F5A623;
    border-radius:15px;
    color:#0D0D0D;
    font-size:20px;
    font-family:'Barlow', sans-serif;
    
  
}
.header-btn:hover{
    transform: scale(1.1);
}
.hero {
  background-image: url('images/hero-photo.jpg');  /* your construction photo */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;  /* pushes left content up, boxes to bottom */
  padding: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 10%, rgba(0,0,0,0.2) 100%);  /* dark on left, fades right */
  z-index: 0;
}

.hero * {
  position: relative;
  z-index: 1;
}

.left-hero {
  max-width: 500px;          /* keeps text on the left side only */
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.small-hero {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #F5A623;             /* yellow label */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px;            /* huge bold headline */
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 0.95;          
    margin: 0;
}

.hero h2 {
  font-family: 'Dancing Script', cursive;  /* script font for "Into Reality" */
  font-size: 60px;
  font-weight: 700;
  color: #F5A623;             /* yellow */
  margin: 0;
  line-height: 1;
}

.description {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #CCCCCC;             /* light gray */
  line-height: 1.7;
  margin: 0;
  max-width: 340px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.hero-btn-contact {
  font-family: 'Barlow', sans-serif;
  background-color: #F5A623;  /* yellow button */
  color: #0D0D0D;             /* dark text */
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border-radius: 10px;
}
.hero-btn-contact:hover{
   transform: scale(1.1);
}

.hero-btn-projects {
  font-family: 'Barlow', sans-serif;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border-radius: 10px;
}
.hero-btn-projects:hover{
    border:2px solid #F5A623;
   transform: scale(1.1);
   color:#D4911E;
}

.hero-boxes {
  display: flex;
  gap: 0;
  background-color: rgba(13, 13, 13, 0.85);  /* dark transparent bar */
  border-radius: 8px;
  padding: 20px 30px;
  align-self: flex-end;       /* sits at the bottom right */
  width: fit-content;
}

.box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid #2A2A2A;  /* divider between boxes */
}

.box:last-child {
  border-right: none;         /* no divider after the last box */
}

.box-left {
  width: 36px;
  height: 36px;
   border-radius: 50%;
    background-color: transparent;  /* CHANGED — removes the yellow circle hiding the icon */
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-left i {
  font-size: 24px;          /* icon size */
  color: #F5A623;           /* yellow icon color */
}
.number {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.box-description {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #AAAAAA;             /* muted gray */
  margin: 0;
}
.second-hero {
  display: flex;              /* puts all three columns side by side */
  background-color: #FFFFFF;  /* white background */
  padding: 60px;
  gap: 40px;
  align-items: flex-start;
}

.first-section {
  width: 220px;               /* fixed narrow left column */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.small {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #F5A623;             /* yellow label */
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0;
}

.first-section h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #0D0D0D;             /* dark text */
  margin: 0;
  line-height: 1.2;
}

.first-section .description {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #555555;             /* muted gray */
  line-height: 1.7;
  margin: 0;
}

.learn-btn {
  font-family: 'Barlow', sans-serif;
  background-color: #0D0D0D;  /* dark button */
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 20px;
  border-radius: 4px;
  width: fit-content;
  display: block;
}

.learn-btn:hover {
  background-color: #1A1A1A;  /* slightly lighter on hover */
}

/* service cards */
.second-section {
  display: flex;              /* puts all 4 cards in a row */
  gap: 16px;
  flex: 1;                    /* takes up middle space */
}

.second-boxes {
  flex: 1;                    /* equal width cards */
  display: flex;
  flex-direction: column;     /* stacks image, icon, title, description */
  gap: 12px;
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;  /* subtle border */
  border-radius: 8px;
  overflow: hidden;           /* clips image to card corners */
  padding-bottom: 16px;
  transition:box-shadow 0.2s ease;
}
.second-boxes:hover{
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
 border-color:#F5A623; 
}

.second-boxes img {
  width: 100%;                /* fills card width */
  height: 180px;              /* fixed image height */
  object-fit: cover;          /* crops nicely */
  display: block;
}
.card-body{
    padding:16px;
    display:flex;
    flex-direction: column;
    gap:10px;
    flex:1;
}
.box-icon{
    width:40px;
    height:40px;
    background-color:#F5A623;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.box-icon i{
    color:#0D0D0D;
    font-size:18px;
}
.second-boxes .box-icon {
  width: 36px;
  height: 36px;
  background-color: #F5A623;  /* yellow icon background */
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px;
}

.second-boxes .box-icon i {
  color: #0D0D0D;             /* dark icon on yellow */
  font-size: 16px;
}

.second-big {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0;
  padding: 0 16px;            /* side padding inside card */
  line-height: 1.2;
}

.second-boxes .box-description {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #777777;             /* muted gray */
  margin: 0;
  padding: 0 16px;
  line-height: 1.5;
  flex:1;
}
.card-arrow{
    color:#F5A623; 
    font-size:18px;
    align-self:flex-end;
}

.third-section {
  width: 350px;               /* fixed right column */
  flex-shrink: 0;
  background-color: #1A1A1A;  /* dark background */
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.third-big {
  font-family: 'Barlow', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  display: inline;            /* keeps "Get a Free Quote" on same line flow */
}

.third-big.yellow {
  color: #F5A623;             /* yellow for "Free" */
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #AAAAAA;             /* muted label */
}

.form-input {
  background-color: #2A2A2A;  /* dark input background */
  border: 1px solid #333333;  /* subtle border */
  color: #FFFFFF;             /* white typed text */
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 4px;
  outline: none;
}

.form-input::placeholder {
  color: #555555;             /* muted placeholder */
}

.select {
  background-color: #2A2A2A;  /* dark dropdown */
  border: 1px solid #333333;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 4px;
  outline: none;
  width: 100%;
  
}

button[type="submit"] {
  background-color: #F5A623;  /* yellow submit button */
  color: #0D0D0D;             /* dark text */
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top:30px;
}

button[type="submit"]:hover {
  background-color: #D4911E;  /* darker yellow on hover */
}
.fourth-section{
    background-color:#0D0D0D;
    padding:90px;
    text-align:center;
    margin:0 auto;

}
h3{
    color:#D4911E;
    font-size:30px;
    font-family:'Barlow', sans-serif;
    margin-bottom:50px;
}
footer{
    display:flex;
    justify-content:space-between;
    padding-right:30px;
    padding-left:30px;
    padding-top:30px;
    background-color:#0D0D0D;
    padding-bottom:30px;
}
hr{
    border:none;
border-top:1px solid #D4911E;
margin:0;
}
.footer-txt{
    color:#E0E0E0;
    font-family:'Barlow', sans-serif;
    font-size:15px;
}
/* HERO */
.portfolio-hero {
  background-image: url('images/portfolio-hero.jpg');  /* dark building photo */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 30vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px;
}

.portfolio-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.75);  /* dark overlay */
  z-index: 0;
}

.portfolio-hero * {
  position: relative;
  z-index: 1;
}

.portfolio-hero h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 65px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.portfolio-hero h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #F5A623;           /* yellow subtitle */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 8px 0 0;
}


.second-portfolio-hero {
  background-color: #FFFFFF;
  padding: 20px 60px 60px;
}

.portfolio-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* 4 columns */
  gap: 24px;
  
}

.portfolio-box {
  display: flex;
  flex-direction: column;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  
}

.portfolio-box:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #F5A623;     /* yellow border on hover */
}

.portfolio-box img {
  width: 100%;
  height: 200px;             /* fixed image height */
  object-fit: cover;
  display: block;
}

.portfolio-box-body {
  padding: 16px;
  display: flex;
  justify-content: space-between;  /* title+desc on left, arrow on right */
  align-items: center;
}

.portfolio-big {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0 0 4px;
  padding-left:10px;
}

.description-box {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #777777;            /* muted gray */
  margin: 0;
  line-height: 1.5;
  padding-left:10px;
}

.portfolio-arrow {
  color: #F5A623;            /* yellow arrow */
  font-size: 16px;
  flex-shrink: 0;
}

/* STATS BAR */
.third-portfolio-hero {
  display: flex;
  background-color: #1A1A1A;  /* dark background */
  padding: 30px 60px;
  gap: 0;
  align-items: center;
}

.portfolio-small-box {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  padding: 0 40px;
  border-right: 1px solid #2A2A2A;  /* divider between boxes */
}

.portfolio-small-box:first-child {
  padding-left: 0;
}

.portfolio-small-box:last-child {
  border-right: none;
}

.small-portfolio-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.small-portfolio-icon i {
  font-size: 28px;
  color: #F5A623;            /* yellow icon */
}

.small-portfolio-text {
  font-family: 'Barlow', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.small-portfolio-description {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #AAAAAA;            /* muted gray */
  margin: 0;
}
.portfolio-small-box i{
    font-size:30px;
    color:#D4911E;
}
/* ABOUT HERO */
.about-hero {
  background-image: url('images/about-hero.jpg');
  background-size: cover;
  background-position: center;
  min-height: 40vh;
  position: relative;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.3) 100%);
  z-index: 0;
}

.about-hero * {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.about-hero h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.about-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #F5A623;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 16px;
}

.about-hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #CCCCCC;
  line-height: 1.7;
  margin: 0;
}

/* STORY + MISSION + VISION + VALUES */
.about-second {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;  /* story wider, rest equal */
  gap: 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E0E0E0;
}

.story-box {
  padding: 50px 40px;
  border-right: 1px solid #E0E0E0;
}

.story-box h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0 0 16px;
}

.mvv-box {
  padding: 50px 30px;
  border-right: 1px solid #E0E0E0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mvv-box:last-child {
  border-right: none;
}

.mvv-box i {
  font-size: 40px;
  color: #F5A623;             /* yellow icon */
}

.mvv-box h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0;
}

.about-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.values-list li {
  font-family: 'Inter', sans-serif;
  font-size:17 px;
  color: #0D0D0D;
  display: flex;
  align-items: center;
  gap: 8px;
}

.values-list li::before {
  content: '●';
  color: #F5A623;             /* yellow bullet */
  font-size: 8px;
}

/* WHY CHOOSE US + TIMELINE */
.about-third {
  display: grid;
  grid-template-columns: 1fr 2fr;  /* why us narrower, timeline wider */
  gap: 0;
  background-color: #FFFFFF;
  padding: 0;
}

.why-us {
  padding: 50px 40px;
  border-right: 1px solid #E0E0E0;
  border-top: 1px solid #E0E0E0;
}

.why-us h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0 0 20px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-list li {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-list li i {
  color: #F5A623;             /* yellow checkmark */
  font-size: 16px;
}

.timeline-box {
  padding: 50px 40px;
  border-top: 1px solid #E0E0E0;
}

.timeline-box h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0 0 40px;
}

.timeline {
  display: flex;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 8px;                   /* aligns with dot center */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #E0E0E0;
}

.timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #F5A623;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.year {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0;
}

.timeline-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #AAAAAA;
  margin: 0;
}

.timeline-title {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0;
}

/* BOTTOM BANNER */
.about-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0D0D0D;
  padding: 40px 60px;
}

.banner-big {
  font-family: 'Barlow', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 6px;
}

.banner-small {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #AAAAAA;
  margin: 0;
}

.header-btn {
  font-family: 'Barlow', sans-serif;
  background-color: #F5A623;
  color: #0D0D0D;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border-radius: 4px;
  white-space: nowrap;
}

.banner-btn:hover {
  background-color: #D4911E;
}
/* HERO */
.hero-pricing {
  background-image: url('images/pricing-hero.jpg');
  background-size: cover;
  background-position: center;
  min-height: 35vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px;
}

.hero-pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.80);  /* dark overlay */
  z-index: 0;
}

.hero-pricing * {
  position: relative;
  z-index: 1;
}

.hero-pricing h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.hero-pricing h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #F5A623;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0;
}

/* PRICING CARDS */
.hero-second-pricing {
  background-color: #F5F5F5;
  padding: 60px;
}

.second-pricing-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;  /* 3 equal columns */
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;  
}


.prices-boxes {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  text-align: center;
 

}
.prices-boxes:hover{
    transform: scale(1.1);
    border:2px solid #F5A623;
}

/* most popular badge — add to Professional card */
.prices-boxes.popular {
  border: 2px solid #F5A623;           /* yellow border on popular card */
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F5A623;
  color: #0D0D0D;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.box-txt {
  font-family: 'Barlow', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0;
}

.prices-boxes .description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #777777;
  margin: 0;
}

.pricing {
  font-family: 'Barlow', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0;
}

.pricing.custom {
  color: #F5A623;                       /* yellow for custom quote */
  font-size: 30px;
}

.prices-boxes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;                              /* pushes button to bottom */
}

.prices-boxes ul li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prices-boxes ul li::before {
  content: '✓';
  color: #F5A623;                       /* yellow checkmark */
  font-weight: 700;
  font-size: 14px;
}

.first-btn-box {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 24px;
  border-radius: 4px;
  border: 2px solid #0D0D0D;           /* dark outline button */
  color: #0D0D0D;
  background-color: transparent;
  text-align: center;
  transition: all 0.2s ease;
}


.first-btn-box:hover {
  background-color: #0D0D0D;
  color: #FFFFFF;
}

.second-btn-box {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 24px;
  border-radius: 4px;
  background-color: #F5A623;           /* yellow filled button */
  color: #0D0D0D;
  text-align: center;
  transition: background-color 0.2s ease;
}

.second-btn-box:hover {
  background-color: #D4911E;
}

/* ADDITIONAL SERVICES */
.third-hero-pricing {
  background-color: #FFFFFF;
  padding: 60px;
  text-align: center;
}

.third-hero-pricing h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0 0 40px;
}

.service-pricing-boxes {
  display: flex;
  justify-content: space-between;
  max-width:900px;
  margin:0 auto;
  width:100%;
}

.service-pricing-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.service-left {
  width: 60px;
  height: 60px;
  background-color: #FFF8EC;           /* light yellow background for icon */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-left i {
  font-size: 28px;
  color: #F5A623;                      /* yellow icon */
}

.service-right .big {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0D0D0D;
  margin: 0 0 4px;
}

.service-right .price-from {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #AAAAAA;
  margin: 0;
}

/* FAQ */
.pricing-last {
  background-color: #1A1A1A;
  padding: 60px;
}

.faq-section h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 30px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  border-bottom: 1px solid #2A2A2A;
}

.faq-question {
  width: 100%;
  background: #2A2A2A;                 /* dark input background */
  border: none;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  padding: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
}

.faq-icon {
  color: #F5A623;
  font-size: 20px;
  font-weight: 300;
}

.faq-answer {
  display: none;
  color: #AAAAAA;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  line-height: 1.6;
}

.faq-answer.open {
  display: block;
}
/* HERO */
.contact {
  background-image: url('images/contact-hero.jpg');
  background-size: cover;
  background-position: center;
  min-height: 40vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.80);
  z-index: 0;
}

.contact * {
  position: relative;
  z-index: 1;
}

.contact h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.contact h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #F5A623;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0;
}

/* CONTACT SECTION */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 2fr;  /* left info narrower, right form wider */
  gap: 60px;
  padding: 60px;
  background-color: #FFFFFF;
  align-items: flex-start;
}

/* LEFT — GET IN TOUCH */
.contact-hero .left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-hero .left .small {
  font-family: 'Barlow', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0;
}

.address-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.address-icon {
  width: 36px;
  height: 36px;
  background-color: #FFF8EC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.address-icon i {
  color: #F5A623;
  font-size: 25px;
}

.address-item .large {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0 0 4px;
}

.address-item .description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #555555;
  margin: 0;
  line-height: 1.5;
}

/* social icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background-color: #0D0D0D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.social-icons a:hover {
  background-color: #F5A623;
}

.social-icons i {
  color: #FFFFFF;
  font-size: 20px;
}

/* RIGHT — FORM */
.right-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* two column form */
  gap: 16px;
}

.right-contact .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.right-contact .form-group:nth-child(5),
.right-contact .form-group:nth-child(6),
.right-contact .form-group:nth-child(7) {
  grid-column: 1 / -1;  /* message and budget span full width */
}

.form-label {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  line-height:1.2;
  font-weight: 600;
  color: #0D0D0D;
  margin: 0;
  padding-top:10px;
}

.form-input {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  color: #0D0D0D;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  border-color: #F5A623;           /* yellow border on focus */
}

.form-input::placeholder {
  color: #AAAAAA;
}

textarea.form-input {
  height: 120px;                   /* taller textarea for message */
  resize: vertical;
}

.select {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  color: #0D0D0D;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 4px;
  outline: none;
  width: 100%;
}

.form-submit {
  grid-column: 1 / -1;            /* spans full width */
  background-color: #F5A623;
  color: #0D0D0D;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 8px;
  transition: background-color 0.2s ease;
}

.form-submit:hover {
  background-color: #D4911E;
}

/* MAP */
.map {
  width: 100%;
  height: 400px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.white{
    color:#F5F5F5;
}
@media (max-width: 700px) {

  /* ============================================================
     HEADER
     ============================================================ */
  header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* ============================================================
     ABOUT HERO
     Same horizontal-gradient issue you've seen on the other site —
     calibrated for text in a narrow desktop column, needs to
     become a full vertical scrim once text spans the whole width.
     ============================================================ */
  .about-hero {
    padding: 50px 24px;
    min-height: 45vh;
  }
  .about-hero::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.6));
  }
  .about-hero h1 {
    font-size: 36px; /* was 60px */
  }
  .about-hero-sub {
    font-size: 15px;
  }
  .about-hero-desc {
    font-size: 16px;
  }

  /* ============================================================
     STORY + MISSION + VISION + VALUES
     4-column grid → 1 column. The border-right dividers only make
     sense side by side; swapped to border-bottom for a stacked list.
     ============================================================ */
  .about-second {
    grid-template-columns: 1fr;
  }
  .story-box,
  .mvv-box {
    border-right: none;
    border-bottom: 1px solid #E0E0E0;
    padding: 32px 24px;
  }
  .mvv-box:last-child {
    border-bottom: none;
  }

  /* ============================================================
     WHY CHOOSE US + TIMELINE
     ============================================================ */
  .about-third {
    grid-template-columns: 1fr;
  }
  .why-us {
    border-right: none;
    padding: 32px 24px;
  }
  .timeline-box {
    padding: 32px 24px;
  }

  /* The horizontal connecting line (.timeline::before) is drawn as
     a 100%-wide absolutely-positioned bar behind 4 side-by-side
     dots — it has no sensible equivalent once the items stack
     vertically, so I'm removing it rather than leaving a stray
     horizontal line floating behind a single column. */
  .timeline {
    flex-direction: column;
    gap: 24px;
  }
  .timeline::before {
    display: none;
  }

  /* ============================================================
     BOTTOM BANNER
     ============================================================ */
  .about-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 24px;
  }
  .banner-big {
    font-size: 24px;
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px;
  }
.contact {
    padding: 50px 24px;
    min-height: 35vh;
  }
  .contact h1 {
    font-size: 34px; /* was 60px */
  }
  .contact h2 {
    font-size: 16px;
  }

  /* ============================================================
     CONTACT INFO + FORM
     grid-template-columns: 1fr 2fr → stacks into one column.
     .address-box is already a flex column internally, so it needs
     no changes of its own once its parent stops sitting beside
     the form.
     ============================================================ */
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }

  /* Two-field rows (Name/Email, Phone/Project Type) stack; the
     nth-child(5) full-width rule for the message field still works
     fine here since it's a no-op in a single-column grid — nothing
     to change or remove. */
  .right-contact {
    grid-template-columns: 1fr;
  }

  /* ============================================================
     MAP
     ============================================================ */
  .map {
    height: 280px; /* was fixed 400px */
  }
/* ============================================================
   HOMEPAGE HERO
   Same horizontal-gradient issue as .about-hero — needs to
   become a vertical scrim once text spans the full width.
   ============================================================ */
.hero {
  padding: 60px 24px;
  min-height: auto;
}
.hero::before {
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.5));
}
.left-hero {
  max-width: 100%;
}
.hero h1 {
  font-size: 40px; /* was 80px */
}
.hero h2 {
  font-size: 34px; /* was 60px */
}
.description {
  max-width: 100%;
}
.hero-btns {
  flex-direction: column;
}

/* .hero-boxes is width:fit-content + align-self:flex-end, sized for
   5 items with dividers sitting in a bottom-right bar on a wide
   screen — on mobile it needs to become a full-width wrapping grid
   instead, or the 5th box gets squeezed to almost nothing. */
.hero-boxes {
  flex-wrap: wrap;
  width: 100%;
  align-self: stretch;
  padding: 16px;
  margin-top: 24px;
}
.box {
  flex: 1 1 45%; /* two per row */
  border-right: none;
  padding: 12px;
}

/* ============================================================
   SECOND HERO — Who We Are + service cards + quote form
   3 fixed-width columns (220px / flexible / 280px) all need to
   become one stacked column.
   ============================================================ */
.second-hero {
  flex-direction: column;
  padding: 40px 24px;
  gap: 32px;
}
.first-section {
  width: 100%;
}
.first-section h3 {
  font-size: 24px;
}
.second-section {
  flex-direction: column;
}
.third-section {
  width: 100%;
}

/* ============================================================
   FOURTH SECTION — CTA band
   ============================================================ */
.fourth-section {
  padding: 50px 24px;
}
.fourth-section h3 {
  font-size: 22px;
}
/* ============================================================
   PORTFOLIO HERO
   ============================================================ */
.portfolio-hero {
  padding: 50px 24px;
  min-height: 25vh;
}
.portfolio-hero h1 {
  font-size: 38px; /* was 65px */
}

/* ============================================================
   PORTFOLIO GRID
   4 columns → 1 on mobile. (2 columns would work too if you'd
   rather keep it denser — say the word and I'll adjust.)
   ============================================================ */
.second-portfolio-hero {
  padding: 20px 24px 40px;
}
.portfolio-boxes {
  grid-template-columns: 1fr;
}

/* ============================================================
   STATS BAR
   4 items with side dividers, sized for a wide row — stacks with
   bottom dividers instead of side ones, same pattern as the
   .about-second columns on the About page.
   ============================================================ */
.third-portfolio-hero {
  flex-direction: column;
  padding: 30px 24px;
  gap: 24px;
}
.portfolio-small-box {
  border-right: none;
  border-bottom: 1px solid #2A2A2A;
  padding: 0 0 24px;
  width: 100%;
}
.portfolio-small-box:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
/* ============================================================
   PRICING HERO
   ============================================================ */
.hero-pricing {
  padding: 50px 24px;
  min-height: 25vh;
}
.hero-pricing h1 {
  font-size: 38px; /* was 60px */
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.hero-second-pricing {
  padding: 40px 24px;
}
.second-pricing-boxes {
  grid-template-columns: 1fr;
}

/* ============================================================
   ADDITIONAL SERVICES ROW
   5 items in one flex row (justify-content: space-between) would
   squeeze each icon+label under 80px wide on a phone — wrapping
   into a 2-3 per row grid keeps them legible.
   ============================================================ */
.third-hero-pricing {
  padding: 40px 24px;
}
.service-pricing-boxes {
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 100%;
}
.service-pricing-box {
  flex: 1 1 40%; /* roughly 2 per row */
}
.third-section{
width:100%;
 box-sizing: border-box; 
}

/* ============================================================
   FAQ
   ============================================================ */
.pricing-last {
  padding: 40px 24px;
}
.faq-grid {
  grid-template-columns: 1fr;
}
.faq-question {
  font-size: 16px; /* was 18px */
}
nav {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  position: fixed;
  inset: 0;
  background-color: #0D0D0D;
  z-index: 999;
}
nav.open {
  display: flex;
}
nav a {
  font-size: 24px;
}
.header-btn {
  margin-left: 0;
}
.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 28px;
  cursor: pointer;
  z-index: 1000;
}

}