/* Importing Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Kapakana:wght@300..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  /* Backgrounds */
  --color-bg-dark: #101a1a;
  --color-bg-light: #eeedec;
  --color-bg-soft: #e4c3ae;

  /* Primary Brand Colors */
  --color-primary: #a25c33;
  --color-primary-hover: #d08655;

  /* Accent / Warm Neutrals */
  --color-accent-1: #e4b592;
  --color-accent-2: #dba07a;

  /* Neutral & Utility */
  --color-text: #101a1a;
  --color-text-light: #ffffff;
  --color-text-muted: #8e938b;
  --color-border: #babdb7;

  /* Natural Accent */
  --color-accent-natural: #669165;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--color-bg-light);
  color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Exo", sans-serif;
  color: var(--color-text);
}

.hero {
  background: linear-gradient(
      to top,
      rgba(16, 26, 26, 0.6),
      rgba(16, 26, 26, 0)
    ),
    url("../images/hero-bg.webp") center center / cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  color: var(--color-bg-light);
  overflow-x: hidden;
}

.hero-section {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 4.5rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 4rem;
}

.btn a {
  text-decoration: none;
  color: var(--color-bg-light);
}

.hero button.btn {
  padding: 0.7rem 1.7rem;
  font-size: 1.5rem;
  background-color: transparent;
  color: var(--color-bg-light);
  border: 2px solid var(--color-bg-light);
  border-radius: 5px;
  cursor: pointer;
}

.hero button.btn:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-bg-dark);
  transition: background-color 0.2s ease;
}

header {
  color:  var(--color-accent-1);
  padding: 10px 10px;
  position: fixed;
  display: flex;
  top: 0;
  width: 100%;
  z-index: 1000;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  background-color: var(--color-bg-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo {
  width: 150px;
  height: auto;
  font-size: 4rem;
  font-family: "Kapakana", sans-serif;
  text-align: center;
  align-items: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 2rem;
}

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

nav ul li {
  font-size: 1.2rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--color-accent-1);
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--color-text-muted);
}

.services {
  justify-content: center;
  margin-top: 6rem;
  height: auto;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 1rem;
}

.service-top {
  display: flex;
  justify-content: space-evenly;
  align-items: start;
  text-align: center;
  margin: 0.5rem;
  margin-top: 2rem;
  padding: 2rem;
}

.service-top .title {
  width: 45%;
}

.service-top .title h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.service-top .subtitle {
  width: 30%;
}

.service-top .subtitle h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: left;
  color: var(--color-text-muted);
}

.service-top .motive {
  padding-left: 5px;
  width: 25%;
}

.service-top .motive h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.service-top .motive p {
  font-size: 1rem;
  color: var(--color-text);
  text-align: left;
  text-wrap: wrap;
}

.service-bottom {
  padding: 4rem 2rem;
  text-align: center;
}

