/* === GLOBAL STYLES === */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.hero-logo {
  position: absolute !important;
  top: -45px !important;         /* Adjust as needed */
  left: -30px !important;        /* Adjust as needed */
  z-index: 10 !important;
}

.site-logo {
  display: block !important;
  width: 400px !important;      /* Smaller and responsive */
  height: auto !important;
  object-fit: contain !important;
}



html {
  scroll-behavior: smooth;
}

/* Use Lato as the main font */
body {
  font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-nav {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  padding: 2rem 2rem 0 2rem;
  font-weight: bold;
  font-size: 1rem;
  position: relative;
  top: 10px;
}

.hero-nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* === UPDATED HERO TEXT === */
.hero-text {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-bottom: 4rem; /* 👈 pushes everything slightly upward */
}

.hero-text .cta-button {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: #1c1f14;
  color: white;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 30px; /* Add this to move the button lower */
}


.hero-text h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1rem; /* 👈 spacing below heading */
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem; /* 👈 bigger gap between paragraph and button */
}

.hero-text p {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

/* === SECTIONS === */
.section {
  padding: 6rem 1.5rem;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section p {
  color: #666;
}

/* === SCROLL BUTTON === */
.scroll-button {
  display: inline-block;
  background-color: black;
  color: white;
  padding: 1.25rem 3rem;       /* EVEN BIGGER */
  font-size: 1.35rem;           /* Larger font */
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  margin: 1.5rem auto;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
}

.scroll-button:hover {
  background-color: #1a1a1a;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transform: scale(1.05);
}

.centered-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  background-color: #fff;
}

.centered-block p {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 1rem;
  color: #1a1a0f; /* or your dark green if you prefer */
}


/* === ACTIVE NAV LINK STYLES === */
.nav-link {
  color: white;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
  font-weight: bold;
  transition: color 0.3s ease;
  font-size:18px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.nav-link:hover::after {
  background-color: rgba(255, 255, 255, 0.4);
}



.nav-link.active::after {
  background-color: rgb(255, 255, 255);
}

.highlight-section {
  background: #ffffff;
  padding: 60px 20px 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.highlight-text {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

.highlight-text {
  font-size: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: right;
  padding-right: 5vw;
  padding-left: 15vw;
  line-height: 1.6;
}

.creation-steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 20px;
  max-width: 1800px; /* or whatever size you decided */
  margin: 0 auto;    /* this is the key for centering */
}


.step-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.step-card:nth-child(even) {
  flex-direction: row-reverse;
}

.step-text {
  flex: 1 1 45%;
  max-width: 500px;
  padding: 20px;
}


.step-icon {
  font-size: 2rem;
  color: #000000;
  margin-right: 12px;
}

.step-text h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
}

.step-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.step-image img {
  max-width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-box {
  margin: 80px auto;
  padding: 40px 30px;
  max-width: 500px;
  background: white;
  border-radius: 16px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: all 0.4s ease;
  transform: translateY(0);
}

.cta-box:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.cta-box h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #111;
}

.cta-button {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: #1c1f14;
  color: white;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #333;
}

/* Modal Overlay Background */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 15, 0.75); /* semi-dark transparent */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal Content Box */
.modal-content {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  font-family: 'Lato', sans-serif;
  position: relative;
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

/* Headline */
.modal-content h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f0f1b;
}

/* Form Elements */
.modal-content form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #111;
}

.highlight-text-service {
  font-size: 1.5rem; /* Keep the font size as you specified */
  max-width: 800px; /* Set a max width to avoid stretching on large screens */
  margin: 0 auto; /* Center the text */
  text-align: center; /* Ensure the text is centered */
  line-height: 1.8; /* Adjust line height for readability */
  padding: 0 20px; /* Optional: add some padding on small screens to avoid edge-to-edge text */
}
.highlight-text-service {
  font-size: 1.5rem; /* Keep the font size as you specified */
  max-width: 800px; /* Set a max width to avoid stretching on large screens */
  margin: 0 auto; /* Center the text */
  text-align: center; /* Ensure the text is centered */
  line-height: 1.8; /* Adjust line height for readability */
  padding: 0 20px; /* Optional: add some padding on small screens to avoid edge-to-edge text */
}



/* === FORM STYLES === */
.modal-content form input,
.modal-content form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

/* Submit Button */
.btn-submit {
  margin-top: 1.5rem;
  background-color: #2e2e2e !important;
  color: #fff !important;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background-color: #000000 !important;
}

/* Hide modal initially */
.hidden {
  display: none;
}

/* === CONTACT SECTION === */
.contact-section {
  padding: 60px 20px;
  background: #fff;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 2rem;
  color: #1c2c0f;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 1rem;
  color: #222;
}

