/*========================================================
  GLOBAL VARIABLES
=========================================================*/
:root {
  --primary-color: #703724;
  --secondary-color: #fec399;
  --text-color: #703724;
  --background-color: #fec399;
  --white-color: #ffffff;
  --light-background: #fff9f6;
  --primary-font: "Belleza", sans-serif;
  --title-font: "Italiana", serif;
  --menu-font: "Montserrat", sans-serif;
  --copyright-font: "Montserrat Alternates", sans-serif;
  --standard-width: 900px;
  --large-width: 1200px;
  --card-width: 800px;
  --standard-radius: 10px;
  --large-radius: 30px;
  --font-small: 1.125rem;
  --font-normal: 1.25rem;
  --font-medium: 1.5rem;
  --font-large: 1.625rem;
  --font-xlarge: 1.75rem;
}

/*========================================================
  BODY
=========================================================*/
body {
  font-family: var(--primary-font);
  background-color: var(--background-color);
  color: var(--text-color);
}

/*========================================================
  MENU
=========================================================*/
.main-menu {
  width: 100%;
  height: 60px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  padding: 10px 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: top 0.4s ease-in-out;
}

.menu-container {
  width: var(--large-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-item {
  display: block;
  padding: 10px;
}

.logo-item:hover .menu-logo {
  transform: scale(1.05);
}

.logo-item.active {
  cursor: default;
  pointer-events: none;
}

.menu-logo {
  height: 50px;
  width: auto;
  display: block;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}

.menu-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-links li {
  margin: 0 0 0 15px;
}

.menu-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: var(--standard-radius);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.menu-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
}

.menu-links a i {
  font-size: 24px;
  margin-bottom: 8px;
}

.menu-links a .menu-text {
  font-family: var(--menu-font);
  font-size: 0.9em;
  text-align: center;
}

/*========================================================
  HERO SECTION
=========================================================*/
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
  text-align: center;
  background: url("../assets/img/hero.jpg") no-repeat center center/cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(112, 55, 36, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white-color);
  max-width: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-logo {
  width: 300px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--title-font);
  font-size: 2.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.btn-cta {
  font-family: var(--primary-font);
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  border: 2px solid var(--primary-color);
}

.btn-cta:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: scale(1.05);
}

/*========================================================
  MAIN CONTENT
=========================================================*/
.container {
  width: var(--standard-width);
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}

.container-large {
  width: var(--large-width);
  max-width: var(--large-width);
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}

.paragraph {
  font-size: var(--font-normal);
  margin: 20px auto;
  text-align: center;
  line-height: 1.7;
  padding: 0 5px;
  max-width: 70ch;
}

.subtitle {
  margin: 40px auto 20px;
  font-family: var(--title-font);
  font-size: var(--font-large);
  font-weight: bold;
  text-align: center;
}

.map-paragraph {
  font-size: var(--font-normal);
  margin-bottom: 20px;
}

.map-paragraph a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.map-paragraph a:hover {
  text-decoration: underline;
}

.map-frame {
  margin: 20px auto;
  border-radius: var(--standard-radius);
  overflow: hidden;
}

/*========================================================
  SAMPLE GALLERY (HOMEPAGE)
=========================================================*/
.container.sample-gallery-container {
  padding: 80px 0;
}

.sample-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px auto;
  flex-wrap: wrap;
}

.sample-image {
  width: 100%;
  max-width: 350px;
  object-fit: cover;
  border-radius: var(--large-radius);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  margin: 0 auto;
}

.sample-image:hover {
  transform: scale(1.03);
}

/*========================================================
  ABOUT SECTION (HOMEPAGE)
=========================================================*/
.container.about-container {
  padding: 50px 0 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 60vh;
  gap: 30px;
  justify-content: center;
}

.about-section.homepage {
  margin: 0;
}

.about-section.homepage .founder-image {
  max-width: 300px;
  transition: transform 0.3s ease-in-out;
}

.about-section.homepage .founder-image:hover {
  transform: scale(1.03);
}

/*========================================================
  SPECIALTIES SECTION (HOMEPAGE)
=========================================================*/
.specialties-section {
  padding: 0;
  background-color: var(--white-color);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  justify-items: center;
}

.specialty-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

