/* ===================================
   1. ROOT & VARIABLES
   =================================== */
:root {
  --primary-color: #ffba00;
  --primary-color-rgb: 255, 186, 0;
  /* RGB version for transparent colors */
  --secondary-color: #2c3e50;
  --text-color: #333;
  --light-color: #fff;
  --dark-color: #222;
  --cream-color: #f2f6f9;

  --font-family-body: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-family-heading: 'Montserrat', sans-serif;

  --shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 10px 25px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  /* Kept for legacy if needed, but specific transitions are preferred */
}

/* ===================================
   2. BASE & RESET
   =================================== */
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  /* Respects user's browser font size settings */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-body);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

section {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
}

/* ===================================
   3. GLOBAL TYPOGRAPHY
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--secondary-color);
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  font-weight: 500;
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Accessibility Focus */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
  border-radius: 3px;
}

.icon {
  color: var(--primary-color);
}

/* ===================================
   4. BUTTONS & LINKS
   =================================== */
a {
  font-weight: 500;
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

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

a.btn-link {
  display: inline-block;
  font-weight: 500;
  border-radius: 3px;
  background: linear-gradient(to right,
      var(--primary-color) 50%,
      var(--light-color) 50%);
  background-size: 200% 100%;
  background-position: left bottom;

  transition: color 0.3s ease-in-out, background-position 0.4s ease-in-out;
}

a.btn-link {
  padding: 0.4rem 0.8rem;
  color: var(--secondary-color);
  background: linear-gradient(to right, var(--primary-color) 50%, transparent 50%);
}

a.btn-link:hover {
  background-position: right bottom;
  color: var(--secondary-color);
}

a.btn-cta {
  border: none;
  display: inline-block;
  padding: 0.8rem 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 3px;
  color: var(--light-color);
  background: linear-gradient(to right,
      var(--primary-color) 50%,
      var(--light-color) 50%);
  background-size: 200% 100%;
  background-position: left bottom;
  transition: all 0.3s ease-in-out;
}

a.btn-cta:hover {
  background-position: right bottom;
  color: var(--primary-color);
}

/* ===================================
   5. LAYOUT & CONTAINERS
   =================================== */
.heading-content {
  text-align: center;
  max-width: 700px;
  margin: clamp(2rem, 6vw, 5rem) auto;
}

.grid-3-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.two-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.container-4-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* ===================================
   6. BACKGROUND UTILITIES
   =================================== */
.bg-color-cream {
  background-color: var(--cream-color);
}

.bg-light {
  background-color: var(--light-color);
}

.bg-trasparent-1,
.bg-transparent-2 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
}

.bg-trasparent-1 {
  background-image: linear-gradient(180deg, rgba(20, 61, 80, 0.7) 0%, #143d58 100%),
    url("../images/bg/bg-transparent-1.png");
}

.bg-transparent-2 {
  background-image: linear-gradient(180deg, rgba(20, 61, 88, 0.7) 0%, #143d58 100%),
    url("../images/bg/bg-cta.jpg");
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--light-color);
  padding: 2rem 1rem;
}

/* ===================================
   7. NAVBAR
   =================================== */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar {
  padding: 1rem 2rem;
  background-color: transparent;
  transition: padding 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--light-color);
  box-shadow: var(--shadow);
  padding: 0.8rem 2rem;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light-color);
  transition: color 0.3s ease;
}

.navbar.scrolled .navbar-logo {
  color: var(--primary-color);
}

.navbar-menu {
  display: flex;
}

.navbar-item {
  margin-left: 2rem;
}

.navbar-link {
  color: var(--light-color);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.navbar.scrolled .navbar-link {
  color: var(--dark-color);
}

.navbar-link.active,
.navbar-link:hover {
  color: var(--primary-color);
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

.navbar-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: var(--light-color);
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.navbar.scrolled .bar {
  background-color: var(--dark-color);
}

/* ===================================
   8. HERO SECTION
   =================================== */
.hero,
.hero-page.hero-set {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-color);
  padding: 0 2rem;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/bg/hore-bg.png');
}

.hero-page.hero-set {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/bg/bg-transparent-2.png');
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease both;
  color: var(--light-color);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s 0.3s ease both;
}

/* ===================================
   9. CARDS 
   =================================== */
/* Generic Card */
.inner-container {
  background: var(--light-color);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.inner-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.inner-container-body {
  padding: 1.5rem;
}

/* Team Card */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.team-image img {
  transition: transform 0.4s ease;
}

.team-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 61, 80, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--light-color);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.team-info h6 {
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--light-color);
}

