/* ===================
   VARIABLES & RESET
=================== */
:root {
   /* Colors */
   --color-primary: #3AA79B;
   --color-primary-dark: #0D4739;
   --color-text: #334155;
   --color-text-light: #F1F5F9;
   --color-bg-light: rgba(255, 255, 255, 0.95);
   --color-bg-gradient: linear-gradient(to right,
         rgba(255, 255, 255, 0.95),
         rgba(255, 255, 255, 0.8));

   /* Typography */
   --font-heading: 'Poppins', sans-serif;
   --font-body: 'DM Sans', sans-serif;

   /* Layout */
   --header-height: 4rem;
   --container-width: 1120px;
   --section-padding: 8rem 0;
}

/* Reset */
*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
   overflow-x: hidden;
}

body {
   font-family: var(--font-body);
   color: var(--color-text);
   overflow-x: hidden;
   -webkit-font-smoothing: antialiased;
   width: 100%;
}

a {
   text-decoration: none;
}

img {
   max-width: 100%;
   height: auto;
}



/* ===================
    UTILITY CLASSES
 =================== */
.container {
   width: min(var(--container-width), 100% - 3rem);
   margin-inline: auto;
}

.section {
   padding: var(--section-padding);
}

.divider-1 {
   height: 1px;
   background: linear-gradient(270deg, var(--color-primary), transparent);
}

.divider-2 {
   height: 1px;
   background: linear-gradient(270deg, transparent, var(--color-primary));
}



/* ===================
    HEADER
 =================== */
#header {
   position: fixed;
   width: 100%;
   top: 0;
   left: 0;
   right: 0;
   z-index: 100;
   height: var(--header-height);
   background: rgba(58, 167, 155, 0.95);
   backdrop-filter: blur(8px);
   transition: background-color 0.3s ease;
}

#header nav {
   height: var(--header-height);
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0 1.5rem;
}

/* Logo Area */
.logo-container {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.img-logo {
   width: 3rem;
   height: 3rem;
   object-fit: contain;
   cursor: pointer;
}

.logo-container h1 {
   font-family: var(--font-heading);
   color: #2D3436;
   font-size: 1.5rem;
   font-weight: 600;
   cursor: pointer;
}

.logo-container span {
   color: white;
}

/* Navigation */
.nav-links {
   display: flex;
   gap: 2.5rem;
   list-style: none;
}

.nav-links a {
   color: var(--color-text-light);
   font-weight: 500;
   font-size: 0.9rem;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   position: relative;
   display: inline-block;
}

.nav-links a:hover {
   color: white;
   transform: scale(1.1);
}

/* Scrolled Header States */
#header.scrolled {
   background: var(--color-bg-light);
   backdrop-filter: blur(10px);
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#header.scrolled .logo-container h1 {
   color: #2D3436;
}

#header.scrolled .nav-links a {
   color: var(--color-text);
}

#header.scrolled .logo-container span {
   color: var(--color-primary);
}

#header.scrolled .nav-links a:hover {
   color: var(--color-primary);
}

/* Mobile Menu Button */
.menu-button {
   display: none;
}

.menu-button span {
   display: block;
   width: 100%;
   height: 3px;
   background-color: var(--color-text-light);
   transition: all 0.3s ease;
   border-radius: 3px;
}

