:root{
  --bg-dark:#0b0b0d;
  --bg-dark-2:#141418;
  --bg-dark-3:#1b1b21;
  --surface:#17171c;
  --surface-2:#202028;

  --primary:#00a86b;
  --primary-dark:#008c59;

  --accent:#c73333;
  --accent-dark:#a62828;

  --text:#f5f5f5;
  --text-soft:#c9c9c9;
  --text-muted:#9ca3af;

  --dark-text:#16181d;
  --line:rgba(255,255,255,.08);

  --card:#1a1a20;
  --card-light:#ffffff;

  --shadow:0 18px 40px rgba(0,0,0,.35);
  --shadow-soft:0 10px 24px rgba(0,0,0,.22);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg-dark);
  overflow-x:hidden;
}

img,
video{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
}

button,
input,
select,
textarea{
  font:inherit;
}

.container{
  width:92%;
  max-width:1200px;
  margin:0 auto;
}

/* HEADER */
.header{
  background:rgba(11,11,13,.94);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(10px);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
  flex-wrap:wrap;
}

.logo{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.logo-mark{
  font-weight:900;
  letter-spacing:1px;
  color:var(--accent);
  font-size:1.55rem;
}

.logo-sub{
  font-size:12px;
  color:var(--text-soft);
  font-weight:800;
  letter-spacing:.7px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.main-nav a{
  text-decoration:none;
  font-weight:800;
  color:var(--text);
  font-size:14px;
  transition:.2s ease;
}

.main-nav a:hover{
  color:var(--primary);
}

/* Dropdown */
.dropdown{
  position:relative;
  display:inline-block;
}

.dropbtn{
  border:none;
  background:transparent;
  cursor:pointer;
  font-weight:800;
  color:var(--text);
  font-size:14px;
  padding:0;
  transition:.2s ease;
}

.dropbtn:hover{
  color:var(--primary);
}

.dropdown-content{
  display:none;
  position:absolute;
  top:28px;
  left:0;
  background:var(--surface);
  min-width:230px;
  box-shadow:var(--shadow);
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--line);
}

.dropdown-content a{
  display:block;
  padding:12px 14px;
  text-decoration:none;
  font-weight:700;
  color:var(--text);
}

.dropdown-content a:hover{
  background:rgba(255,255,255,.04);
  color:var(--primary);
}

.dropdown:hover .dropdown-content{
  display:block;
}

/* Buttons */
.btn-primary,
.btn-dark,
.btn-green,
.btn-outline{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  color:#fff;
  padding:12px 20px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.2px;
  box-shadow:0 10px 22px rgba(0,168,107,.28);
  transition:.25s ease;
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(0,168,107,.32);
}

.btn-dark{
  background:linear-gradient(135deg,#111317,#22252c);
  color:#fff;
  padding:12px 20px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  border:1px solid rgba(255,255,255,.08);
  transition:.25s ease;
}

.btn-dark:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.16);
}

.btn-green{
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  color:#fff;
  padding:12px 20px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  transition:.25s ease;
  box-shadow:0 10px 20px rgba(0,168,107,.24);
}

.btn-green:hover{
  transform:translateY(-2px);
}

.btn-outline{
  border:2px solid rgba(255,255,255,.9);
  color:#fff;
  padding:12px 20px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  transition:.25s ease;
}

.btn-outline:hover{
  background:#fff;
  color:var(--dark-text);
}

/* HERO */
.hero{
  position:relative;
  padding:84px 0 65px;
  background:#0b0b0d;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("pic/logo1.png") no-repeat 5% 10%;
  background-size:800px;
  opacity:.06;
  pointer-events:none;
  z-index:0;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(0,168,107,.12), transparent 40%),
    radial-gradient(circle at left center, rgba(199,51,51,.12), transparent 40%);
  z-index:1;
}

.hero-content{
  position:relative;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:40px;
  align-items:center;
  z-index:2;
}

.hero-kicker{
  color:#d1d5db;
  font-weight:800;
  margin:0 0 12px;
  letter-spacing:.8px;
  text-transform:uppercase;
  font-size:.9rem;
}