.team-info p {
  margin: 0;
  font-size: 0.9rem;
}

.team-card:hover .team-image::after {
  opacity: 1;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-card:hover .team-info {
  transform: translateY(0);
}

/* Testimonial Card */
.testimonial-box {
  background: var(--cream-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  position: relative;
}

.testimonial-box p {
  font-style: italic;
  margin: 1rem 0 2rem;
}

.testimonial-box p::before {
  content: '“';
  font-family: serif;
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
  left: -1rem;
  top: -1rem;
  opacity: 0.5;
}

.testimonial-box img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid var(--light-color);
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

/* ===================================
   10. BOOKING APPOINTMENT
   =================================== */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
textarea {
  width: 100%;
  resize: none;
  padding: 12px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(255, 247, 0, 0.25);
  outline: none;
}

fieldset {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 15px;
  margin: 20px 0;
}

legend {
  padding: 0 10px;
  font-weight: 600;
  color: #555;
}

fieldset label {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
}

fieldset input[type="checkbox"] {
  margin-right: 12px;
  width: 18px;
  height: 18px;
}

#calendar {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

/* Force months side by side */
.flatpickr-calendar.inline {
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Make each month take 50% */
.flatpickr-months,
.flatpickr-days {
  width: 100%;
}

.flatpickr-month {
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  margin-bottom: 20px;
}

.error {
  color: #e74c3c;
  font-size: 14px;
  min-height: 20px;
  margin-bottom: 10px;
}

.is-invalid {
  border-color: #e74c3c !important;
}

#formMessage {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  display: none;
}

#formMessage.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

#formMessage.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

button[type="submit"] {
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

button[type="submit"]:hover {
  color: var(--dark-color);
}




/* --- Satisfaction Section --- */
.margin-top {
  margin-top: 6rem;
}

.satisfaction h3 {
  font-size: 3rem;
  font-weight: 700;
}

.satisfaction-content-rate i {
  color: var(--primary-color);
}

/* --- Experience / Counter Section --- */
.counter-container {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.counter-box h2 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--light-color);
}

.counter-box h6 {
  font-weight: 500;
  color: var(--primary-color);
}

/* --- CTA Section --- */
.cta h5 {
  color: var(--primary-color);
}

.cta h4 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--light-color);
}

.cta .phone {
  color: var(--cream-color);
  font-size: 1.2rem;
  padding: 1rem 0;
}

.cta p {
  font-size: 1.5rem;
  font-weight: 500;
}

/*===============================
 ABOUT PAGE
 ===============================*/
.margin-overlap {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background-color: var(--cream-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-strong);
  z-index: 10;
}

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

.margin-overlap-box {
  background-color: var(--light-color);
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.margin-overlap-box h2 {
  color: var(--primary-color);
  font-weight: 700;
}

.satisfaction h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.satisfaction-content p {
  margin-top: 0.957rem;
  color: var(--secondary-color);
  line-height: 1.6;
}

.satisfaction img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
SERVICE PAG
============================== */
.place-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.place-detail-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.place-detail-grid-box-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  font-size: 1.5rem;
}

.image-grid {
  padding: 0;
  margin: 0;
}

.setion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.grid-box-image {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.grid-box-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 61, 80, 0.6) 0%, #143d58 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.grid-box-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.grid-box-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: var(--light-color) !important;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.grid-box-info h3 {
  color: var(--primary-color);
}

.grid-box-image:hover img {
  transform: scale(1.1);
}

.grid-box-image:hover::after {
  opacity: 1;
}

.grid-box-image:hover .grid-box-info {
  transform: translateY(0);
  opacity: 1;
}

/* --- Service Page: Pricing --- */
.price-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  border-top: 1px solid #e0e0e0;
}

.price-box:last-child {
  text-align: center;
}

.price-box:last-child h3 {
  font-size: 2rem;
  color: var(--primary-color);
}