.menu-button.active span:nth-child(1) {
   transform: translateY(9px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
   opacity: 0;
}

.menu-button.active span:nth-child(3) {
   transform: translateY(-9px) rotate(-45deg);
}



/* ===================
   HAMBURGER BUTTON
=================== */
.menu-button {
   display: none;
   border: none;
   background: transparent;
   cursor: pointer;
   padding: 0;
   width: 30px;
   height: 24px;
   flex-direction: column;
   justify-content: space-between;
   position: relative;
   z-index: 100;
   margin-left: auto;
}

.menu-button span {
   display: block;
   width: 100%;
   height: 3px;
   background-color: #2D3436;
   border-radius: 3px;
   transition: all 0.3s ease;
}

/* Estados do botão */
.menu-button.active span {
   background-color: #FFFFFF;
}

.menu-button.active span:nth-child(1) {
   transform: translateY(9px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
   opacity: 0;
}

.menu-button.active span:nth-child(3) {
   transform: translateY(-9px) rotate(-45deg);
}

#header.scrolled .menu-button span {
   background-color: var(--color-primary);
}



/* ===================
   HERO SECTION
=================== */
.hero {
   width: 100%;
   height: 100vh;
   position: relative;
   display: flex;
   align-items: center;
   background: white;
   margin-top: var(--header-height);
   overflow: hidden;
}

/* Background Image Area */
.hero-background {
   position: absolute;
   top: 0;
   left: 30%;
   width: 70%;
   height: 100%;
   z-index: 1;
   object-fit: cover;
   -webkit-mask-image: linear-gradient(to right,
         transparent,
         white 30%,
         white 100%);
   mask-image: linear-gradient(to right,
         transparent,
         white 30%,
         white 100%);
}

.hero-background::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 15%;
   height: 100%;
   background: linear-gradient(to right,
         transparent,
         transparent);
   z-index: 2;
}

.hero::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 15vh;
   background: linear-gradient(to bottom,
         rgba(58, 167, 155, 0.95) 0%,
         transparent 100%);
   z-index: 3;
}

.hero-background img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

/* Content Area */
.hero-content {
   position: relative;
   z-index: 2;
   width: 100%;
   padding-left: 5%;
   margin-top: var(--header-height);
}

/* Card Animation */
@keyframes floating {
   0% {
      transform: translateY(0px);
   }

   50% {
      transform: translateY(-10px);
   }

   100% {
      transform: translateY(0px);
   }
}

/* Content Card */
.content-wrapper {
   width: 100%;
   max-width: 380px;
   padding: 2rem;
   margin-bottom: 3rem;
   background: linear-gradient(135deg,
         rgba(255, 255, 255, 0.95) 0%,
         rgba(255, 255, 255, 0.85) 100%);
   border-radius: 24px;
   backdrop-filter: blur(8px);
   box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.1),
      0 1px 8px rgba(58, 167, 155, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.18);
   animation: floating 3s ease-in-out infinite;
   text-align: center;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.content-wrapper:hover {
   transform: translateY(-12px);
   box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.12),
      0 8px 24px rgba(58, 167, 155, 0.15);
}

/* Typography */
.hero h2 {
   font-family: var(--font-heading);
   font-size: clamp(1.8rem, 3.5vw, 2.5rem);
   line-height: 1.2;
   color: var(--color-text);
   margin-bottom: 1rem;
   text-align: center;
}

.hero h2 span {
   color: var(--color-primary);
}

.hero p {
   font-size: clamp(0.9rem, 1.2vw, 1rem);
   line-height: 1.6;
   color: var(--color-text);
   margin-bottom: 1.5rem;
   opacity: 0.9;
   text-align: center;
}

/* Hero Button */
.hero-button {
   display: inline-flex;
   align-items: center;
   padding: 1rem 2.5rem;
   background: var(--color-primary);
   color: white;
   font-weight: 500;
   border-radius: 50px;
   box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
   transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   animation: buttonPulse 2s infinite;
   position: relative;
   overflow: hidden;
}

.hero-button::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(120deg,
         transparent,
         rgba(255, 255, 255, 0.2),
         transparent);
   transform: translateX(-100%);
   transition: 0.6s;
}

.hero-button:hover {
   animation: none;
   transform: translateY(-3px) scale(1.05);
   background: var(--color-primary);
   box-shadow:
      0 10px 20px rgba(58, 167, 155, 0.2),
      inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.hero-button:hover::after {
   transform: translateX(100%);
}

/* Button Pulse Animation */
@keyframes buttonPulse {
   0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(58, 167, 155, 0.4);
   }

   70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(58, 167, 155, 0);
   }

   100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(58, 167, 155, 0);
   }
}



/* ===================
   ABOUT SECTION
=================== */
#about {
   padding: 6rem 0;
   background: linear-gradient(135deg,
         rgba(255, 255, 255, 0.95) 0%,
         rgba(58, 167, 155, 0.05) 100%);
}