.hero-text h1{
  margin:0;
  color:#fff;
  font-size:58px;
  line-height:.96;
  text-transform:uppercase;
  letter-spacing:.3px;
}

.hero-text .accent{
  color:var(--accent);
  font-weight:900;
  text-shadow:0 2px 16px rgba(199,51,51,.18);
}

.hero-text .thin{
  font-weight:900;
  color:#f8fafc;
}

.check-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:22px 0 26px;
}

.check{
  display:flex;
  gap:9px;
  align-items:center;
  color:#fff;
  font-weight:800;
  background:rgba(255,255,255,.06);
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.06);
  backdrop-filter:blur(3px);
}

.check span{
  display:inline-flex;
  width:22px;
  height:22px;
  border-radius:50%;
  align-items:center;
  justify-content:center;
  background:var(--primary);
  color:#fff;
  font-size:13px;
  font-weight:900;
}

.hero-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* HERO COLLAGE */
.hero-collage{
  position:relative;
  height:380px;
}

.photo{
  position:absolute;
  background:var(--surface);
  padding:10px;
  border-radius:16px;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.08);
}

.photo img{
  border-radius:12px;
  height:100%;
  object-fit:cover;
}

.p1{
  top:0;
  left:10px;
  width:260px;
  transform:rotate(-5deg);
}

.p2{
  top:78px;
  right:0;
  width:265px;
  transform:rotate(4deg);
}

.p3{
  bottom:0;
  left:80px;
  width:300px;
  transform:rotate(1.5deg);
}

.hero-wave{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:130px;
  background:linear-gradient(158deg, transparent 44%, var(--accent) 44% 65%, var(--bg-dark) 65%);
  z-index:2;
}

/* WELCOME */
.welcome{
  padding:78px 0 60px;
  text-align:center;
  background:linear-gradient(180deg,var(--bg-dark) 0%, var(--bg-dark-2) 100%);
}

.welcome h2{
  margin:0;
  font-size:42px;
  letter-spacing:.3px;
  color:#fff;
  text-transform:uppercase;
}

.teal{
  color:var(--primary);
}

.green-line{
  width:100px;
  height:6px;
  margin:18px auto 18px;
  background:linear-gradient(90deg,var(--accent),var(--primary));
  border-radius:999px;
}

.welcome-text{
  max-width:920px;
  margin:0 auto 30px;
  color:var(--text-soft);
  line-height:1.8;
  font-size:1.02rem;
}

.trust-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  max-width:950px;
  margin:0 auto;
}

.trust-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px 20px;
  box-shadow:var(--shadow-soft);
}

.trust-icon{
  width:52px;
  height:52px;
  border-radius:14px;
  background:linear-gradient(135deg,rgba(0,168,107,.18),rgba(199,51,51,.16));
  color:var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin:0 auto 12px;
  font-weight:900;
}

.trust-title{
  font-weight:900;
  color:#fff;
  font-size:1.04rem;
}

.trust-sub{
  color:var(--text-muted);
  font-weight:700;
  margin-top:6px;
}

/* SECTION HEAD */
.section-head{
  text-align:center;
  margin-bottom:28px;
}

.section-head h2{
  margin:0;
  font-size:36px;
  color:#fff;
  text-transform:uppercase;
}

.section-head p{
  margin:10px 0 0;
  color:var(--text-soft);
  font-weight:700;
}

/* SERVICES */
.services{
  padding:68px 0 78px;
  background:linear-gradient(180deg,var(--bg-dark-2) 0%, var(--bg-dark-3) 100%);
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}

.card{
  background:var(--card);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow-soft);
  border:1px solid var(--line);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  border-color:rgba(0,168,107,.28);
}

.circle-img{
  width:100%;
  height:220px;
  border-radius:18px;
  overflow:hidden;
  margin-bottom:18px;
  border:1px solid rgba(255,255,255,.06);
}

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

.card h3{
  font-size:1.15rem;
  margin:0 0 10px;
  color:#fff;
}

