/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #f47b20;
  --dark: #2b2b2b;
  --dark2: #1e2d3d;
  --dark3: #3a3a3a;
  --light-gray: #f8f8f8;
  --text: #666;
  --white: #fff;
  --green: #5a8a3c;
}

html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 68px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; object-fit: cover; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 3px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-orange:hover {
  background: #d4690f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,123,32,0.4);
}

.label-text {
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.label-text.light { color: var(--orange); }

h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--dark);
}

.center { text-align: center; }

.desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

.desc.light { color: rgba(255,255,255,0.75); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(30, 28, 26, 0.95);
  backdrop-filter: blur(8px);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.2;
  max-width: 180px;
}

.navbar .logo-text {
  color: var(--white);
}

.footer .logo-text {
  color: var(--white);
  font-size: 16px;
  max-width: 200px;
}

.logo:hover {
  transform: scale(1.05);
}

.logo:hover img {
  filter: brightness(1.1);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-icons {
  display: flex;
  gap: 20px;
}

.nav-icons a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  transition: color 0.3s;
}

.nav-icons a:hover { color: var(--orange); }

/* ===== HERO ===== */
.hero {
  background: #2b2520;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(90,138,60,0.08) 0%, transparent 60%);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 24px;
}

.hero-text {
  flex: 1;
  z-index: 1;
}

.hero-text h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 36px;
}

.hero-text h1 span { color: var(--orange); }

.hero-images {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  z-index: 1;
}

.hero-img-main {
  flex: 1.6;
  border-radius: 8px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
}

.hero-img-main:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.hero-img-main img { 
  height: 100%;
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.hero-img-main:hover img {
  transform: scale(1.1);
}

.hero-img-side {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
  margin-top: 60px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
}

.hero-img-side:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.hero-img-side img { 
  height: 100%;
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.hero-img-side:hover img {
  transform: scale(1.1);
}

.hero-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding-bottom: 40px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.dot:hover {
  background: rgba(255,255,255,0.6);
  transform: scale(1.3);
}

.dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
}

.dot.active:hover {
  background: #d4690f;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

.services-left {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.services-left:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

.services-left img { 
  height: 100%;
  transition: transform 0.6s ease;
}

.services-left:hover img {
  transform: scale(1.08);
}

.services-right {
  flex: 1.2;
}

.services-right h2 { color: var(--dark); }

.service-cards {
  display: flex;
  gap: 20px;
  margin-top: 36px;
}

.service-card {
  flex: 1;
  padding: 24px 16px;
  border-radius: 6px;
  background: var(--light-gray);
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--orange);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.service-icon i {
  font-size: 22px;
  color: var(--white);
}

.service-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.service-card p {
  font-size: 12px;
  color: var(--text);
  line-height: 1.7;
}

/* ===== HOW WE WORK ===== */
.how-work {
  background: #2b2520;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.how-work::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(90,138,60,0.06) 0%, transparent 60%);
}

.how-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

.how-img {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
}

.how-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.how-img img { 
  height: 100%;
  transition: transform 0.6s ease;
}

.how-img:hover img {
  transform: scale(1.08);
}

.how-content {
  flex: 1.2;
  z-index: 1;
}

.how-content h2 { color: var(--white); }

.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-num {
  font-size: 40px;
  font-weight: 800;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  min-width: 60px;
  transition: color 0.3s;
}

.step:hover .step-num { color: var(--orange); }

.step h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.step p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===== PROJECTS ===== */
.projects {
  padding: 100px 0;
  background: var(--white);
}

.projects h2 { margin-bottom: 40px; }

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}

.project-item {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.project-item.tall {
  grid-row: 1 / 3;
}

.project-item img {
  height: 100%;
  transition: transform 0.5s ease;
}

.project-item:hover img { transform: scale(1.08); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.project-item:hover .project-overlay { opacity: 1; }

.project-overlay span {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

/* ===== UNIQUE DESIGN ===== */
.unique {
  background: var(--dark2);
  padding: 100px 0;
  overflow: hidden;
}

.unique-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

.unique-images {
  flex: 1;
  display: flex;
  gap: 12px;
}

.unique-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.unique-col img {
  border-radius: 6px;
  height: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  cursor: pointer;
}

.unique-col img:hover { 
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.unique-col.offset { margin-top: 40px; }

.unique-content {
  flex: 1.1;
  z-index: 1;
}

.unique-content h2 { color: var(--white); }

.unique-stats {
  display: flex;
  gap: 36px;
  margin: 32px 0;
}

.stat {
  transition: transform 0.3s ease;
  cursor: default;
}

.stat:hover {
  transform: translateY(-4px);
}

.stat h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  transition: color 0.3s ease;
}

.stat:hover h3 {
  color: #ff8c3a;
}

.stat p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.stat:hover p {
  color: rgba(255,255,255,0.8);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--light-gray);
}

.testimonials h2 { margin-bottom: 50px; }

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

.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
  border-top: 3px solid transparent;
}

.testimonial-card:hover,
.testimonial-card.active {
  border-top-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.google-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.google-stars i {
  font-size: 18px;
  color: #fbbc04;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--orange);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=95');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 28, 26, 0.72);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.cta-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 50px 48px;
  max-width: 420px;
  text-align: center;
  transition: all 0.4s ease;
}

.cta-box:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(244,123,32,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cta-box h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-box p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 28px;
}

/* ===== NEWS ===== */
.news {
  padding: 100px 0;
  background: var(--white);
}

.news h2 { margin-bottom: 50px; }

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.news-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.news-card:hover .news-text h3 {
  color: var(--orange);
}

.news-img {
  height: 220px;
  overflow: hidden;
}

.news-img img {
  height: 100%;
  transition: transform 0.5s;
}

.news-card:hover .news-img img { transform: scale(1.06); }

.news-body {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  align-items: flex-start;
}

.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  border-radius: 6px;
  padding: 10px 14px;
  min-width: 60px;
  flex-shrink: 0;
}

.news-date .day {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.news-date .month {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

.news-text { flex: 1; }

.news-cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}

.news-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-text p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.read-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.read-more:hover { gap: 10px; }

/* ===== CONTACT FORM ===== */
.contact-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-icon i {
  font-size: 20px;
  color: var(--white);
}

.contact-info-item:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(244,123,32,0.3);
}

.contact-info-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,123,32,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px 30px;
  font-size: 14px;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer .logo { color: var(--green); margin-bottom: 16px; display: block; }

.footer-col.brand p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-col ul li a::before {
  content: '→';
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.footer-col ul li a:hover::before {
  opacity: 1;
  left: -12px;
}

.contact-list li {
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-list li i {
  color: var(--orange);
  margin-top: 2px;
  min-width: 14px;
}

.footer-insta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 20px;
}

.footer-insta img {
  height: 60px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.footer-insta img:hover { 
  opacity: 0.8;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(244,123,32,0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-text h1 { font-size: 42px; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .project-item.tall { grid-row: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-inner { flex-direction: column; padding: 60px 24px 40px; gap: 36px; }
  .hero-text h1 { font-size: 36px; }
  .hero-images { width: 100%; }
  .services-inner, .how-inner, .unique-inner { flex-direction: column; }
  .services-left, .how-img, .unique-images { width: 100%; height: 260px; }
  .service-cards { flex-direction: column; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .unique-col img { height: 140px; }
}