/* Grid Layout */
#about .container.grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
   perspective: 2000px;
}

/* Image Container */
#about .image {
   position: relative;
   perspective: 2000px;
   transform-style: preserve-3d;
   padding: 20px;
}

#about .image img {
   width: 100%;
   border-radius: 20px;
   transform: translateZ(50px);
   transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
   box-shadow:
      25px 25px 50px rgba(0, 0, 0, 0.15),
      5px 5px 20px rgba(58, 167, 155, 0.2),
      -5px -5px 20px rgba(255, 255, 255, 0.8);
}

#about .image:hover img {
   transform: translateZ(80px);
   box-shadow:
      35px 35px 70px rgba(0, 0, 0, 0.2),
      10px 10px 30px rgba(58, 167, 155, 0.3),
      -10px -10px 30px rgba(255, 255, 255, 0.9);
}

/* Decorative Border Effect */
#about .image::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: 2px solid var(--color-primary);
   border-radius: 20px;
   transform: translateZ(-30px);
   transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
   opacity: 0.3;
}

#about .image:hover::before {
   transform: translateZ(-50px) translate(15px, 15px);
   opacity: 0.5;
}

/* Reflection Effect */
#about .image::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg,
         rgba(255, 255, 255, 0.2) 0%,
         transparent 50%,
         rgba(58, 167, 155, 0.1) 100%);
   border-radius: 20px;
   transform: translateZ(51px);
   pointer-events: none;
   opacity: 0;
   transition: opacity 0.6s ease;
}

#about .image:hover::after {
   opacity: 1;
}

/* Text Content */
#about .text {
   padding-right: 2rem;
}

#about .title {
   font-size: 2.5rem;
   color: var(--color-text);
   margin-bottom: 2rem;
   font-family: var(--font-heading);
   position: relative;
}

#about p {
   margin-bottom: 1.5rem;
   line-height: 1.8;
   color: var(--color-text);
   position: relative;
   padding-left: 1rem;
}

/* Line Indicator Effect */
#about p::before {
   content: '';
   position: absolute;
   left: 0;
   top: 0.5rem;
   width: 3px;
   height: 0;
   background: var(--color-primary);
   transition: height 0.3s ease;
}

#about p:hover::before {
   height: calc(100% - 1rem);
}

/* Text Highlight Effects */
#about strong {
   color: var(--color-primary);
   font-weight: 600;
   position: relative;
   padding: 0 2px;
}

#about strong::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: 0;
   width: 100%;
   height: 2px;
   background: var(--color-primary);
   transform: scaleX(0);
   transition: transform 0.3s ease;
}

#about strong:hover::after {
   transform: scaleX(1);
}

/* Quote Styling */
#about em {
   font-style: italic;
   opacity: 0.8;
   display: block;
   margin-top: 2rem;
   padding: 1rem;
   border-left: 3px solid var(--color-primary);
   background: rgba(58, 167, 155, 0.05);
   border-radius: 0 10px 10px 0;
   transition: all 0.3s ease;
}

#about em:hover {
   background: rgba(58, 167, 155, 0.1);
   transform: translateX(10px);
}

#about p:last-child {
   margin-bottom: 0;
   font-size: 1.1rem;
}




/* ===================
   SERVICES SECTION
=================== */
#services {
   padding: var(--section-padding);
   background: var(--color-primary);
   min-height: 100vh;
}

#services .container {
   max-width: 1200px;
   width: 90%;
   margin: 0 auto;
   padding: 0 2rem;
}

/* Section Header */
#services header {
   text-align: center;
   max-width: 800px;
   margin: 0 auto 4rem;
}

#services .title {
   font-size: 2.8rem;
   color: white;
   margin-bottom: 1.5rem;
   font-family: var(--font-heading);
}

#services .subtitle {
   color: var(--color-text-light);
   font-size: 1.1rem;
   opacity: 0.9;
   max-width: 600px;
   margin: 0 auto;
}

#services .subtitle strong {
   color: white;
   font-weight: 600;
}