.contact-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 20px;
}

.contact-form {
  flex: 1 1 58%;
  min-width: 300px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  background: #f7f7f7;
  border-radius: 8px;
}

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

.contact-form button {
  background: black;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-weight: bold;
}

.contact-info {
  flex: 1 1 35%;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  padding: 24px;
  border-radius: 20px;
  color: white;
  text-align: center;
}

.info-box i {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.info-box.black {
  background: black;
}

.info-box.gray {
  background: #555;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === WEB SERVICE BOX === */
.web-service-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  margin: 40px auto;
  flex-wrap: wrap;
  max-width: 1200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.web-service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.web-service-image {
  position: relative;
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px; /* ✅ Add this line */
}


.web-service-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.web-service-tag {
  position: absolute; /* Absolute positioning to move it out of the container */
  bottom: -15px; /* Pushes it below the image */
  left: -10px; /* Adjusts the horizontal position */
  background-color: #5d9f2c; /* Green background */
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Optional shadow for effect */
}

.web-service-steps {
  flex: 1;
  min-width: 300px;
}

.step-grid {
  display: grid; /* Changed from flex to grid */
  grid-template-columns: repeat(2, 1fr); /* 2 items per row */
  gap: 24px; /* Space between items */
}


.web-service-steps h3 {
  font-weight: 800;
  font-size: 2rem; /* was 1.5rem */
  margin-bottom: 32px; /* was 24px */
  color: #111;
}



.step-grid div {
  font-size: 1.1rem; /* was 0.95rem */
  line-height: 1.8;
  padding: 12px 0;
}

.step-grid strong {
  display: block;
  font-size: 1.25rem; /* was 1rem */
  font-weight: 700;
  margin-bottom: 8px; /* was 6px */
  color: #1a1a1a;
}

/* === THREE-CARD GALLERY === */
.three-card-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.quote-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}


.quote-box h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.quote-box {
  flex: 1 1 420px;
  background-color: #f9f9f9;
  padding: 30px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer; /* Optional: shows it's hoverable */
}

.quote-box:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}




.quote-box .cta-button {
  margin-top: 12px;
}

.quote-image {
  flex: 1 1 420px;
  max-width: 500px;
}



.quote-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}



.about-description {
  font-size: 1rem;
}

.gallery-card {
  flex: 1;
  min-width: 350px;
  max-width: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  background-color: #f4f4f4;
  display: block;
}

.wp-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wp-caption-text {
  font-weight: bold;
  font-style: italic;
  color: #000000;
  margin-top: 0.5rem;
  text-align: center;
}