.masonry {
  column-count: 3;
  column-gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.masonry img {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
  border-radius: 12px;
  break-inside: avoid;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-grid {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.gallery-grid h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 300px;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.05);
}

.why-us {
  color: var(--color-text);
  border-radius: 16px;
  border: none;
  margin-top: 6rem;
  height: auto;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
}

.why-us-content {
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  margin: 0.5rem;
  margin-top: 2rem;
  padding: 2rem;
}

.why-us-content h1 {
  font-size: 4.5rem;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

.why-us-content p {
  font-size: 1.8rem;
  font-family: "exo", sans-serif;
  margin-bottom: 4rem;
  color: var(--color-text);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.card {
  
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  background: var(--color-bg-light);
  border: none;
  box-shadow: 0 2px 12px rgba(16, 26, 26, 0.06);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Hero Stats Card */
.stats-card {
  background: var(--color-accent-1);
  color: var(--color-text);
  padding: 40px;
  grid-column: span 2;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-number {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.stats-label {
  font-size: 1.1rem;
  opacity: 0.9;
  color: var(--color-text-muted);
}

.hair-collage {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 200px;
  height: 200px;
}

.collage-vertical {
  position: relative;
  width: 100%;
  height: 100%;
}

.polaroid {
  position: absolute;
  width: 70px;
  height: 70px;
  background: var(--color-bg-light);
  padding: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.rotate-left {
  transform: rotate(-20deg);
}

.rotate-right {
  transform: rotate(20deg);
}

.polaroid:hover {
  transform: rotate(-20deg) scale(1.1);
  z-index: 10;
}

.rotate-right:hover {
  transform: rotate(20deg) scale(1.1);
  z-index: 10;
}

/* Photo Cards */
.photo-card {
  background: var(--color-accent-2);
  color: var(--color-text-light);
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.photo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.photo-content {
  position: relative;
  z-index: 2;
  color: var(--color-text-light);
  padding: 30px;
  width: 100%;
}

.photo-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.photo-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}

/* Specialty Cards */
.feature-card {
  background: var(--color-bg-light);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.feature-text {
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* Chat Card */
.chat-card {
  background: var(--color-bg-light);
  padding: 20px;
  min-height: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.chat-header {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.chat-question {
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.chat-responses {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  background: var(--color-accent-natural);
  color: var(--color-bg-light);
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  max-width: 90%;
  align-self: flex-end;
}

.chat-final {
  color: var(--color-text);
  font-weight: 600;
  margin-top: 15px;
}

/* Social Media Card */
.social-card {
  background: linear-gradient(135deg, #e1306c 0%, #c13584 100%);
  color: var(--color-bg-light);
  padding: 30px;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
}

.social-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: var(--color-bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e1306c;
  font-weight: bold;
}

.social-text {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Satisfaction Card */
.satisfaction-card {
  background: var(--color-accent-1);
  color: var(--color-text);
  padding: 30px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.satisfaction-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.satisfaction-text {
  font-size: 1rem;
  opacity: 0.9;
  color: var(--color-text-muted);
}

.client-avatars {
  display: flex;
  gap: -10px;
  margin-top: 15px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  background: #ccc;
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

/* Appointment Card */
.appointment-card a{
  text-decoration: none;
  color: var(--color-bg-light);
}
.appointment-card {
  background: linear-gradient(
    135deg,
    var(--color-accent-2) 0%,
    var(--color-primary-hover) 100%
  );
  color: var(--color-bg-light);
  padding: 30px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.appointment-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.calendar-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.appointment-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.appointment-text {
  font-size: 1rem;
  opacity: 0.9;
}

/* Services Card */
.services-card {
  background: var(--color-primary);
  color: var(--color-bg-dark);
  padding: 30px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-list {
  list-style: none;
  margin-top: 20px;
}

.services-list li {
  color: var(--color-bg-light);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-list li:last-child {
  border-bottom: none;
}

.service-price {
  font-weight: 600;
}

/* Review Card */
.review-card {
  background: var(--color-bg-light);
  padding: 30px;
  min-height: 200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  color: #666;
  margin-bottom: 15px;
}

.reviewer-name {
  font-weight: 600;
  color: var(--color-text);
}

/* Responsive Design */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stats-card {
    grid-column: span 1;
    padding: 30px;
    min-height: 250px;
  }

  .stats-number {
    font-size: 3rem;
  }

  .hair-collage {
    display: none;
  }

  .photo-content {
    padding: 20px;
  }

  .photo-title {
    font-size: 1.3rem;
  }

  .footer-container {
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .site-footer {
    padding: 2rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .masonry {
    column-count: 2;
  }
  .grid-container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stats-card {
    grid-column: span 1;
    padding: 30px;
    min-height: 250px;
  }

  .stats-number {
    font-size: 3rem;
  }

  .hair-collage {
    display: none;
  }

  .photo-content {
    padding: 20px;
  }

  .photo-title {
    font-size: 1.3rem;
  }
}

@media (min-width: 1025px) {
  .hero-section {
    padding: 1rem;
  }
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-card {
    grid-column: span 2;
  }
}

/* Hover Effects */
.card:hover .photo-content {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-number {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.testimonials {
  margin: 4rem;
  padding-top: 4rem;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  flex-wrap: wrap;
}

.testimonial-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 20px;
  position: relative;
}

.testimonial-left {
  width: 40%;
  font-size: 18px;
}

.testimonial-left h2 {
  color: var(--color-text-muted);
}

.testimonial-right {
  width: 50%;
  flex: 2;
  position: relative;
}

.quote-mark {
  font-family: "Exo", sans-serif;
  font-size: 6rem;
  color: var(--color-text);
  position: absolute;
  top: -20px;
  left: -40px;
}

.testimonial-text {
  font-family: "Exo", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.testimonial-subtext {
  font-size: 1rem;
  color: #555;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.stars {
  color: var(--color-text);
  font-size: 16px;
  font-weight: bold;
}

.name {
  font-size: 14px;
  color: #888;
}

.controls {
  margin-top: 20%;
  gap: 10px;
}

.controls button {
  background: var(--color-bg-soft);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* === Contact Layout === */
.contact {
  margin: 4rem;
  padding-top: 4rem;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  flex-wrap: wrap;
}

/* === Left Column === */
.contact-intro {
  margin: 0 1rem;
  flex: 1;
  min-width: 250px;
}

.contact-intro h1 {
  font-family: "Exo", sans-serif;
  font-size: 4rem;
  margin-bottom: 20px;
}

.subheading {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.description {
  color: #555;
  margin-bottom: 40px;
}

/* === Right Column === */
.contact-card {
  background: var(--color-bg-light);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  flex: 1;
  min-width: 320px;
}

.email-label {
  font-size: 14px;
  color: #888;
}

.email-link {
  font-size: 28px;
  color: var(--color-primary);
  font-weight: bold;
  text-decoration: underline;
  display: block;
  margin: 10px 0 30px;
  font-family: "Exo", sans-serif;
}

.or-text {
  margin-bottom: 20px;
  font-size: 14px;
  color: #444;
}

/* === Form === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  font-family: "Poppins", sans-serif;
}

.form-row input {
  flex: 1;
  min-width: 140px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  background: var(--color-primary);
  color: var(--color-bg-light);
  border: none;
  padding: 14px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: var(--color-primary-hover);
}

/* === Footer === */
.site-footer {
  background: var(--color-bg-dark) !important;
  color: var(--color-bg-light) !important;
  padding: 60px 40px 20px;
  font-family: "Poppins", sans-serif;
  margin-top: 60px;
  border-top: 1px solid var(--color-border) !important;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border) !important;
}

.footer-brand h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-nav h4,
.footer-contact h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: var(--color-bg-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--color-accent-1);
}

.footer-contact p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* === Responsive Breakpoints & Modern Layout (Appended) === */
@media (max-width: 1200px) {
  .hero h1,
  .service-top .title h1,
  .why-us-content h1,
  .testimonial-text,
  .contact-intro h1 {
    font-size: 3rem !important;
  }

  .service-top,
  .why-us-content,
  .testimonial-container,
  .contact {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 2rem !important;
  }

  .service-top .title,
  .service-top .subtitle,
  .service-top .motive {
    width: 100% !important;
  }

  .testimonial-left,
  .testimonial-right {
    width: 100% !important;
  }
}

@media (max-width: 900px) {
  .hero h1,
  .service-top .title h1,
  .why-us-content h1,
  .testimonial-text,
  .contact-intro h1 {
    font-size: 2.5rem !important;
  }

  .hero {
    height: 80vh !important;
  }

  .service-top {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 2rem !important;
  }

  .service-top .title,
  .service-top .subtitle,
  .service-top .motive {
    width: 100% !important;
  }

  .testimonial-container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 2rem !important;
  }
}

@media (max-width: 600px) {
  .hero h1,
  .service-top .title h1,
  .why-us-content h1,
  .testimonial-text,
  .contact-intro h1 {
    font-size: 2rem !important;
  }

  .hero {
    height: 70vh !important;
  }

  .service-bottom img {
    width: 100% !important;
    height: auto !important;
  }

  .testimonial-container,
  .contact {
    padding: 1rem !important;
    gap: 1rem !important;
  }

  .footer-container {
    padding-bottom: 10px !important;
  }
  .masonry {
    column-count: 1 !important;
  }
}

@media (max-width: 480px) {
  .hero h1,
  .service-top .title h1,
  .why-us-content h1,
  .testimonial-text,
  .contact-intro h1 {
    font-size: 1.5rem !important;
  }

  .hero {
    height: 60vh !important;
  }
  .services {
    padding: 2rem 0;
  }
  .why-us {
    margin-top: 1rem;
    padding: 1rem;
  }
  .why-us-content {
    margin-top: 0;
    padding: 0;
  }
  .service-top {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1rem !important;
  }
  .service-bottom {
    margin: 2rem 0 !important;
  }
  .testimonial-container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1rem !important;
  }
  .contact {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin: 1rem;
  }
  .contact-intro {
    text-align: center !important;
  }
  .contact-card {
    width: 100% !important;
    padding: 20px !important;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100% !important;
  }
  .contact-form button {
    width: 100% !important;
    padding: 12px !important;
  }
  .contact a {
    font-size: 1.2rem !important;
  }
  .footer-container {
    flex-direction: column !important;
    align-items: start !important;
    text-align: start !important;
    gap: 1rem !important;
  }
  .footer-brand h2 {
    font-size: 1.5rem !important;
  }
}
/* === Typography Consistency (Appended) === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Exo", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.5px !important;
}

body,
p,
li,
input,
textarea,
button {
  font-family: "Poppins", sans-serif !important;
  font-size: 1rem !important;
}

/* === Section Scroll Effects (Appended) === */
.section-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-fade.visible {
  opacity: 1;
  transform: none;
}

/* === Footer Modernization (Appended) === */
.site-footer {
  position: sticky;
  background: #181818 !important;
  color: #fff !important;
  padding: 48px 16px 16px !important;
  font-family: "Poppins", sans-serif !important;
  margin-top: 60px !important;
  border-top: 1px solid #222 !important;
}

.footer-container {
  display: flex !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 32px !important;
  max-width: 1200px !important;
  margin: auto !important;
  padding-bottom: 24px !important;
  border-bottom: 1px solid #333 !important;
}

.footer-brand h2 {
  font-size: 2rem !important;
  font-family: "Exo", sans-serif !important;
  color: #d4a574 !important;
}

.footer-brand p {
  color: #bbb !important;
  font-size: 1rem !important;
}

.footer-nav h4,
.footer-contact h4 {
  margin-bottom: 10px !important;
  font-size: 1.1rem !important;
  color: #d4a574 !important;
  font-family: "Exo", sans-serif !important;
}

.footer-nav ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-nav ul li {
  margin-bottom: 8px !important;
}

.footer-nav a {
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.3s !important;
}

.footer-nav a:hover {
  color: #d4a574 !important;
}

.footer-contact p {
  font-size: 1rem !important;
  color: #bbb !important;
  margin-bottom: 8px !important;
}

.footer-bottom {
  text-align: center !important;
  margin-top: 16px !important;
  font-size: 0.95rem !important;
  color: #888 !important;
}

/* === Hamburger Menu Icon === */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: var(--color-accent-1);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
  display: block;
}

@media (max-width: 900px) {
  .navbar nav ul {
    display: none;
    flex-direction: column;
    background: #181818;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    padding: 1rem 0;
    z-index: 1001;
  }

  .navbar nav ul.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* === Standardized Vertical Spacing for Major Sections (Appended) === */
section,
.major-section {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

@media (max-width: 1023px) {
  section,
  .major-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}

@media (max-width: 767px) {
  section,
  .major-section {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }
  .service-bottom,
  .grid-container {
    grid-template-columns: 1fr;
  }

  .serve-card,
  .card {
    width: 100%;
    height: 300px;
  }

  .serve-card img,
  .card img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
}

section:first-of-type,
.major-section:first-of-type {
  margin-top: 0;
}

section:last-of-type,
.major-section:last-of-type {
  margin-bottom: 0;
}

/* === Responsive Image Card Layout === */
.service-bottom,
.grid-container {
  display: grid;
  gap: 1.5rem;
}

@media (max-width: 1023px) {
  .service-bottom,
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .serve-card,
  .card {
    width: 100%;
    height: auto;
  }

  .serve-card img,
  .card img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  .testimonial-left .controls {
    margin-top: 10%;
  }

  .footer-container {
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 2rem;
    text-align: start;
  }

  .site-footer {
    margin-top: 0;
  }

  .footer-brand {
    width: 30%;
  }

  .footer-brand p {
    text-wrap: wrap;
    overflow: hidden;
  }

  /* Desktop: 3-4 cards per row */
  @media (min-width: 1024px) {
    .service-bottom,
    .grid-container {
      grid-template-columns: repeat(260px, 1fr);
    }

    .serve-card,
    .card {
      width: 30%;
      height: 300px;
    }

    .serve-card img,
    .card img {
      height: 300px;
      width: 100%;
      object-fit: cover;
      border-radius: 12px;
    }
    .controls {
      margin-top: 20%;
    }
  }

  /* Optionally, for 4 cards per row on very large screens */
  @media (min-width: 1400px) {
    .service-bottom,
    .grid-container {
      grid-template-columns: repeat(4, 1fr);
    }

    .serve-card,
    .card {
      width: 22%;
    }
    
  }

  /* Card hover effect */
  .serve-card img,
  .card img {
    transition: box-shadow 0.3s, transform 0.3s;
  }

  .serve-card:hover img,
  .card:hover img {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: scale(1.03);
  }

  /* === Standardized Responsive Typography === */
  h1 {
    font-size: 4rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 3rem;
    line-height: 1.22;
  }

  h3 {
    font-size: 2.25rem;
    line-height: 1.24;
  }

  h4 {
    font-size: 1.75rem;
    line-height: 1.26;
  }

  body,
  p,
  li,
  input,
  textarea,
  button {
    font-size: 1rem;
    line-height: 1.5;
  }

  .small,
  small {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  @media (max-width: 1023px) {
    h1 {
      font-size: 3.5rem;
    }

    h2 {
      font-size: 2.5rem;
    }

    h3 {
      font-size: 2rem;
    }

    h4 {
      font-size: 1.5rem;
    }

    body,
    p,
    li,
    input,
    textarea,
    button {
      font-size: 0.9375rem;
    }

    .small,
    small {
      font-size: 0.8125rem;
    }
  }

  @media (max-width: 767px) {
    h1 {
      font-size: 3rem;
    }

    h2 {
      font-size: 2rem;
    }

    h3 {
      font-size: 1.75rem;
    }

    h4 {
      font-size: 1.25rem;
    }

    body,
    p,
    li,
    input,
    textarea,
    button {
      font-size: 0.875rem;
    }

    .small,
    small {
      font-size: 0.75rem;
    }
  }
}

.section-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 4rem 0;
  box-sizing: border-box;
}