/* Services Grid */
.services-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   perspective: 2000px;
}

/* Service Card Base */
.service-card {
   position: relative;
   height: 300px;
   cursor: pointer;
   transform-style: preserve-3d;
   transition: transform 0.8s cubic-bezier(0.75, 0, 0.85, 1);
}

/* Card Faces Common Styles */
.service-preview,
.service-content {
   position: absolute;
   width: 100%;
   height: 100%;
   backface-visibility: hidden;
   border-radius: 20px;
   overflow: hidden;
   background: white;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Card Front */
.service-preview {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 1rem;
}

.service-icon {
   width: 100%;
   height: 180px;
   border-radius: 12px;
   overflow: hidden;
   margin-bottom: 1rem;
}

.service-icon img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
   transform: scale(1.05);
}

.service-title {
   font-size: 1.3rem;
   color: var(--color-text);
   font-family: var(--font-heading);
   text-align: center;
   margin-top: auto;
   position: relative;
   padding-bottom: 1rem;
}

/* Card Back */
.service-content {
   padding: 1.5rem;
   display: flex;
   flex-direction: column;
   justify-content: center;
   background: linear-gradient(135deg,
         rgba(255, 255, 255, 1) 0%,
         rgba(255, 255, 255, 0.95) 100%);
   transform: rotateY(180deg);
}

.service-description {
   color: var(--color-text);
   font-size: 0.85rem;
   line-height: 1.4;
   text-align: center;
   margin-bottom: 0.5rem;
   max-height: 200px;
   overflow-y: auto;
   padding-right: 0.5rem;
}

/* Custom Scrollbar for Description */
.service-description::-webkit-scrollbar {
   width: 4px;
}

.service-description::-webkit-scrollbar-thumb {
   background: var(--color-primary);
   border-radius: 2px;
}

.service-description::-webkit-scrollbar-track {
   background: rgba(0, 0, 0, 0.1);
   border-radius: 2px;
}

/* Highlight Words */
.service-description strong {
   color: var(--color-primary);
   font-weight: 600;
   display: inline-block;
   transition: transform 0.3s ease;
}

.service-description strong:hover {
   transform: scale(1.1);
}

/* Card Flip Animation */
.service-card:hover {
   transform: rotateY(180deg);
}

/* Flip Indicator */
.service-preview::before {
   content: '↻';
   position: absolute;
   top: 1rem;
   right: 1rem;
   font-size: 1rem;
   color: var(--color-primary);
   opacity: 0;
   transition: opacity 0.3s ease;
}

.service-card:hover .service-preview::before {
   opacity: 0.7;
}

/* Card Hover Effects */
.service-card::after {
   content: '';
   position: absolute;
   inset: 0;
   border-radius: 20px;
   background: linear-gradient(45deg,
         rgba(255, 255, 255, 0.1),
         rgba(255, 255, 255, 0));
   opacity: 0;
   transition: opacity 0.3s ease;
   pointer-events: none;
}

.service-card:hover::after {
   opacity: 1;
}






/* ===================
   TESTIMONIALS SECTION
=================== */
#testimonials {
   padding: var(--section-padding);
   background: linear-gradient(135deg,
         rgba(58, 167, 155, 0.05) 0%,
         rgba(255, 255, 255, 0.95) 50%,
         rgba(58, 167, 155, 0.05) 100%);
}

#testimonials .container {
   width: 90%;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

/* Section Header */
#testimonials header {
   text-align: center;
   max-width: 800px;
   margin: 0 auto 4rem;
}

#testimonials .title {
   font-size: 2.8rem;
   color: var(--color-text);
   margin-bottom: 1.5rem;
   font-family: var(--font-heading);
}

/* Swiper Container */
.testimonials.swiper-container {
   padding: 2rem 0.5rem;
   max-width: 1200px;
   margin: 0 auto;
   overflow: hidden;
}

.swiper-wrapper {
   display: flex;
   align-items: stretch;
   padding: 1rem 0;
}

.testimonial.swiper-slide {
   height: auto;
   padding: 0.5rem;
}

