:root {
  --primary: #F2C230; /* Mustard Yellow */
  --secondary: #0F5A2E; /* Forest Green */
  --bg-color: #FAFAFA;
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --font-heading: 'Abadi', sans-serif;
  --font-body: 'Abadi', sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 90, 46, 0.85); /* Semi-transparent green */
  color: var(--text-light);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 94px;
  width: 94px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  color: var(--text-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem; /* Increased spacing */
  align-items: center;
}

.social-icons a {
  color: var(--text-light);
  font-size: 1.2rem;
}

.social-icons a:hover {
  color: var(--primary);
}

.btn {
  padding: 0.6rem 1.4rem; /* Reduced by ~20% */
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--primary);
  color: var(--secondary);
}

.btn-primary:hover {
  background: #d9ac29;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 194, 48, 0.3);
}

/* Floating Socials */
.floating-socials {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 999;
}

.floating-socials a {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-socials a:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: scale(1.15) translateX(-5px);
}

@media (max-width: 768px) {
  .floating-socials {
    right: 10px;
    gap: 0.8rem;
  }
  .floating-socials a {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* Premium Hero Section */
.hero {
  min-height: 75vh;
  max-height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  margin-top: 0;
  overflow: hidden;
}

.hero-bg-collage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  grid-template-rows: 1fr 1fr;
  z-index: 0;
  gap: 5px; /* Add small gaps for gallery look */
  background-color: #0A3D1E; /* Dark green background for any gaps */
}

.hero-bg-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keep cover but adjust alignment */
  object-position: center top; /* Prevent cutting off heads */
}

/* Asymmetrical layout for Desktop */
.hero-bg-collage img:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.hero-bg-collage img:nth-child(2) { grid-column: 2 / 4; grid-row: 1; }
.hero-bg-collage img:nth-child(3) { grid-column: 4; grid-row: 1; }
.hero-bg-collage img:nth-child(4) { grid-column: 2; grid-row: 2; }
.hero-bg-collage img:nth-child(5) { grid-column: 3; grid-row: 2; }
.hero-bg-collage img:nth-child(6) { grid-column: 4; grid-row: 2; }

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(15, 90, 46, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--text-light);
  animation: fadeIn 1s ease-out;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  color: var(--primary);
  letter-spacing: -1px;
}

.hero-subheadline {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 15px rgba(0,0,0,0.6);
  color: #FFF;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  font-weight: 300;
}

/* Emotional Storytelling Section */
.story-section {
  padding: 6rem 5%;
  background: #FFF;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  height: auto;
}

.story-img-main, .story-img-sub {
  width: 48%;
  height: auto; /* Let image dictate height */
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  object-fit: contain; /* Ensure no cropping */
}

.story-img-sub {
  border: 5px solid #FFF; /* Keep the nice border */
}

.story-text h2 {
  font-size: 2.8rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.story-text p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .story-container { grid-template-columns: 1fr; }
  .story-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  height: auto;
}

.story-img-main, .story-img-sub {
  width: 48%;
  height: auto; /* Let image dictate height */
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  object-fit: contain; /* Ensure no cropping */
}

.story-img-sub {
  border: 5px solid #FFF; /* Keep the nice border */
}
  .story-text h2 { font-size: 2.2rem; }
}


/* Services */
.services {
  padding: 6rem 5%;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 90, 46, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.price strike {
  font-size: 1rem;
  margin-right: 0.5rem;
  opacity: 0.7;
}

.price span {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.8rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.service-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

/* Footer */
footer {
  background: rgba(15, 90, 46, 0.85);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  padding: 4rem 5% 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 1rem;
  border-radius: 50px;
  overflow: hidden;
  object-fit: cover;
  display: block;
}

.footer-links h4 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .header { padding: 1rem 3%; }
  .nav-links { gap: 1.2rem; }
  .logo-img { height: 60px; width: 60px; }
  .hero-content h1 { font-size: 3.2rem; }
  .services-grid { gap: 1.5rem; }
  .story-container { grid-template-columns: 1fr; }
  .story-images { flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
  .story-img-main, .story-img-sub { width: 100%; }
  
  /* Tablet Collage */
  .hero-bg-collage {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .hero-bg-collage img:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
  .hero-bg-collage img:nth-child(2) { grid-column: 3; grid-row: 1; }
  .hero-bg-collage img:nth-child(3) { grid-column: 3; grid-row: 2; }
  .hero-bg-collage img:nth-child(4) { grid-column: 1; grid-row: 3; }
  .hero-bg-collage img:nth-child(5) { grid-column: 2; grid-row: 3; }
  .hero-bg-collage img:nth-child(6) { grid-column: 3; grid-row: 3; }
}

@media (max-width: 768px) { /* Mobile */
  .header {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
  .logo-container {
    margin-bottom: 0.5rem;
  }
  .logo-img {
    height: 50px;
    width: 50px;
  }
  .logo-text {
    font-size: 1.3rem;
  }
  .nav-links {
    margin-top: 0;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.95rem;
  }
  .header-actions {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
  }
  .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .hero-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }
  .services {
    padding: 4rem 5%;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .service-card {
    padding: 2rem 1.5rem;
  }
  footer {
    padding: 3rem 5% 1.5rem;
  }
}

@media (max-width: 480px) { /* Small Mobile */
  .hero-content h1 { font-size: 2.2rem; }
  .nav-links { gap: 0.8rem; font-size: 0.9rem; }
}

/* Masonry Grid Global */
.masonry-grid { column-count: 3; column-gap: 1.5rem; padding: 0 5% 5rem; }
.masonry-item { break-inside: avoid; margin-bottom: 1.5rem; border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
.masonry-item img { width: 100%; height: auto; border-radius: 12px; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.05); }
.overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(15, 90, 46, 0.9)); padding: 20px; color: white; opacity: 0; transition: opacity 0.3s ease; }
.masonry-item:hover .overlay { opacity: 1; }
.overlay-title { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 5px; }
@media (max-width: 900px) { .masonry-grid { column-count: 2; } }
@media (max-width: 600px) { .masonry-grid { column-count: 1; } }