.card p{
  font-size:.95rem;
  line-height:1.6;
  color:var(--text-soft);
  margin:0 0 12px;
}

.read-more{
  display:inline-block;
  margin-top:12px;
  color:var(--primary);
  font-weight:700;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.3px;
  font-size:.9rem;
}

.read-more:hover{
  color:#fff;
}

.services-cta{
  text-align:center;
  margin-top:40px;
}

/* WORK VIDEOS */
#work-videos .service-grid{
  max-width:760px;
  margin:0 auto;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
}

#work-videos .card{
  padding:16px;
}

#work-videos .circle-img{
  height:auto;
  border-radius:18px;
  overflow:hidden;
}

#work-videos video{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:14px;
  background:#000;
}

#work-videos h3{
  font-size:1rem;
}

#work-videos p{
  font-size:.9rem;
  line-height:1.55;
}

/* SPLIT SECTIONS */
.split{
  padding:78px 0;
  background:var(--bg-dark);
}

.split.alt{
  background:linear-gradient(180deg,var(--bg-dark-2) 0%, var(--bg-dark) 100%);
}

.split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:46px;
  align-items:center;
}

.split-text h2{
  margin:0;
  font-size:40px;
  color:#fff;
  text-transform:uppercase;
}

.green-line.left{
  margin:16px 0;
}

.split-text p{
  color:var(--text-soft);
  line-height:1.8;
  font-size:1rem;
}

.bullets{
  margin:16px 0 24px;
  padding-left:20px;
  color:#fff;
  font-weight:800;
}

.bullets li{
  margin:9px 0;
}

.note{
  color:var(--text-muted);
  font-weight:700;
}

.split-media img{
  border-radius:20px;
  box-shadow:var(--shadow);
  height:390px;
  width:100%;
  object-fit:cover;
  border:1px solid var(--line);
}

/* COMMERCIAL */
.commercial{
  position:relative;
  padding:88px 0;
  background:
    linear-gradient(rgba(11,11,13,.82), rgba(11,11,13,.82)),
    url("pic/pic2.jpg") center/cover no-repeat;
}

.commercial-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg,rgba(199,51,51,.12),rgba(0,168,107,.12));
}

.commercial-grid{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1.08fr;
  gap:42px;
  align-items:center;
}

.commercial-text{
  color:#fff;
}

.commercial-text h2{
  margin:0;
  font-size:42px;
  text-transform:uppercase;
}

.commercial-text p{
  color:rgba(255,255,255,.92);
  line-height:1.8;
  font-weight:600;
  max-width:560px;
}

.commercial-collage{
  position:relative;
  height:390px;
}

.cphoto{
  position:absolute;
  background:var(--surface);
  padding:10px;
  border-radius:14px;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.08);
}

.cphoto img{
  border-radius:9px;
  height:100%;
  object-fit:cover;
}

.c1{
  top:0;
  left:0;
  width:280px;
  transform:rotate(-6deg);
}

.c2{
  top:110px;
  right:0;
  width:260px;
  transform:rotate(5deg);
}

.c3{
  bottom:0;
  left:72px;
  width:305px;
  transform:rotate(1deg);
}

/* AREAS */
.areas{
  padding:70px 0;
  background:var(--bg-dark-2);
}

.area-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
  margin-top:22px;
}

