/* ========================================
   HOME.CSS - Updated from source
   Generated from source/style.css
   ======================================== */

/* ===== HERO SECTION ===== */

.hero {
  padding-top: calc(var(--header-height) + 2rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__title-main {
  display: block;
  font-family: 'Great Vibes', 'Brush Script MT', cursive;
  font-size: 4rem;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.hero__title-sub {
  display: block;
  font-family: 'Comic Neue', 'Arial', sans-serif;
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.hero__description {
  font-size: 1.125rem;
  margin: 2rem 0;
  max-width: 500px;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__decoration {
  position: relative;
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

/* Hero Logo Styles */
.hero__logo {
  display: flex;
  justify-content: center;
  margin: 1rem 0 1.5rem 0;
  animation: logoFloat 3s ease-in-out infinite;
}

.hero__logo-img {
  height: 240px;
  width: auto;
  max-width: 600px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease;
}

.hero__logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

/* Mobile adjustments for hero logo */
@media screen and (max-width: 768px) {
  .hero__logo {
    margin: 1rem 0 1.5rem 0;
  }
  
  .hero__logo-img {
    height: 180px !important;
    max-width: 440px !important;
  }
}

@media screen and (max-width: 480px) {
  .hero__logo {
    margin: 0.8rem 0 1.2rem 0;
  }
  
  .hero__logo-img {
    height: 140px !important;
    max-width: 360px !important;
  }
}

/* Logo floating animation */
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}



/* ===== SLIDESHOW STYLES ===== */

.slideshow-container {
  position: relative;
  height: 500px;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow-medium);
  background: var(--white);
}

.slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideshow-slide.active {
  opacity: 1;
}

.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.slideshow-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.slideshow-slide-title {
  font-family: 'Great Vibes', 'Brush Script MT', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.slideshow-slide-description {
  font-family: 'Comic Neue', 'Arial', sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0.9;
  color: var(--white);
}

.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  font-size: 1.2rem;
  color: var(--text-color);
}

.slideshow-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-light);
}

.slideshow-btn.prev {
  left: 1rem;
}

.slideshow-btn.next {
  right: 1rem;
}

.slideshow-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slideshow-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slideshow-indicator.active {
  background: var(--white);
  transform: scale(1.2);
}

.slideshow-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Responsive slideshow */
@media screen and (max-width: 768px) {
  .slideshow-container {
    height: 400px;
    border-radius: 10px;
  }
  
  .slideshow-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .slideshow-btn.prev {
    left: 0.5rem;
  }
  
  .slideshow-btn.next {
    right: 0.5rem;
  }
  
  .slideshow-slide-content {
    padding: 1.5rem;
  }
  
  .slideshow-slide-title {
    font-size: 1.25rem;
  }
  
  .slideshow-slide-description {
    font-size: 0.9rem;
  }
  
  .slideshow-indicators {
    bottom: 0.5rem;
  }
  
  .slideshow-indicator {
    width: 10px;
    height: 10px;
  }
}

@media screen and (max-width: 480px) {
  .slideshow-container {
    height: 300px;
  }
  
  .slideshow-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .slideshow-slide-content {
    padding: 1rem;
  }
  
  .slideshow-slide-title {
    font-size: 1.1rem;
  }
  
  .nav {
    padding: 0 1rem;
  }
  
  .nav__logo {
    font-size: 2rem !important;
  }
  
  .nav__logo-img {
    height: 45px;
    max-width: 160px;
  }
  
  .hero__title-main {
    font-size: 3.2rem !important;
    line-height: 1.1 !important;
  }
  
  .hero__title-sub {
    font-size: 1.2rem !important;
  }
  
  .section__title {
    font-size: 2.2rem !important;
  }
  
  .slideshow-slide-title {
    font-size: 1.8rem !important;
  }
  
  .slideshow-slide-description {
    font-size: 1rem !important;
  }
  
  .nav__link {
    font-size: 1.3rem !important;
  }
  
  /* Contact section mobile styles for very small devices */
  .contact .container {
    padding: 0 1rem;
  }
  
  .contact__info {
    padding: 1.5rem;
  }
  
  .contact__item {
    padding: 1rem 0;
  }
}



/* ===== ABOUT PREVIEW SECTION ===== */

.about-preview {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
  border-top: 1px solid rgba(212, 165, 116, 0.2);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.about-preview .container {
  padding: 0 3rem;
  max-width: 1400px;
}

.about-preview__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 3rem 0;
}

.about-preview__content {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(212, 165, 116, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.about-preview__description {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-preview__image {
  position: relative;
  height: 450px;
  background: linear-gradient(135deg, var(--primary-color), var(--brand-primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(212, 165, 116, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin: 1rem;
}

.about-preview__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  pointer-events: none;
}

.about-preview__decoration {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.about-preview__image:hover .about-preview__decoration {
  transform: scale(1.1) rotate(10deg);
  color: rgba(255, 255, 255, 1);
}

.about-preview__social {
  margin: 2rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.about-preview__social span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-family: 'Comic Neue', 'Arial', sans-serif;
}

.about-preview__social-links {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.about-preview__social-link {
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 2px solid rgba(212, 165, 116, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-preview__social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.social-icon-small {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(13%) saturate(1076%) hue-rotate(22deg) brightness(94%) contrast(86%);
  transition: var(--transition);
}

.about-preview__social-link:hover .social-icon-small {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}



/* ===== SERVICES PREVIEW SECTION ===== */

.services-preview {
  padding: 4rem 0;
}

.services-preview .container {
  padding: 0 2rem;
}

.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 0 1rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(212, 165, 116, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  background: white;
  transition: left 0.6s ease;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(212, 165, 116, 0.5);
  box-shadow: var(--shadow-medium);
}

.service-card:hover::before {
  left: 100%;
}

.service-card__icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-color), var(--brand-primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(212, 165, 116, 0.6);
}

.service-card__title {
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-card:hover .service-card__title {
  transform: translateY(-2px);
  color: var(--primary-color);
}

.service-card__description {
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-card:hover .service-card__description {
  transform: translateY(-1px);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: var(--font-medium);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(212, 165, 116, 0.1);
  border: 1px solid transparent;
}

.service-card__link:hover {
  gap: 1rem;
  background: rgba(212, 165, 116, 0.2);
  border-color: rgba(212, 165, 116, 0.3);
  transform: translateY(-1px);
}

.service-card__link i {
  transition: transform 0.3s ease;
}

.service-card__link:hover i {
  transform: translateX(3px);
}



/* ===== SERVICES PREVIEW RESPONSIVE ===== */

@media (max-width: 1024px) {
  .services-preview .container {
    padding: 0 1.5rem;
  }
  
  .services-preview__grid {
    margin: 0 0.5rem;
  }
}

@media (max-width: 768px) {
  .services-preview {
    padding: 3rem 0;
  }
  
  .services-preview .container {
    padding: 0 1rem;
  }
  
  .services-preview__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0;
  }
  
  .service-card {
    padding: 2rem;
    margin: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .services-preview .container {
    padding: 0 0.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
    margin: 0;
  }
}



/* ===== GALLERY PREVIEW SECTION ===== */

.gallery-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  height: 350px;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid rgba(212, 165, 116, 0.1);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(212, 165, 116, 0.3);
}

.gallery-item__image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-large);
}

.gallery-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  border-radius: var(--border-radius-large);
}

.gallery-item:hover .gallery-item__image img {
  transform: scale(1.05);
}

.gallery-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 2rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  transform: translateY(0);
}

.gallery-item__overlay h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: var(--font-semi-bold);
}

.gallery-item__overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.gallery-item__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-item__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.gallery-item:hover .gallery-item__button {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
}

.gallery-item:hover .gallery-item__button::before {
  left: 100%;
}

.gallery-item:hover .gallery-item__overlay h4 {
  transform: translateY(-2px);
  color: var(--white);
}

.gallery-item:hover .gallery-item__overlay p {
  transform: translateY(-1px);
}

/* Mobile responsive gallery */
@media screen and (max-width: 1024px) {
  .gallery-container {
    padding: 0 1.5rem;
  }
  
  .gallery-full__grid {
    gap: 2rem;
  }
  
  .gallery-cta {
    margin: 3rem 1.5rem 0 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .gallery-container {
    padding: 0 1rem;
  }
  
  .gallery-full__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .gallery-item {
    height: 280px;
  }
  
  .gallery-item__overlay {
    padding: 1.5rem;
  }
  
  .gallery-item__overlay h4 {
    font-size: 1.1rem;
  }
  
  .gallery-item__overlay p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .gallery-item__button {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .gallery-cta {
    margin: 2rem 1rem 0 1rem;
  }
  
  .gallery-cta__title {
    font-size: 2rem;
  }
  
  .gallery-cta__content {
    padding: 3rem 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .gallery-container {
    padding: 0 0.5rem;
  }
  
  .gallery-full__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item {
    height: 250px;
  }
  
  .gallery-item__overlay {
    padding: 1rem;
  }
  
  .gallery-item__overlay h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }
  
  .gallery-item__overlay p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .gallery-preview__action {
    margin-top: 1.5rem !important;
  }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE STYLES ===== */

/* Hero Section Mobile Improvements */
@media screen and (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero__image {
    height: 450px;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 1rem) 0 2rem;
  }
  
  .hero .container {
    padding: 0 1.5rem;
  }
  
  .hero__container {
    gap: 1.5rem;
  }
  
  .hero__content {
    text-align: center;
  }
  
  .hero__title-sub {
    font-size: 1.1rem;
  }
  
  .hero__description {
    font-size: 1rem;
    margin: 1.5rem auto;
    max-width: 100%;
  }
  
  .hero__buttons {
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero__buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero__image {
    height: 350px;
  }
  
  .slideshow-container {
    height: 350px;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    padding: calc(var(--header-height) + 0.5rem) 0 1.5rem;
  }
  
  .hero .container {
    padding: 0 1rem;
  }
  
  .hero__container {
    gap: 1rem;
  }
  
  .hero__title-sub {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .hero__description {
    font-size: 0.95rem;
    margin: 1rem auto;
  }
  
  .hero__buttons {
    gap: 0.5rem;
  }
  
  .hero__buttons .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
  }
  
  .hero__image {
    height: 280px;
  }
  
  .slideshow-container {
    height: 280px;
  }
}

/* About Preview Mobile Improvements */
@media screen and (max-width: 1024px) {
  .about-preview__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-preview__image {
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .about-preview .container {
    padding: 0 1.5rem;
  }
  
  .about-preview__container {
    gap: 2rem;
    padding: 2rem 0;
  }
  
  .about-preview__content {
    padding: 1.5rem;
  }
  
  .about-preview__description {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  
  .about-preview__image {
    height: 300px;
    margin: 0.5rem;
  }
  
  .about-preview__decoration {
    font-size: 4rem;
  }
  
  .about-preview__social {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .about-preview__social span {
    font-size: 0.95rem;
  }
  
  .about-preview__social-links {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .about-preview__social-link {
    width: 42px;
    height: 42px;
  }
}

@media screen and (max-width: 480px) {
  .about-preview .container {
    padding: 0 1rem;
  }
  
  .about-preview__container {
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
  
  .about-preview__content {
    padding: 1.25rem;
  }
  
  .about-preview__description {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .about-preview__image {
    height: 250px;
    margin: 0;
    border-radius: 15px;
  }
  
  .about-preview__decoration {
    font-size: 3rem;
  }
  
  .about-preview__social {
    padding: 1.25rem;
    margin: 1.25rem 0;
  }
  
  .about-preview__social span {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
  
  .about-preview__social-links {
    gap: 0.6rem;
  }
  
  .about-preview__social-link {
    width: 38px;
    height: 38px;
  }
  
  .social-icon-small {
    width: 14px;
    height: 14px;
  }
}

/* Gallery Preview Mobile Improvements */
@media screen and (max-width: 768px) {
  .gallery-preview .container {
    padding: 0 1.5rem;
  }
  
  .gallery-preview__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .gallery-item {
    height: 300px;
  }
  
  .gallery-item__overlay {
    padding: 1.5rem;
  }
  
  .gallery-item__overlay h4 {
    font-size: 1.1rem;
  }
  
  .gallery-item__overlay p {
    font-size: 0.9rem;
  }
  
  .gallery-preview__action {
    margin-top: 2rem !important;
  }
}

@media screen and (max-width: 480px) {
  .gallery-preview .container {
    padding: 0 1rem;
  }
  
  .gallery-preview__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item {
    height: 280px;
  }
  
  .gallery-item__overlay {
    padding: 1.25rem;
  }
  
  .gallery-item__overlay h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }
  
  .gallery-item__overlay p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .gallery-preview__action {
    margin-top: 1.5rem !important;
  }
}

/* Process/CTA Section Mobile Improvements */
@media screen and (max-width: 768px) {
  .process .container {
    padding: 0 1.5rem;
  }
  
  .process .section__header {
    padding: 0 1rem;
  }
  
  .process .section__title {
    font-size: 2rem;
  }
  
  .process .section__description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .process .container {
    padding: 0 1rem;
  }
  
  .process .section__header {
    padding: 0 0.5rem;
  }
  
  .process .section__title {
    font-size: 1.75rem;
  }
  
  .process .section__description {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .process .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Footer Mobile Improvements */
@media screen and (max-width: 768px) {
  .footer {
    padding: 2.5rem 0 1rem;
  }
  
  .footer .container {
    padding: 0 1.5rem;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1rem;
  }
  
  .footer__logo {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .footer__logo-img {
    height: 65px;
    max-width: 220px;
  }
  
  .footer__description {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .footer__social {
    gap: 0.75rem;
    justify-content: center;
  }
  
  .footer__title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .footer__contact-item {
    margin-bottom: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  
  .footer__contact-item span {
    font-size: 0.95rem;
  }
  
  .footer__map-container {
    max-width: 100%;
  }
  
  .footer__copy {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  .footer__copy p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 2rem 0 0.75rem;
  }
  
  .footer .container {
    padding: 0 1rem;
  }
  
  .footer__content {
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .footer__logo {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .footer__logo-img {
    height: 55px;
    max-width: 180px;
  }
  
  .footer__description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .footer__social {
    gap: 0.6rem;
  }
  
  .footer__social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-icon {
    width: 18px;
    height: 18px;
  }
  
  .footer__title {
    font-size: 1rem;
  }
  
  .footer__contact-item {
    font-size: 0.9rem;
  }
  
  .footer__contact-item i {
    font-size: 0.95rem;
  }
  
  .footer__copy {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }
  
  .footer__copy p {
    font-size: 0.85rem;
  }
}