/* Testimonial Card */
.floating-card {
   background: linear-gradient(145deg, #ffffff, #f5f5f5);
   padding: 2rem;
   border-radius: 20px;
   height: 100%;
   box-shadow:
      20px 20px 60px #d9d9d9,
      -20px -20px 60px #ffffff;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
}

.floating-card:hover {
   transform: translateY(-10px);
   box-shadow:
      25px 25px 75px #d9d9d9,
      -25px -25px 75px #ffffff;
}

/* Testimonial Header */
.testimonial-header {
   display: flex;
   align-items: center;
   gap: 1.5rem;
   margin-bottom: 2rem;
   position: relative;
   z-index: 1;
}

.client-photo {
   width: 64px;
   height: 64px;
   border-radius: 50%;
   object-fit: cover;
   border: 3px solid var(--color-primary);
   padding: 2px;
   transition: transform 0.3s ease;
}

.floating-card:hover .client-photo {
   transform: scale(1.05);
}

.client-details h3 {
   font-size: 1.2rem;
   color: var(--color-text);
   margin-bottom: 0.5rem;
   font-weight: 600;
}

.rating {
   color: #ffd700;
   letter-spacing: 2px;
}

/* Testimonial Content */
.testimonial-body {
   margin-bottom: 2rem;
   position: relative;
   z-index: 1;
   cursor: grab;
}

.testimonial-body p {
   font-size: 1rem;
   line-height: 1.6;
   color: var(--color-text);
}

/* Testimonial Footer */
.testimonial-footer {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding-top: 1rem;
   border-top: 1px solid rgba(58, 167, 155, 0.1);
   position: relative;
   z-index: 1;
}

.verified {
   color: var(--color-primary);
   font-size: 0.9rem;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.date {
   font-size: 0.9rem;
   color: var(--color-text);
   opacity: 0.7;
}

/* Card Background Effect */
.floating-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(45deg,
         transparent,
         rgba(58, 167, 155, 0.03));
   opacity: 0;
   transition: opacity 0.3s ease;
}

.floating-card:hover::before {
   opacity: 1;
}

/* Swiper Pagination */
.swiper-pagination {
   position: relative;
   margin-top: 2rem;
}

.swiper-pagination-bullet {
   width: 30px;
   height: 4px;
   border-radius: 2px;
   background: var(--color-primary);
   opacity: 0.3;
   transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
   opacity: 1;
   width: 40px;
}

/* Grab Cursor Styles */
.testimonial-body:active {
   cursor: grabbing;
}

/* Custom Selection Color */
.testimonial-body ::selection {
   background: rgba(58, 167, 155, 0.2);
   color: var(--color-text);
}



/* ===================
   CONTACT SECTION
=================== */
#contact {
   background: var(--color-primary);
   padding: var(--section-padding);
   color: white;
}

#contact .container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

/* Section Header */
#contact header {
   text-align: center;
   margin-bottom: 4rem;
}

#contact .title {
   color: white;
   font-size: 2.8rem;
   font-family: var(--font-heading);
   margin-bottom: 1rem;
}

#contact .subtitle {
   color: var(--color-text-light);
   font-size: 1.1rem;
   opacity: 0.9;
}

/* Contact Grid Layout */
.contact-wrapper {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

/* Info Box with Glass Effect */
.info-box {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   padding: 3rem;
   border-radius: 24px;
   border: 1px solid rgba(255, 255, 255, 0.2);
   position: relative;
   overflow: hidden;
   width: 100%;
   margin: 0 auto;
}

/* Glass Effect Overlay */
.info-box::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 100%;
   background: linear-gradient(135deg,
         rgba(255, 255, 255, 0.2) 0%,
         rgba(255, 255, 255, 0.05) 100%);
   border-radius: 24px;
   z-index: 0;
}

.info-box>* {
   position: relative;
   z-index: 1;
}

/* Contact Info Items */
.contact-info {
   display: flex;
   flex-direction: column;
   gap: 2rem;
   margin-bottom: 2rem;
   align-items: flex-start;
   width: 100%;
}

.info-item {
   display: flex;
   align-items: flex-start;
   gap: 1rem;
   width: 100%;
}

