:root {
  --primary-color: #084e4d; /* Dark Teal */
  --accent-color: rgb(217, 193, 149); /* Mint Green */
  --text-color: #333333;
  --bg-color: #ffffff;
  --light-bg: #f4f4f4;
  --white: #ffffff;
  --black: #000000;

  --font-main: "Outfit", sans-serif;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.slide a.btn {
    margin-top: 30px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Header */
header {
  background: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -1px;
}

.logo-text .accent {
  color: var(--accent-color);
}

.logo-img {
  height: 60px;
  width: auto;
}

.paw-prints {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--accent-color);
  transform: rotate(-15deg);
  opacity: 0.8;
}

.paw-prints i {
  font-size: 1.2rem;
}

.paw-prints i.small {
  font-size: 0.8rem;
  margin-right: 0.5rem;
  align-self: flex-end;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav ul li a {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

nav ul li a:hover {
  color: var(--accent-color);
}

/* Hero Slider */
.hero-slider {
  height: 80vh;
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.slides {
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 94, 93, 0.5);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-slider h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--accent-color);
  color: var(--white);
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(188, 176, 7, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(4, 94, 93, 0.3);
}

/* Mission Section */
.mission {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fff 0%, #f9fbfb 100%);
}

.mission .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.mission-text h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.mission-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.mission-image img {
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.mission-image img:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

/* Services Overview */
.services-overview {
  padding: 8rem 0;
  background-color: var(--white);
}

.services-overview h2 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: var(--primary-color);
  text-align: center;
}

.services-overview .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.card {
  background: var(--white);
  padding: 3.5rem 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(88, 188, 148, 0.08);
  border-color: rgba(88, 188, 148, 0.2);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--primary-color);
}

.card p {
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #666;
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* Parallax Section */
.parallax-section {
  height: 60vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.parallax-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 94, 93, 0.6);
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.parallax-content h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

/* Page Header */
.page-header {
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 8rem 0;
  text-align: center;
  position: relative;
}

.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 94, 93, 0.6);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--white);
  margin: 0;
  font-size: 3rem;
}

.page-header p {
  font-size: 1.1rem;
  margin-top: 1rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 4rem 0 2rem;
}

footer .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

footer h3 {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

footer p,
footer li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
}

/* Accordion Styles */
.accordion {
  border-radius: 10px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #eee;
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.accordion-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover {
  background: var(--light-bg);
}

.accordion-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  max-width: 90%;
}

.accordion-header i {
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.accordion-body {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.accordion-item.active .accordion-body {
  padding: 0 2rem 2rem;
  max-height: 1000px;
  opacity: 1;
}

.accordion-item.active .accordion-header i {
  transform: rotate(45deg);
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    backdrop-filter: blur(5px);
}

/* Responsive Media Queries */

@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        position: sticky;
        top: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--bg-color);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        padding: 80px 40px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .nav-menu ul li a {
        font-size: 1.2rem;
        font-weight: 500;
    }

    .overlay.active {
        display: block;
    }

    /* Main Content Adjustments */
    .grid {
        grid-template-columns: 1fr !important;
    }

    .hero-slider, .slide {
        height: 60vh;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content .btn {
        margin-top: 1.5rem !important;
        padding: 1rem 2rem;
    }

    .slider-nav {
        bottom: 0.5rem;
    }

    .page-header {
        padding: 4rem 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    /* Chi Siamo & Services */
    .service-block .grid {
        gap: 2rem;
    }

    /* Contact Details */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    /* Footer */
    footer .grid {
        text-align: center;
    }

    .footer-col {
        margin-bottom: 3rem;
    }

    footer .footer-col ul {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 1.6rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    header .container {
        padding: 0 1rem;
    }
}