.price-box span {
  text-transform: capitalize;
  font-size: 1rem;
  color: var(--dark-color);
}

/*============================
SINGLE BLOG
==============================*/
.single-blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.single-blog-main h2 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.single-blog-main .meta {
  color: var(--primary-color);
  font-weight: 600;
  display: block;
}

.single-blog-sidebar h3 {
  margin-bottom: 1rem;
  font-size: 1.9rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.sidebar-post {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.sidebar-post img {
  width: 80px;
  height: 80px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.sidebar-post-content h4 {
  font-size: 0.89rem;
  margin: 0 0 0.3rem 0;
}

/*========================
CONTACT PAGE
==========================*/

.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 2rem auto;
}

.form-input form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.input-flex {
  display: flex;
  gap: 1rem;
}

.input,
.input-message {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  background: var(--cream-color);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-message {
  min-height: 200px;
  resize: vertical;
}

.input::placeholder,
.input-message::placeholder {
  color: #888;
  opacity: 1;
}

.input:focus,
.input-message:focus {
  outline: none;
  border-color: none;
}

.grid-feature-contact {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin: auto;
}

.contact-detail-grid-box-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  font-size: 1.25rem;
}

.contact-detail-grid-box h6 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-detail-grid-box a {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-grid-box H6 {
  text-align: center;
}

.contact-detail-grid-box p {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: -0.2rem;
}

/*=========================
MAP
===========================*/

.map-section {
  width: 100%;
  height: 450px;
  padding: 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===================================
   11. FOOTER
   =================================== */
.footer {
  background: #000111;
  color: var(--light-color);
  padding: 4rem clamp(1rem, 5vw, 4rem) 1.5rem;
}

.footer-col h5 {
  color: var(--primary-color);
}

.footer-col ul li a {
  color: #ccc;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

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

.footer .socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
  margin-top: 0.7rem;
  background-color: var(--secondary-color);
  color: var(--light-color);
  font-size: 1rem;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer .socials a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  color: var(--dark-color);
}

.footer-bottom {
  text-align: center;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--secondary-color);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
}

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

/* ===================================
   12. ANIMATIONS
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   13. MEDIA QUERIES
   =================================== */

@media (min-width: 1024px) {
  .container-4-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .satisfaction h3 {
    font-size: 2rem;
    margin-top: 4.5rem;
  }

  .box-span-grid {
    grid-column: 1 / -1;
  }

  .box-span-grid-left,
  .box-span-grid-right {
    grid-column: span 2;
  }
}

@media (min-width: 768px) {
  .price-container {
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
  }

  .price-container .price-box:last-child {
    text-align: right;
  }
}

/*========================
TABLET
==========================*/
@media (max-width: 1024px) {
  .setion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {

  .grid-3-container,
  .conater-margin-overlap {
    grid-template-columns: repeat(2, 1fr);
  }

  .single-blog-grid,
  .contact-section-grid {
    grid-template-columns: 1fr;
  }

  .box-span-grid-left,
  .box-span-grid-right {
    grid-column: span 1 / -1;
  }

  .satisfaction h3 {
    font-size: 1rem;
  }

  .input-flex {
    flex-direction: column;
    gap: 1.25rem;
  }

  .contact-box h2 {
    text-align: center;
  }
}

/*========================
 MOBILE
 =========================*/
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--light-color);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: left 0.3s ease-in-out;
  }

  .navbar-menu.active {
    left: 0;
  }

  .navbar-item {
    margin: 1rem 0;
  }

  .navbar-link {
    color: var(--dark-color);
    font-size: 1.2rem;
  }

  .two-grid-container,
  .place-detail-grid {
    grid-template-columns: 1fr;
  }

  .container-4-grid {
    grid-template-columns: 1fr;
  }

  .setion-grid {
    grid-template-columns: 1fr;
  }

  .grid-box-image {
    height: 80vh;
  }

  .grid-feature-contact {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 600px) {

  .grid-3-container,
  .conater-margin-overlap {
    grid-template-columns: 1fr;
  }

  .margin-overlap {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: -80px;
    padding: 1.5rem;
  }

  .margin-top {
    margin-top: 2rem;
    padding: 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .contact-box h2 {
    font-size: 1.5rem;
  }
}