* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #2d6a2d;
  --green-light: #3d8b3d;
  --orange: #e07b00;
  --dark: #1a1a1a;
  --gray: #f5f5f5;
  --text: #333;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

/* NAV */
nav {
  background: var(--dark);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.logo {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1rem 0;
  text-decoration: none;
}

.logo span {
  color: var(--orange);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}

nav ul a {
  color: #ccc;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  font-size: 0.95rem;
}

nav ul a:hover, nav ul a.active {
  background: var(--green);
  color: #fff;
}

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a3a1a 0%, #2d6a2d 60%, #1a3a1a 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.18;
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-area {
  font-size: 0.95rem;
  opacity: 0.75;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.btn-green {
  background: var(--green);
  color: #fff;
}

/* TRUST BAR */
.trust-bar {
  background: var(--dark);
  color: #ccc;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.8rem 2rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.trust-bar span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-bar .icon {
  color: var(--orange);
  font-size: 1rem;
}

/* SECTIONS */
section {
  padding: 4rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: #666;
  font-size: 1.05rem;
}

.section-title .underline {
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* SERVICE CARD IMAGES */
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.2rem;
  display: block;
}

/* PHOTO GALLERY */
.gallery-section {
  background: var(--gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:first-child {
  grid-column: span 2;
  height: 300px;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid img:first-child {
    grid-column: span 2;
    height: 200px;
  }
  .gallery-grid img {
    height: 160px;
  }
}

/* SERVICE DETAIL (single page sections) */
.service-detail {
  padding: 3rem 0;
  border-bottom: 1px solid #eee;
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: start;
}

.service-detail-inner img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-detail-inner.reverse {
  direction: rtl;
}

.service-detail-inner.reverse > * {
  direction: ltr;
}

.service-detail h3 {
  font-size: 1.7rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-detail p {
  color: #555;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.item-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.item-list li {
  color: #444;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.item-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* SERVICES GRID (home cards) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-top: 4px solid var(--green);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
}

/* WHY US */
.why-section {
  background: var(--gray);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  text-align: center;
  padding: 1.5rem;
}

.why-card .icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.why-card p {
  color: #666;
  font-size: 0.9rem;
}

/* SERVICE AREAS */
.areas-section {
  background: var(--green);
  color: #fff;
  text-align: center;
}

.areas-section .section-title h2 {
  color: #fff;
}

.areas-section .section-title p {
  color: rgba(255,255,255,0.8);
}

.areas-section .underline {
  background: var(--orange);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.area-tag {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.95rem;
}

/* CTA SECTION */
.cta-section {
  background: var(--dark);
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: #aaa;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-contact {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-contact a {
  color: var(--orange);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-item .icon {
  font-size: 1.5rem;
  color: var(--green);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.2rem;
}

.contact-item a, .contact-item p {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--green);
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1a3a1a, #2d6a2d);
  color: #fff;
  text-align: center;
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=70&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.12;
}

.page-hero h1, .page-hero p {
  position: relative;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  opacity: 0.85;
  font-size: 1.1rem;
}

/* SLOT MACHINE */
.slot-reels {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  max-width: 360px;
}

.reel {
  width: 100px;
  height: 100px;
  background: #111;
  border: 3px solid var(--orange);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.reel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0s;
}

.reel-inner .symbol {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  flex-shrink: 0;
}

.reel.spinning .reel-inner {
  animation: spin-reel 0.1s linear infinite;
}

@keyframes spin-reel {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-100px); }
}

@media (max-width: 480px) {
  .reel { width: 80px; height: 80px; }
  .reel-inner .symbol { width: 80px; height: 80px; font-size: 2.2rem; }
  .slot-reels { gap: 0.6rem; }
}

/* FOOTER */
footer {
  background: #111;
  color: #aaa;
  padding: 3rem 2rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

footer h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

footer ul a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 1rem;
    gap: 0.25rem;
  }

  nav ul.open {
    display: flex;
  }

  nav {
    position: relative;
  }

  .hamburger {
    display: flex;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .service-detail-inner,
  .service-detail-inner.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .item-list {
    grid-template-columns: 1fr;
  }
}