.area{
  background:linear-gradient(180deg,#1a1a20,#22222a);
  padding:15px 10px;
  border-radius:13px;
  text-align:center;
  font-weight:900;
  color:#fff;
  border:1px solid var(--line);
}

/* BOOKING */
.booking{
  padding:76px 0;
  background:linear-gradient(135deg,#08090b,#17181d);
  color:#fff;
}

.booking-head{
  text-align:center;
  margin-bottom:26px;
}

.booking-head h2{
  margin:0;
  font-size:46px;
  letter-spacing:1px;
  text-transform:uppercase;
}

.booking-head p{
  margin:10px 0 0;
  color:var(--text-soft);
  font-weight:800;
}

.booking-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:start;
}

.booking-image{
  position:relative;
  border:2px solid var(--primary);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.before-tag{
  position:absolute;
  top:14px;
  left:14px;
  background:var(--accent);
  color:#fff;
  font-weight:900;
  padding:8px 12px;
  border-radius:10px;
  letter-spacing:.4px;
  z-index:2;
}

.booking-image img{
  height:520px;
  width:100%;
  object-fit:cover;
}

.booking-form{
  background:var(--card-light);
  color:var(--dark-text);
  border-radius:18px;
  padding:24px;
  box-shadow:var(--shadow);
}

.booking-form label{
  display:block;
  font-weight:900;
  margin:10px 0 6px;
  color:#374151;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.4px;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
  width:100%;
  padding:12px 13px;
  border-radius:12px;
  border:1px solid #d1d5db;
  outline:none;
  font-weight:700;
  background:#fff;
  color:#111;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
  border-color:rgba(0,168,107,.7);
  box-shadow:0 0 0 3px rgba(0,168,107,.14);
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.booking-form button{
  border:none;
  cursor:pointer;
  margin-top:14px;
  min-height:46px;
}

.form-note{
  margin:10px 0 0;
  color:#6b7280;
  font-weight:800;
  line-height:1.6;
}

/* FOOTER */
.footer{
  background:#08090b;
  color:#d1d5db;
  padding:42px 0 16px;
  border-top:1px solid var(--line);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:24px;
  align-items:start;
}

.footer h4{
  margin:0 0 10px;
  color:#fff;
  text-transform:uppercase;
}

.footer a{
  color:#d1d5db;
  text-decoration:none;
  font-weight:700;
}

.footer a:hover{
  text-decoration:underline;
  color:var(--primary);
}

.footer-note{
  color:var(--text-muted);
  font-weight:700;
  margin-top:10px;
  line-height:1.7;
}

.footer-bottom{
  margin-top:26px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  color:#9ca3af;
  font-weight:700;
}

/* PAGE HERO */
.page-hero{
  padding:120px 0 70px;
  background:
    linear-gradient(rgba(11,11,13,.8), rgba(11,11,13,.82)),
    url("pic/pic4.jpg") center/cover no-repeat;
  color:#fff;
  border-bottom:1px solid var(--line);
}

.page-hero h1{
  font-size:clamp(2rem, 5vw, 3.5rem);
  margin-bottom:12px;
  text-transform:uppercase;
}

.page-subtext{
  max-width:700px;
  font-size:1.05rem;
  line-height:1.7;
  color:rgba(255,255,255,.88);
}

.services-page{
  padding-top:70px;
  padding-bottom:80px;
}

/* DASHBOARD STATUS LEGEND */
.status-legend{
  background:white;
  padding:20px;
  border-radius:12px;
  margin:25px 0;
  box-shadow:0 8px 18px rgba(0,0,0,0.06);
}

.status-legend h3{
  margin-bottom:12px;
  color:#111;
}

.legend-items{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
}

.legend-item{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  color:#111;
}

.legend-color{
  width:18px;
  height:18px;
  border-radius:6px;
}

.legend-new{
  background:#facc15;
}

.legend-pending{
  background:#f97316;
}

.legend-contacted{
  background:#22c55e;
}

.legend-completed{
  background:#38bdf8;
}

.legend-archived{
  background:#6b7280;
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .area-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .hero-text h1{
    font-size:48px;
  }

  .commercial-text h2,
  .split-text h2,
  .booking-head h2{
    font-size:38px;
  }
}

@media (max-width: 980px){
  .main-nav{
    display:none;
  }

  .nav{
    align-items:flex-start;
  }

  .hero::before{
    background-size:420px;
    opacity:.05;
  }

  .hero-content{
    grid-template-columns:1fr;
  }

  .hero-collage{
    height:320px;
  }

  .trust-row{
    grid-template-columns:1fr;
  }

  .split-grid{
    grid-template-columns:1fr;
  }

  .commercial-grid{
    grid-template-columns:1fr;
  }

  .booking-grid{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:44px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  #work-videos .service-grid{
    max-width:680px;
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  #work-videos video{
    height:280px;
  }
}

@media (max-width: 768px){
  body{
    font-size:15px;
  }

  .container{
    width:94%;
  }

  .nav{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-buttons{
    width:100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline,
  .hero-buttons .btn-dark,
  .hero-buttons .btn-green{
    width:100%;
  }

  .service-grid{
    grid-template-columns:1fr;
  }

  .booking-grid{
    grid-template-columns:1fr;
  }

  .two-col{
    grid-template-columns:1fr;
  }

  .booking-form{
    padding:18px;
  }

  .booking-image img{
    height:320px;
  }

  .welcome h2,
  .section-head h2,
  .split-text h2,
  .commercial-text h2,
  .booking-head h2{
    font-size:30px;
    line-height:1.15;
  }

  .hero-text h1{
    font-size:38px;
    line-height:1.02;
  }

  .hero-kicker,
  .section-head p,
  .welcome-text,
  .split-text p,
  .commercial-text p,
  .booking-head p,
  .page-subtext{
    line-height:1.7;
  }

  .split-media img{
    height:300px;
  }

  .card{
    padding:18px;
  }

  .circle-img{
    height:210px;
  }

  .footer{
    text-align:left;
  }

  .footer-grid{
    gap:18px;
  }

  .page-hero{
    padding:90px 0 55px;
  }
}

@media (max-width: 700px){
  .area-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero::before{
    background-size:290px;
    background-position:center 32%;
    opacity:.04;
  }

  .hero-collage{
    height:280px;
  }

  .p1{width:190px;}
  .p2{width:190px;}
  .p3{width:220px; left:35px;}

  .commercial-collage{
    height:310px;
  }

  .c1{width:210px;}
  .c2{width:190px;}
  .c3{width:220px; left:30px;}

  #work-videos .service-grid{
    max-width:360px;
    grid-template-columns:1fr;
  }

  #work-videos video{
    height:240px;
  }
}

@media (max-width: 560px){
  .logo-mark{
    font-size:1.3rem;
  }

  .logo-sub{
    font-size:11px;
  }

  .hero{
    padding:64px 0 48px;
  }

  .hero-text h1{
    font-size:32px;
  }

  .hero-kicker{
    font-size:.82rem;
  }

  .check-row{
    gap:10px;
  }

  .check{
    width:100%;
    justify-content:flex-start;
    border-radius:14px;
  }

  .hero-collage,
  .commercial-collage{
    display:none;
  }

  .welcome{
    padding:60px 0 44px;
  }

  .services,
  .split,
  .commercial,
  .areas,
  .booking,
  .services-page{
    padding-top:56px;
    padding-bottom:56px;
  }

  .welcome h2,
  .section-head h2,
  .split-text h2,
  .commercial-text h2,
  .booking-head h2{
    font-size:26px;
  }

  .section-head{
    margin-bottom:22px;
  }

  .card{
    padding:16px;
    border-radius:18px;
  }

  .circle-img{
    height:190px;
    margin-bottom:14px;
  }

  .card h3{
    font-size:1.02rem;
  }

  .card p{
    font-size:.92rem;
  }

  .area{
    font-size:.92rem;
    padding:13px 8px;
  }

  .booking-form{
    padding:16px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea{
    padding:12px;
    font-size:16px;
  }

  .before-tag{
    top:10px;
    left:10px;
    font-size:.8rem;
    padding:7px 10px;
  }

  .footer{
    padding:34px 0 14px;
  }

  .page-hero h1{
    font-size:2rem;
  }

  .page-subtext{
    font-size:.96rem;
  }
}

@media (max-width: 420px){
  .container{
    width:95%;
  }

  .btn-primary,
  .btn-dark,
  .btn-green,
  .btn-outline{
    width:100%;
    padding:12px 16px;
  }

  .hero-buttons{
    gap:10px;
  }

  .area-grid{
    grid-template-columns:1fr;
  }

  .booking-image img{
    height:260px;
  }

  .green-line{
    width:72px;
    height:5px;
  }
}