/* Contact Icons */
.contact-icon {
   width: 24px;
   height: 24px;
   color: white;
   opacity: 0.9;
   transition: all 0.3s ease;
   flex-shrink: 0;
}

.info-item:hover .contact-icon {
   opacity: 1;
   transform: scale(1.1);
}

/* Contact Content */
.info-content h3 {
   font-size: 1.1rem;
   margin-bottom: 0.5rem;
   color: white;
}

.info-content p,
.info-content a {
   color: var(--color-text-light);
   line-height: 1.6;
   transition: all 0.3s ease;
}

/* Social Media Link */
.social-link {
   display: inline-flex;
   align-items: center;
   color: var(--color-text-light);
   text-decoration: none;
   transition: all 0.3s ease;
}

.social-link:hover {
   color: white;
   transform: translateX(5px);
}

/* Contact Button */
.contact-button {
   background: white;
   color: var(--color-primary);
   padding: 1rem 2rem;
   border-radius: 50px;
   display: inline-flex;
   align-items: center;
   gap: 0.8rem;
   font-weight: 500;
   width: 100%;
   justify-content: center;
   text-decoration: none;
   transition: all 0.3s ease;
   border: 2px solid transparent;
   margin-top: 1rem;
}

.contact-button:hover {
   background: transparent;
   color: white;
   border-color: white;
   transform: translateY(-3px);
}

.whatsapp-icon {
   width: 20px;
   height: 20px;
   color: currentColor;
   transition: transform 0.3s ease;
}