.left-card .top-caption {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.middle-card {
  margin-top: -2.5rem;
}

.gallery-description p {
  font-size: 0.95rem;
  color: #000;
  text-align: left;
  margin-top: 1rem;
  line-height: 1.5;
}

.right-card {
  padding-top: 60px;
}

/* KEEP THESE */
.market-gallery {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.market-gallery__header h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* General Reset */
* {
  box-sizing: border-box; /* Ensures padding is included in element's total width */
  margin: 0;
  padding: 0;
}
.footer {
  background-color: #000;
  color: white;
  padding: 80px 20px;  /* Make the footer taller */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Arial', sans-serif;  /* Ensure all text uses the same font */
}

.footer-left {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.footer-left a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.footer-left a:hover {
  text-decoration: underline;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  position: absolute;  /* This centers the content without flexbox on the footer */
  left: 50%;
  transform: translateX(-50%);  /* Adjusts the position to exactly center the content */
}

.social-icons {
  display: flex;
  gap: 30px;              /* 🔧 Increase spacing here */
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;    /* Optional: more space above copyright */
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.facebook-icon {
  font-size: 35px;
  color: white;
}


.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
  font-weight: bold;
  color: #ccc;
}

.footer-right span {
  display: block;
}

.footer-center span {
  font-size: 14px;
}

.footer-left,
.footer-right {
  padding: 0 40px;  /* Adjust value as needed */
}
/* Language Selector Container */
.lang-selector {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  transition: transform 0.3s ease;
}

/* Moves whole block up when dropdown opens */
.lang-selector.shift-up {
  transform: translateY(-90px);
}

/* Fixed width for consistency */
.lang-toggle-btn,
.lang-dropdown {
  width: 160px;
}

/* Toggle Button */
.lang-toggle-btn {
  background-color: #111;
  color: white;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* Dropdown Styles */
.lang-dropdown {
  position: absolute;
  top: 100%; /* open BELOW */
  left: 0;
  margin-top: 0px; /* spacing below the button */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  transition: transform 0.2s ease;
  z-index: 1001;
}

/* Dropdown Hidden */
.hidden {
  display: none;
}

/* Language Options */
.lang-option {
  width: 100%;
  padding: 10px 14px;
  text-decoration: none;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f4f4f4;
  transition: background-color 0.2s;
  font-size: 14px;
  border-bottom: 1px solid #e5e5e5;
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background-color: #e0e0e0;
}

/* Attribution Section */
.lang-attribution {
  font-size: 10px;
  color: #888;
  padding: 8px 12px;
  line-height: 1.3;
  background-color: #f9f9f9;
  border-top: 1px solid #ddd;
}

.lang-attribution a {
  color: #888;
  text-decoration: none;
}

.lang-attribution a:hover {
  text-decoration: underline;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-title {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0;
}

.modal-logo-img {
  height: 5em; /* Increased from 1.5em */
  width: auto;
  object-fit: contain;
}


.modal-inner {
  display: flex;
  flex-direction: column; /* Prevent side-by-side logo distortion */
}

.modal-form {
  width: 100%;
}


.thank-you-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  overflow: hidden;
}

/* Giant, centered, super faded logo */
.thank-you-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
  display: flex;             /* NEW */
  justify-content: center;   /* NEW */
  align-items: center;       /* NEW */
  width: 100%;
  height: 100%;
}

.background-logo {
  width: 1200px;     /* Smaller to test centering visually */
  max-width: 90vw;   /* Optional responsive */
  height: auto;
  display: block;
}




/* The content box */
.thank-you-container {
  position: relative;
  z-index: 1;
  background: transparent;        /* Remove white card */
  box-shadow: none;               /* Remove shadow */
  padding: 40px 30px;
  border-radius: 0;               /* Remove rounded corners */
  text-align: center;
}


/* Title */
.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: #111;
}

/* Message */
.thank-you-message {
  font-size: 1.125rem;
  margin-bottom: 32px;
  color: #333;
}

/* Button */
.go-back-button {
  background-color: #515151;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.go-back-button:hover {
  background-color: #000000;
}

  .about-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 1100px;
  }

  .about-card {
    flex: 1 1 280px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 16px;
    text-align: left;
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

  .about-card i {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 12px;
  }

  .about-card h4 {
    font-weight: 700;
    color: #1a1a1a;
  }

  .email-box {
  margin-top: 230px; /* Adjust to match the vertical level of the phone field */
}

/* Always hide by default */
.menu-toggle,
.mobile-nav-links {
  display: none;
}

.desktop-only {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  padding: 2rem;
  font-weight: bold;
  font-size: 1rem;
}

@media (max-width: 768px) {

  /* === HERO SECTION === */
  .hero-banner {
    position: relative;
    height: 400px; /* Fixed height across all phones */
    overflow: hidden;
  }


  .desktop-only {
    display: none;
  }

  .hero-overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;  /* Push content to the bottom */
    align-items: center;
    padding: 5rem 1rem 2rem 1rem; /* top | right | bottom | left */
    height: 100%;
  }

  .hero-logo {
    top: 10px !important;
    left: 10px !important;
    width: 100px;
  }

  .site-logo {
    width: 100px !important;
  }

  .hero-nav {
    display: none !important; /* hide desktop nav on mobile */
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    font-size: 1rem;
    gap: 0.6rem;
  }

  .hero-text {
    margin: 0 auto;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 10px 20px;
    margin-bottom: 1rem;
  }

  .menu-toggle {
    display: block !important;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    z-index: 1000;
    color: white;
    cursor: pointer;
  }

  .mobile-nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 5%;
    right: 5%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
    flex-direction: column;
    gap: 0px;
    margin: 0;
  }


  .mobile-nav-links.active {
    display: flex !important;
  }


  .mobile-nav-links .hero-nav {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .mobile-nav-links .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 0px;
    background-color: transparent;
    text-decoration: none;
    color: black;
    width: 100%;
  }

  .nav-label {
    flex: 1;
    text-align: left;
    padding-left: 10px;
  }

  .nav-arrow {
    font-size: 1.5rem;
    color: #1a1a1a;
  }

  .mobile-nav-links .nav-link:hover {
    background-color: #f2f2f2;
  }



  /* === WEB SERVICE BOX === */
  .web-service-box {
    flex-direction: column;
    padding: 20px;
  }

  .web-service-image {
    max-width: 100%;
  }

  .web-service-tag {
    bottom: -20px;
    left: 0;
    font-size: 0.85rem;
  }

  .web-service-steps h3 {
    font-size: 1.5rem;
  }

  .step-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    flex-direction: column;
    gap: 12px;
  }

  .step-icon {
    font-size: 1rem;
  }

  .step-card strong {
    font-size: 1.1rem;
  }

  /* === ABOUT SECTION === */
  .about-heading {
    font-size: 1.6rem;
    text-align: center;
  }

  .about-divider {
    width: 60px;
  }

  .about-intro,
  .about-description {
    font-size: 1rem;
    text-align: center;
    padding: 0 15px;
  }

  .about-card-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 10px;
  }

  .about-card {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .about-card i {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .about-card h4 {
    font-size: 1.1rem;
  }

  /* === CONTACT SECTION === */
  .contact-form-wrapper {
    gap: 10px !important;         /* Remove vertical gap between blocks */
    padding: 0 !important;     /* Remove vertical padding */
    margin: 0 auto !important; /* Center it */
  }

  .contact-form,
  .contact-info {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .contact-form {
    margin-bottom: 0 !important;
  }

  .contact-info {
    padding: 0 !important;
    margin: 0 auto !important;
    height: auto !important;
  }

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

  .contact-form form {
    gap: 16px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    font-size: 1rem;
  }

  .contact-form button,
  .btn-submit {
    padding: 12px;
    font-size: 1rem;
    width: 100%;
  }

  .btn-submit {
    margin-bottom: 0 !important;
  }

  .contact-form-wrapper.container {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .info-box {
    padding: 10px !important; /* Reduce from 20px to 10px */
    margin: 0 !important;
  }

  .info-box i {
    font-size: 1.3rem;
  }

  .info-box.email-box {
    padding: 10px 16px !important;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }


  .info-box.email-box i {
    font-size: 1.1rem !important;
    margin-bottom: 6px;
  }


  /* === MODAL === */
  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }

  .modal-close {
    top: 10px;
    right: 15px;
    font-size: 1.3rem;
  }

  .modal-content h3 {
    font-size: 1.25rem;
  }

  .modal-content form label {
    font-size: 0.95rem;
  }

  /* Footer wrapper */
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 15px;
    gap: 40px;
    background-color: #000;
    color: white;
  }

  /* Footer sections */
  .footer-left,
  .center-content,
  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  /* Navigation links */
  .footer-left a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
  }

  /* Reset absolute position from desktop layout */
  .center-content {
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }


  /* Copyright + Powered by */
  .center-content p,
  .footer-right p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.5;
  }

  /* Social media icons */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .social-icons a {
    font-size: 24px;
    color: white;
  }

  .social-icons a:hover {
    transform: scale(1.1);
  }

  /* Icon sizing (optional) */
  .facebook-icon {
    font-size: 24px;
  }




  /* === LANGUAGE SELECTOR === */
  .lang-selector {
    position: fixed;
    bottom: 20px; /* 👈 near the bottom by default */
    left: 20px;
    z-index: 1000;
    transition: transform 0.3s ease;
  }

  .lang-selector.shift-up {
    transform: translateY(-90px); /* 👈 shift the button UP when opened */
  }


  .lang-toggle-btn {
    font-size: 14px;
    padding: 10px 18px;
    width: 140px;
  }

  .lang-dropdown {
    width: 140px;
    font-size: 13px;
  }

  /* === THANK YOU PAGE === */
  .thank-you-title {
    font-size: 1.8rem;
  }

  .thank-you-message {
    font-size: 1rem;
    margin-bottom: 24px;
    padding: 0 20px;
  }

  .go-back-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  /* === GALLERY === */
  .three-card-row {
    flex-direction: column;
    align-items: center;
  }

  .gallery-card {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }

  .gallery-img {
    height: auto;
    max-height: 300px;
    border-radius: 8px;
  }

  .gallery-description p {
    font-size: 1rem;
    text-align: center;
    padding: 0 20px;
  }

  .market-gallery__header h2 {
    font-size: 2rem;
  }

  /* === QUOTE SECTION === */
  .quote-btn {
    font-size: 1rem;
    padding: 12px 30px;
  }

  .quote-box {
    padding: 20px;
  }

  .web-service-box {
  padding: 10px;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background: white;
}

  .web-service-image {
    position: relative;
    width: 100%;
    height: auto;
  }

  .web-service-image img {
    width: 100%;
    height: auto;
    max-height: 280px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
  }

  .web-service-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #28a745; /* Green */
    color: white;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: 600;
    z-index: 10;
    white-space: nowrap;
  }

    .about-card-grid {
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
    gap: 12px;
  }

  .about-card {
    width: 100%;
    max-width: 92%;
    padding: 10px 14px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.3;
  }

  .about-card {
    flex: 1 1 90%;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.9rem;
  }
  .about-card h4 {
    font-size: 1rem;
  }
  .about-card p {
    font-size: 0.85rem;
  }
}