.specialty-card img {
  width: 100%;
  max-width: 400px;
  height: 350px;
  object-fit: cover;
  border-radius: var(--standard-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

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

.specialty-card h3 {
  font-family: var(--title-font);
  font-size: var(--font-medium);
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.specialty-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/*========================================================
  PROMO HIGHLIGHT SECTION (HOMEPAGE)
=========================================================*/
.promo-highlight-section {
  background-color: var(--light-background);
  padding: 60px 0;
}

.promo-highlight-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.promo-highlight-text,
.promo-highlight-image {
  flex: 1;
}

.promo-highlight-text {
  text-align: left;
}

.promo-highlight-text .subtitle {
  margin-top: 0;
  text-align: left;
}

.promo-highlight-text h3 {
  font-family: var(--title-font);
  font-size: 2rem;
  margin-bottom: 15px;
}

.promo-highlight-text p {
  text-align: left;
}

.promo-price {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 20px 0 5px;
}

.promo-highlight-text small {
  display: block;
  margin-bottom: 30px;
  opacity: 0.8;
}

.promo-highlight-image img {
  width: 100%;
  border-radius: var(--standard-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.promo-highlight-image img:hover {
  transform: scale(1.05);
}

/*========================================================
  FAQ SECTION (HOMEPAGE)
=========================================================*/
.faq-section {
  padding-bottom: 60px;
}

.faq-container {
  max-width: var(--standard-width);
  margin: 40px auto 0;
  text-align: left;
  border: 1px solid rgba(112, 55, 36, 0.2);
  border-radius: var(--standard-radius);
  overflow: hidden;
  background-color: var(--white-color);
  font-family: var(--menu-font);
}

.faq-item summary {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  padding: 1rem;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(112, 55, 36, 0.1);
}

.faq-item:last-of-type {
  border-bottom: none;
}

.faq-item[open]:last-of-type summary {
  border-bottom: 1px solid rgba(112, 55, 36, 0.1);
}

.faq-item summary::after {
  content: "\f078";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  transition: transform 0.3s ease-in-out;
  font-size: 0.9em;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 1.5rem 1rem;
  font-size: 1rem;
  line-height: 1.7;
  background-color: var(--light-background);
}

/*========================================================
  REVIEWS WIDGET
=========================================================*/
.reviews-section {
  background-color: var(--light-background);
}

.reviews-section .subtitle {
  margin: 40px auto;
}

div.eapps-widget {
  overflow: hidden;
}

/*========================================================
  LOADING SCREEN
=========================================================*/
#loading-screen {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color);
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.loading-container {
  text-align: center;
}

.loading-logo {
  width: 250px;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/*========================================================
  FOOTER
=========================================================*/
footer {
  font-family: var(--menu-font);
  background-color: var(--primary-color);
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.footer-box {
  width: var(--large-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  width: 80px;
  height: auto;
}

.footer-logo-container span {
  font-family: var(--title-font);
  color: var(--background-color);
  font-weight: bold;
  font-size: 1.2rem;
  max-width: 200px;
  text-align: left;
  line-height: 1.3;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.links {
  text-align: right;
}

.footer-link {
  font-weight: bold;
  color: var(--secondary-color);
  font-size: 1rem;
  display: block;
  margin: 10px 0;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
}

.footer-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-link.active {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: var(--secondary-color);
  font-size: 1.8rem;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.footer-social a:hover {
  color: var(--white-color);
  transform: scale(1.1);
}

.copyright {
  font-family: var(--copyright-font);
  text-align: center;
  color: rgba(254, 195, 153, 0.7);
  font-size: 0.8rem;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(254, 195, 153, 0.2);
  line-height: 1.6;
}

.copyright a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.copyright a:hover {
  text-decoration: underline;
}

/*========================================================
  INTERNAL PAGES STYLES
=========================================================*/
.page-title {
  font-family: var(--title-font);
  font-weight: bold;
  font-size: 2.5rem;
  margin: 120px auto 40px;
  text-align: center;
  color: var(--primary-color);
}

.menu-links a.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  cursor: default;
  pointer-events: none;
}

/*========================================================
  CTA BUTTON (INTERNAL PAGES)
=========================================================*/
.cta-container {
  margin: 60px auto;
  text-align: center;
}

.cta-container p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-cta-page {
  font-family: var(--primary-font);
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  border: 2px solid var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-page:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: scale(1.05);
}

.btn-cta-page.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-cta-page.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/*========================================================
  GALLERY PAGE
=========================================================*/
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
  padding: 0 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--standard-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  aspect-ratio: 4 / 5;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

/*========================================================
  LIGHTBOX (GALLERY MODAL)
=========================================================*/
#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

#lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

#lightbox-content img,
#lightbox-content video {
  width: 100%;
  height: 100%;
  max-width: 80vw;
  max-height: 90vh;
  object-fit: contain;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10001;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox-close:hover,
#lightbox-prev:hover,
#lightbox-next:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

#lightbox-prev {
  left: 20px;
}

#lightbox-next {
  right: 20px;
}

.hidden {
  display: none !important;
}

body.no-scroll {
  overflow: hidden;
}

/*========================================================
  ABOUT US PAGE
=========================================================*/
.about-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 40px auto;
}

.about-section:last-child {
  margin-bottom: 0;
}

.about-section.reverse {
  flex-direction: row-reverse;
}

.about-image,
.about-text {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: var(--standard-radius);
}

.about-text h2 {
  font-family: var(--title-font);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-align: left;
}

.about-text .paragraph {
  text-align: left;
  margin: 15px 0;
  padding: 0;
  max-width: none;
}

.founder-image {
  border-radius: 50% !important;
  max-width: 350px;
  margin: 0 auto;
  display: block;
}

/*========================================================
  SERVICES PAGE
=========================================================*/
.services-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px auto;
}

.service-card {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: var(--standard-radius);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card-title {
  font-family: var(--title-font);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.1rem;
  color: var(--text-color);
  padding: 15px 0;
  border-bottom: 1px dashed rgba(112, 55, 36, 0.2);
}

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

.service-list li span {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-list li strong {
  font-weight: bold;
  color: var(--primary-color);
}

.service-list li small {
  font-size: 0.8rem;
  display: block;
  opacity: 0.8;
}

.service-list li.note {
  justify-content: flex-end;
  font-size: 0.9rem;
  font-style: italic;
}

/*========================================================
  PROMOTIONS PAGE
=========================================================*/
.page-subtitle {
  font-size: 1.2rem;
  margin: -30px auto 40px;
  max-width: 500px;
}

.promo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.promo-card {
  background-color: var(--white-color);
  border-radius: var(--standard-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  flex: 0 1 350px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.promo-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.promo-card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.promo-card-title {
  font-family: var(--title-font);
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.promo-card-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.promo-card-price {
  font-family: var(--primary-font);
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.promo-card-note {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 20px;
  min-height: 30px;
}

.btn-cta-promo {
  font-family: var(--primary-font);
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  border: 2px solid var(--primary-color);
  margin-top: auto;
}

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

/*========================================================
  PRIVACY POLICY PAGE
=========================================================*/
.last-updated {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 40px;
  font-style: italic;
  opacity: 0.8;
}

.privacy-content {
  max-width: var(--standard-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
  line-height: 1.8;
}

.privacy-content h2 {
  font-family: var(--title-font);
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(112, 55, 36, 0.2);
}

.privacy-content p {
  font-family: var(--menu-font)
}

.privacy-content p strong {
  font-weight: bold;
}

.privacy-content ul {
  list-style-position: inside;
  padding-left: 20px;
}

.privacy-content ul li {
  margin-bottom: 5px;
}

/*========================================================
  WHATSAPP FLOATING BUTTON
=========================================================*/
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: transform 0.3s ease-in-out;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/*========================================================
  404 ERROR PAGE
=========================================================*/
.error-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.error-logo {
  width: 200px;
  margin-bottom: 20px;
}

.error-page .page-title {
  margin: 20px 0;
}

/*========================================================
  SCROLLBAR STYLES
=========================================================*/
* {
  scrollbar-width: thin;
  scrollbar-color: #703724 #fec399;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #fec399;
}

*::-webkit-scrollbar-thumb {
  background-color: #703724;
  border-radius: 4px;
  border: 1px solid #fec399;
  transition: background-color 0.3s ease-in-out;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #703724;
}

/*========================================================
  RESPONSIVENESS
=========================================================*/
@media screen and (max-width: 1200px) {
  .container-large {
    width: 90%;
  }

  .footer-box {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .container {
    width: 90%;
  }

  .menu-container {
    width: 95%;
  }

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

  .hero p {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 768px) {
  .about-section,
  .about-section.reverse {
    flex-direction: column;
    gap: 30px;
  }

  .about-text h2,
  .about-text .paragraph {
    text-align: center;
  }

  .about-text .paragraph {
    margin: 20px auto;
  }

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

  .footer-box,
  .footer-right {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-logo-container {
    flex-direction: column;
    gap: 10px;
  }

  .footer-logo-container span,
  .links {
    text-align: center;
  }

  .footer-link {
    display: inline-block;
    margin: 10px 10px;
    font-size: var(--font-small);
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    font-size: 1.8rem;
  }

  .sample-gallery,
  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .specialty-card {
    flex-direction: column-reverse;
    max-width: 400px;
  }

  .specialty-card img {
    height: 450px;
    max-height: 450px;
    object-position: top center;
  }

  .promo-highlight-content {
    flex-direction: column;
    gap: 30px;
  }

  .promo-highlight-text,
  .promo-highlight-text .subtitle,
  .promo-highlight-text h3,
  .promo-highlight-text p {
    text-align: center;
  }

  .container.about-container {
    flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .page-title {
    font-size: 2rem;
    margin-top: 100px;
  }
}

@media screen and (max-width: 480px) {
  .loading-logo {
    width: 200px;
  }

  .menu-logo {
    height: 40px;
  }

  .menu-links a {
    padding: 10px;
  }

  .menu-links a i {
    font-size: 24px;
  }

  .menu-links a .menu-text {
    font-size: 10px;
  }

  .hero-logo {
    width: 200px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .sample-image {
    width: 90%;
    height: 350px;
  }
}