/* Map Container */
.map-box {
   width: 100%;
   height: 100%;
   min-height: 400px;
   border-radius: 24px;
   overflow: hidden;
   position: relative;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-box iframe {
   width: 100%;
   height: 100%;
   border: none;
   transition: opacity 0.3s ease;
}

/* Map Hover Effect */
.map-box::after {
   content: '';
   position: absolute;
   inset: 0;
   background: var(--color-primary);
   opacity: 0.1;
   transition: opacity 0.3s ease;
   pointer-events: none;
}

.map-box:hover::after {
   opacity: 0;
}

/* Info Item Hover Effects */
.info-item {
   transition: transform 0.3s ease;
}

.info-item:hover {
   transform: translateX(5px);
}

.info-item:hover .info-content p,
.info-item:hover .info-content a {
   color: white;
}



/* ===================
   FOOTER SECTION
=================== */
footer.section {
   background: #FAFAFA;
   padding: 5rem 0 2rem;
   color: var(--color-text);
   border-top: 1px solid rgba(58, 167, 155, 0.1);
}

footer .container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

/* Main Grid */
.footer-content {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr;
   gap: 4rem;
   padding-bottom: 3rem;
}

/* Brand Area */
.footer-brand {
   max-width: 360px;
}

.footer-logo {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-bottom: 1.5rem;
   text-decoration: none;
   transition: transform 0.3s ease;
}

.footer-logo:hover {
   transform: translateY(-3px);
}

.footer-logo-img {
   width: 48px;
   height: auto;
}

.logo-text {
   font-family: var(--font-heading);
   font-size: 1.5rem;
   font-weight: 500;
   color: var(--color-text);
   margin: 0;
}

.logo-text span {
   color: var(--color-primary);
}

.footer-description {
   font-size: 0.95rem;
   line-height: 1.6;
   color: var(--color-text);
   opacity: 0.8;
}

.footer-description span {
   color: var(--color-primary);
   font-weight: 500;
}

.footer-description strong {
   color: var(--color-primary-dark);
}

/* Menu Links */
.footer-links h3,
.footer-contact h3 {
   font-family: var(--font-heading);
   font-size: 1.1rem;
   margin-bottom: 1.5rem;
   color: var(--color-text);
   font-weight: 500;
   position: relative;
   display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: -5px;
   width: 30px;
   height: 2px;
   background: var(--color-primary);
   transition: width 0.3s ease;
}

.footer-links h3:hover::after,
.footer-contact h3:hover::after {
   width: 100%;
}

.footer-links ul {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
}

.footer-links a {
   color: var(--color-text);
   text-decoration: none;
   font-size: 0.95rem;
   opacity: 0.8;
   transition: all 0.3s ease;
   display: inline-block;
   position: relative;
   padding-left: 1rem;
}

.footer-links a::before {
   content: '→';
   position: absolute;
   left: 0;
   opacity: 0;
   transform: translateX(-5px);
   transition: all 0.3s ease;
}

.footer-links a:hover {
   color: var(--color-primary);
   opacity: 1;
   transform: translateX(5px);
}

.footer-links a:hover::before {
   opacity: 1;
   transform: translateX(0);
}

/* Contact Area */
.footer-contact .contact-info {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.contact-item {
   display: flex;
   align-items: center;
   gap: 0.8rem;
   color: var(--color-text);
   text-decoration: none;
   font-size: 0.95rem;
   opacity: 0.8;
   transition: all 0.3s ease;
}

.contact-item:hover {
   color: var(--color-primary);
   opacity: 1;
   transform: translateX(5px);
}

.contact-icon {
   width: 20px;
   height: 20px;
   color: currentColor;
}

/* Divider */
.footer-divider {
   height: 1px;
   background: linear-gradient(to right,
         transparent,
         rgba(58, 167, 155, 0.2),
         transparent);
   margin: 0 0 2rem 0;
}

/* Bottom Area */
.footer-bottom {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 1rem;
}

.copyright {
   font-size: 0.9rem;
   opacity: 0.7;
   transition: opacity 0.3s ease;
}

.copyright:hover {
   opacity: 1;
}

/* Developer Credits */
.developer-credits {
   text-decoration: none;
   color: var(--color-text);
   font-size: 0.9rem;
   opacity: 0.7;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.developer-credits:hover {
   opacity: 1;
}

.developer-credits span {
   color: var(--color-primary);
   font-weight: 500;
   transition: all 0.3s ease;
}

@keyframes heartbeat {

   0%,
   100% {
      transform: scale(1);
   }

   50% {
      transform: scale(1.1);
   }
}

.developer-credits:hover span {
   animation: heartbeat 1s infinite;
}

/* Back to Top Button */
.back-to-top {
   position: fixed;
   right: 2rem;
   bottom: 2rem;
   width: 50px;
   height: 50px;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 999;
   cursor: pointer;
   transition: transform 0.3s ease;
   opacity: 0;
   visibility: hidden;
}

.back-to-top.show {
   opacity: 1;
   visibility: visible;
   animation: float 3s ease-in-out infinite;
}

.foot-icon {
   width: auto;
   height: auto;
   filter: invert(23%) sepia(29%) saturate(1338%) hue-rotate(127deg) brightness(96%) contrast(88%);
}

/* Float Animation */
@keyframes float {

   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-10px);
   }
}



/* ===================
   SCROLLBAR STYLING 
=================== */

/* Webkit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
   width: 10px;
   background-color: #f1f5f9;
   border-radius: 10px;
}

::-webkit-scrollbar-thumb {
   background: var(--color-primary);
   border-radius: 10px;
   border: 2px solid #f1f5f9;
   transition: all 0.3s ease;
   background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
   background: var(--color-primary-dark);
   box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-track {
   background: #f1f5f9;
   border-radius: 10px;
   box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-corner {
   background: #f1f5f9;
   border-radius: 10px;
}

/* Firefox */
* {
   scrollbar-width: thin;
   scrollbar-color: var(--color-primary) #f1f5f9;
}

/* Edge */
@supports (-ms-ime-align: auto) {
   html {
      scrollbar-width: thin;
      scrollbar-color: var(--color-primary) #f1f5f9;
   }
}

/* Internet Explorer */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
   body {
      scrollbar-base-color: #f1f5f9;
      scrollbar-face-color: var(--color-primary);
      scrollbar-3dlight-color: #f1f5f9;
      scrollbar-highlight-color: #f1f5f9;
      scrollbar-track-color: #f1f5f9;
      scrollbar-arrow-color: var(--color-primary);
      scrollbar-shadow-color: var(--color-primary);
   }
}