:root {
  --bg: #0b120d;
  --card: #101f15;
  --line: rgba(233, 242, 234, 0.12);
  --max: 1100px;
  --muted: #c6d4cb;
  --panel: #0f1a12;
  --radius: 3px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  --text: #f2f7f3;
  --brand: #2fe070;
  --brand2: #0fbf5a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-attachment: fixed;
  background-image: url(Images/BGImg.jpg);
  background-position: center;
  background-size: cover;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  margin: 0;
}

body::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.75));
  content: "";
  inset: 0;
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3 {
  color: #ffffff;
  font-family: 'DM Serif Display', serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

p,
li {
  line-height: 1.65;
  margin: 0;
}

.lead,
.sub {
  color: var(--muted);
}

.container {
  margin: 0 auto;
  width: min(var(--max), calc(100% - 32px));
}

.section {
  padding: 80px 0;
}

.section.tight {
  padding: 40px 0;
}

.grid {
  display: grid;
  gap: 16px;
}

header {
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 18, 13, 0.85);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 14px 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1; /* <-- this makes it grow and push other items right */
}

.brand-name {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mark {
  flex-shrink: 0;
  height: 44px;
  width: 44px;
}

.mark img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  gap: 16px;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

nav a {
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  transition: background 0.2s ease, color 0.2s ease;
  color: rgba(233, 242, 234, 0.65);
}

nav a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.nav-cta {
  background: linear-gradient(135deg,
    rgba(47, 224, 112, 0.25),
    rgba(15, 191, 90, 0.15));
  border-radius: var(--radius);
  color: #ffffff !important;
  font-weight: 700;
  padding: 6px 14px;
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.hamburger span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Social Icons Group */
nav, .social-links { 
    display: flex; 
    align-items: center; 
    flex-shrink: 0; } 

.social-icon { 
    width: 42px; 
    height: 42px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 6px; 
    border: 1px solid var(--line); 
    background: rgba(255,255,255,.02); 
    transition: transform .2s ease, background .2s ease, border-color .2s ease; 
    
} 

.social-icon svg { 
    width: 20px; 
    height: 20px; 
    fill: var(--text); 
    
}

.hero {
  border-bottom: 1px solid var(--line);
  padding: 64px 0 40px;
}

.heroWrap {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr .8fr;
  align-items: stretch;
}

@media (max-width: 900px) {
  .heroWrap {
    grid-template-columns: 1fr;
  }
}

.panel {
  background: rgba(15, 26, 18, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

h1 {
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.6px;
  line-height: 1.08;
  margin: 0 0 10px;
}

.sub {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 55ch;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: inline-flex;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 650;
}

.dot {
  background: var(--brand);
  border-radius: 2px;
  height: 8px;
  width: 8px;
  box-shadow: 0 0 0 3px rgba(47, 224, 112, 0.12);
}

.btn {
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.2px;
  padding: 12px 14px;
  text-transform: uppercase;
}

.btn.primary {
  background: linear-gradient(135deg, rgba(47, 224, 112, 0.18),
    rgba(15, 191, 90, 0.10));
  border-color: rgba(47, 224, 112, 0.35);
}

.btn:hover {
  filter: brightness(1.08);
}

/* Photo Placeholders */
.photoGrid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.ph {
  background: linear-gradient(135deg, rgba(47, 224, 112, 0.22),
      rgba(255, 255, 255, 0.02)),
    radial-gradient(400px 200px at 30% 20%, rgba(47, 224, 112, 0.20),
      transparent 60%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 120px;
}

.ph.small {
  min-height: 110px;
}

.ph:before {
  display: block;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.747);
}

.cards {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: rgba(16, 31, 21, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.card h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.services {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1200px) {
  .services {
    grid-template-columns: 1fr;
  }
}

.serviceTop {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(233, 242, 234, 0.70);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.gallery {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* Gallery View More */ 
.gallery-cta { 
    text-align: center; 
    margin-top: 2.5rem; 
    
} 

.view-more-btn { 
    display:inline-flex; 
    align-items:center; 
    gap:10px; 
    padding: 12px 12px; 
    border:1px solid var(--line); 
    border-radius: var(--radius); 
    background: rgba(16, 31, 21, 0.85); 
    color: #ffffff; font-size: 16px; 
    font-weight: 750; 
    text-decoration: none; 
    transition: background-color 0.25s ease, transform 0.25s ease; 
    
} 

.view-more-btn:hover { 
    background-color: #16603e; 
    transform: translateY(-2px); 
    
}

.thumb {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 140px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(47, 224, 112, 0.20),
      rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.thumb span {
  bottom: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  left: 12px;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
}

.contactGrid {
  gap: 16px;
  grid-template-columns: 1.2fr .8fr;
  align-items: start;
}

@media (max-width: 900px) {
  .contactGrid {
    grid-template-columns: 1fr;
  }
}

.contactRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: inline-flex;
  gap: 10px;
  padding: 12px;
  font-weight: 750;
}

.pill small {
  color: rgba(233, 242, 234, 0.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pill strong {
  display: block;
  font-size: 14px;
}

footer {
  border-top: 1px solid var(--line);
  color: rgba(233, 242, 234, 0.55);
  font-size: 14px;
  padding: 24px 0 34px;
}

.footerRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.site-credit {
  color: rgba(233, 242, 234, .45);
  display: block;
  font-size: 12px;
  margin: 16px auto 0;
  text-align: center;
  width: 100%;
}

.site-credit a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-credit a {
  color: rgba(233, 242, 234, .65);
  font-weight: 500;
}

@media (max-width: 768px) {

  /* Header Nav */
  .hamburger {
    display: flex;
  }

  .nav {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .brand {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 12px;
    gap: 8px;
  }

  .nav-links.open {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  nav a {
    padding: 10px;
    background: rgba(255,255,255,0.02);
    border-radius: 4px;
  }

  .nav-cta {
    background: linear-gradient(135deg, rgba(47,224,112,.25), rgba(15,191,90,.15));
  }

  .mark {
    width: 40px;
    height: 40px;
  }

  .brand {
    font-size: 17px;
  }

  .social-icon {
    width: 34px;
    height: 34px;
  }

  /* Hero */
  .hero {
    padding: 40px 0 24px;
  }

  h1 {
    font-size: 26px;
    line-height: 1.15;
  }

  .sub {
    font-size: 15px;
  }

  /* Utilities */
  .container {
    padding: 28px 16px;
  }

  .section {
    padding: 56px 0;
  }

  .btn {
    font-size: 13px;
    padding: 12px 16px;
  }
}

@media (max-width: 1100px) {
  .brand-name {
    font-size: 14px;
  }
}
