/* 
===========================================
Craftotiva - Wellness & Fitness Styles
===========================================
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Reset and Base Styles */
:root {
  /* Colors */
  --craftotiva-dark: #243642;
  --craftotiva-teal: #387478;
  --craftotiva-green: #629584;
  --craftotiva-light: #E2F1E7;
  --craftotiva-white: #ffffff;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Typography */
  --craftotiva-heading-font: 'Cormorant Garamond', serif;
  --craftotiva-body-font: 'Montserrat', sans-serif;
  
  /* Transitions */
  --craftotiva-transition: all 0.3s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--craftotiva-body-font);
  line-height: 1.6;
  color: var(--craftotiva-dark);
  background-color: var(--craftotiva-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--craftotiva-heading-font);
  margin-bottom: var(--space-md);
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.2rem;
}

p {
  margin-bottom: var(--space-md);
}

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

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

button, 
.craftotiva-btn {
  display: inline-block;
  padding: var(--space-md) var(--space-md);
  background-color: var(--craftotiva-teal);
  color: var(--craftotiva-white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--craftotiva-body-font);
  font-weight: 500;
  transition: var(--craftotiva-transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

button:hover,
.craftotiva-btn:hover {
  background-color: var(--craftotiva-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

button:active,
.craftotiva-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.craftotiva-btn-outline {
  background-color: transparent;
  border: 2px solid var(--craftotiva-teal);
  color: var(--craftotiva-teal);
}

.craftotiva-btn-outline:hover {
  background-color: var(--craftotiva-teal);
  color: var(--craftotiva-white);
}

.craftotiva-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.craftotiva-section {
  padding: var(--space-xl) 0;
}

.craftotiva-section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.craftotiva-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--craftotiva-teal);
}

.craftotiva-text-center {
  text-align: center;
}

.craftotiva-mb-sm {
  margin-bottom: var(--space-sm);
}

.craftotiva-mb-md {
  margin-bottom: var(--space-md);
}

.craftotiva-mb-lg {
  margin-bottom: var(--space-lg);
}

.craftotiva-mb-xl {
  margin-bottom: var(--space-xl);
}

/* Header & Navigation */
.craftotiva-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--craftotiva-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--craftotiva-transition);
}

.craftotiva-header.scrolled {
  padding: var(--space-xs) 0;
  background-color: var(--craftotiva-white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.craftotiva-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

.craftotiva-logo {
  display: flex;
  align-items: center;
}

.craftotiva-logo svg,
.craftotiva-logo img {
  height: 40px;
  width: auto;
  transition: var(--craftotiva-transition);
}

.craftotiva-menu {
  display: flex;
  list-style: none;
}

.craftotiva-menu-item {
  margin-left: var(--space-lg);
}

.craftotiva-menu-link {
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  position: relative;
}

.craftotiva-menu-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--craftotiva-teal);
  transition: var(--craftotiva-transition);
}

.craftotiva-menu-link:hover::after,
.craftotiva-menu-link.active::after {
  width: 100%;
}

.craftotiva-mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 1001;
}

.craftotiva-mobile-menu-bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--craftotiva-dark);
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: var(--craftotiva-transition);
}

.craftotiva-mobile-menu-bar:nth-child(1) {
  top: 0;
}

.craftotiva-mobile-menu-bar:nth-child(2) {
  top: 11px;
}

.craftotiva-mobile-menu-bar:nth-child(3) {
  bottom: 0;
}

.craftotiva-mobile-menu-open .craftotiva-mobile-menu-bar:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

.craftotiva-mobile-menu-open .craftotiva-mobile-menu-bar:nth-child(2) {
  opacity: 0;
}

.craftotiva-mobile-menu-open .craftotiva-mobile-menu-bar:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px;
}

/* Hero Section */
.craftotiva-hero {
  height: 95vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;

}

.craftotiva-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(36, 54, 66, 0.8), rgba(56, 116, 120, 0.7));
}

.craftotiva-hero-content {
  position: relative;
  z-index: 1;
  color: var(--craftotiva-white);
  max-width: 650px;
}

.craftotiva-hero-title {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.craftotiva-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.craftotiva-hero-buttons {
  display: flex;
  gap: var(--space-md);
}

/* About Section */
.craftotiva-about {
  background-color: var(--craftotiva-light);
  position: relative;
  overflow: hidden;
}

.craftotiva-about-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.craftotiva-about-text {
  flex: 1;
}

.craftotiva-about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: rotate(2deg);
  transition: var(--craftotiva-transition);
}

.craftotiva-about-image:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.craftotiva-services {
  background-color: var(--craftotiva-white);
}

.craftotiva-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.craftotiva-service-card {
  background-color: var(--craftotiva-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--craftotiva-transition);
  position: relative;
}

.craftotiva-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.craftotiva-service-image {
  height: 200px;
  overflow: hidden;
}

.craftotiva-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--craftotiva-transition);
}

.craftotiva-service-card:hover .craftotiva-service-image img {
  transform: scale(1.1);
}

.craftotiva-service-content {
  padding: var(--space-lg);
  display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.craftotiva-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--craftotiva-light);
  border-radius: 50%;
  margin: -35px auto var(--space-md);
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.craftotiva-service-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--craftotiva-teal);
}

.craftotiva-service-title {
  text-align: center;
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.craftotiva-service-description {
  text-align: center;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

/* Pricing Section */
.craftotiva-pricing {
  background-color: var(--craftotiva-light);
  position: relative;
  overflow: hidden;
}

.craftotiva-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.craftotiva-price-card {
  background-color: var(--craftotiva-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--craftotiva-transition);
  text-align: center;
  position: relative;
  display: flex;
justify-content: space-between;
flex-direction: column;
}

.craftotiva-price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.craftotiva-price-header {
  padding: var(--space-lg) var(--space-md);
  background-color: var(--craftotiva-teal);
  color: var(--craftotiva-white);
  position: relative;
}

.craftotiva-price-title {
  font-size: 1.8rem;
  margin-bottom: var(--space-xs);
}

.craftotiva-price-amount {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.craftotiva-price-period {
  font-size: 0.9rem;
  opacity: 0.9;
}

.craftotiva-price-content {
  padding: var(--space-lg);
}

.craftotiva-price-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.craftotiva-price-feature {
  margin-bottom: var(--space-sm);
  padding: var(--space-xs) 0;
  border-bottom: 1px dashed var(--craftotiva-light);
}

.craftotiva-popular-tag {
  position: absolute;
  top: 14px;
  right: 0;
  background-color: var(--craftotiva-dark);
  color: var(--craftotiva-white);
  padding: var(--space-xs) var(--space-md);
  font-size: 0.8rem;
  text-transform: uppercase;
  transform: translateY(-50%);
  border-radius: 20px;
}

/* Testimonials Section */
.craftotiva-testimonials {
  background-color: var(--craftotiva-white);
  position: relative;
}

.craftotiva-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="20" height="20"><text y="30" font-size="80" fill="%23E2F1E7">"</text></svg>') repeat;
  opacity: 0.2;
}

.craftotiva-testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.craftotiva-testimonial {
  background-color: var(--craftotiva-white);
  border-radius: 10px;
  padding: var(--space-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.craftotiva-testimonial-content {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  position: relative;
  padding: 0 var(--space-lg);
}

.craftotiva-testimonial-content::before,
.craftotiva-testimonial-content::after {
  content: '"';
  font-family: var(--craftotiva-heading-font);
  font-size: 4rem;
  color: var(--craftotiva-teal);
  opacity: 0.3;
  position: absolute;
  line-height: 1;
}

.craftotiva-testimonial-content::before {
  left: 0;
  top: -20px;
}

.craftotiva-testimonial-content::after {
  right: 0;
  bottom: -40px;
  transform: rotate(180deg);
}

.craftotiva-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.craftotiva-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--space-md);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.craftotiva-testimonial-info h4 {
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
}

.craftotiva-testimonial-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.craftotiva-testimonial-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.craftotiva-testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--craftotiva-light);
  cursor: pointer;
  transition: var(--craftotiva-transition);
}

.craftotiva-testimonial-dot.active {
  background-color: var(--craftotiva-teal);
  transform: scale(1.2);
}

/* CTA Section */
.craftotiva-cta {
  background-color: var(--craftotiva-teal);
  color: var(--craftotiva-white);
  text-align: center;
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.craftotiva-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(98, 149, 132, 0.8) 0%, rgba(56, 116, 120, 0) 70%);
}

.craftotiva-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.craftotiva-cta-title {
  color: var(--craftotiva-white);
  margin-bottom: var(--space-md);
  font-size: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.craftotiva-cta-subtitle {
  margin-bottom: var(--space-lg);
  font-size: 1.2rem;
  opacity: 0.9;
}

.craftotiva-cta-btn {
  background-color: var(--craftotiva-white);
  color: var(--craftotiva-teal);
  font-weight: 600;
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
}

.craftotiva-cta-btn:hover {
  background-color: var(--craftotiva-dark);
  color: var(--craftotiva-white);
}

/* Gallery Section */
.craftotiva-gallery {
  background-color: var(--craftotiva-white);
}

.craftotiva-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.craftotiva-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}

.craftotiva-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--craftotiva-transition);
}

.craftotiva-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 54, 66, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--craftotiva-transition);
}

.craftotiva-gallery-item:hover img {
  transform: scale(1.1);
}

.craftotiva-gallery-item:hover .craftotiva-gallery-overlay {
  opacity: 1;
}

.craftotiva-gallery-title {
  color: var(--craftotiva-white);
  text-align: center;
  padding: 0 var(--space-md);
  font-size: 1.2rem;
  transform: translateY(20px);
  transition: var(--craftotiva-transition);
}

.craftotiva-gallery-item:hover .craftotiva-gallery-title {
  transform: translateY(0);
}

/* Contact Section */
.craftotiva-contact {
  background-color: var(--craftotiva-light);
  position: relative;
}

.craftotiva-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.craftotiva-contact-info {
  padding-right: var(--space-lg);
}

.craftotiva-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.craftotiva-contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--craftotiva-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.craftotiva-contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--craftotiva-teal);
}

.craftotiva-contact-details h4 {
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
}

.craftotiva-contact-details p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.craftotiva-contact-form {
  background-color: var(--craftotiva-white);
  padding: var(--space-xl);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.craftotiva-form-group {
  margin-bottom: var(--space-md);
}

.craftotiva-form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  font-size: 0.95rem;
}

.craftotiva-form-control {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  font-family: var(--craftotiva-body-font);
  font-size: 1rem;
  transition: var(--craftotiva-transition);
}

.craftotiva-form-control:focus {
  outline: none;
  border-color: var(--craftotiva-teal);
  box-shadow: 0 0 0 3px rgba(56, 116, 120, 0.1);
}

textarea.craftotiva-form-control {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.craftotiva-footer {
  background-color: var(--craftotiva-dark);
  color: var(--craftotiva-white);
  padding: var(--space-xl) 0 var(--space-lg);
}

.craftotiva-footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
}

.craftotiva-footer-logo {
  margin-bottom: var(--space-md);
}

.craftotiva-footer-logo svg,
.craftotiva-footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.craftotiva-footer-about {
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  opacity: 0.8;
}

.craftotiva-footer-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  color: var(--craftotiva-white);
}

.craftotiva-footer-links {
  list-style: none;
}

.craftotiva-footer-link {
  margin-bottom: var(--space-sm);
}

.craftotiva-footer-link a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--craftotiva-transition);
  font-size: 0.95rem;
}

.craftotiva-footer-link a:hover {
  color: var(--craftotiva-light);
  padding-left: var(--space-xs);
}

.craftotiva-copyright {
  text-align: center;
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

.craftotiva-policy-page {
  padding: calc(var(--space-xxl) + 70px) 0 var(--space-xxl);
}

.craftotiva-policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.craftotiva-policy-title {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.craftotiva-policy-section {
  margin-bottom: var(--space-xl);
}

.craftotiva-policy-section h2 {
  margin-bottom: var(--space-md);
  font-size: 2rem;
}

.craftotiva-policy-section h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.craftotiva-policy-section p,
.craftotiva-policy-section ul {
  margin-bottom: var(--space-md);
}

.craftotiva-policy-section ul {
  padding-left: var(--space-lg);
}

.craftotiva-policy-section li {
  margin-bottom: var(--space-xs);
}

.craftotiva-success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-xxl) var(--space-md);
  background-color: var(--craftotiva-light);
}
.craftotiva-success-contact {
    margin-bottom: 16px;
}
.craftotiva-success-contact ul li {
    list-style: none;
}
.craftotiva-success-container {
  max-width: 600px;
  background-color: var(--craftotiva-white);
  padding: var(--space-xl);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.craftotiva-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  fill: var(--craftotiva-teal);
}

.craftotiva-success-title {
  margin-bottom: var(--space-md);
  color: var(--craftotiva-teal);
}

.craftotiva-success-text {
  margin-bottom: var(--space-lg);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.craftotiva-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.craftotiva-fade-in-delay-1 {
  animation: fadeIn 0.8s 0.2s ease forwards;
  opacity: 0;
}

.craftotiva-fade-in-delay-2 {
  animation: fadeIn 0.8s 0.4s ease forwards;
  opacity: 0;
}

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

.craftotiva-pulse {
  animation: pulse 2s infinite;
}

/* Scroll to top button */
.craftotiva-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--craftotiva-teal);
  color: var(--craftotiva-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: var(--craftotiva-transition);
}

.craftotiva-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.craftotiva-scroll-top:hover {
  background-color: var(--craftotiva-dark);
  transform: translateY(-5px);
}

.craftotiva-scroll-top svg {
  width: 20px;
  height: 20px;
  fill: var(--craftotiva-white);
}

/* Media Queries */
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }

  .craftotiva-services-grid,
  .craftotiva-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .craftotiva-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .craftotiva-hero-title {
    font-size: 3.5rem;
  }

  .craftotiva-about-content {
    flex-direction: column;
  }

  .craftotiva-contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .craftotiva-contact-info {
    padding-right: 0;
  }

  .craftotiva-footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 991px) {
  .craftotiva-mobile-menu-trigger {
    display: block;
  }

  .craftotiva-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--craftotiva-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--craftotiva-transition);
    z-index: 1000;
  }

  .craftotiva-menu.open {
    right: 0;
  }

  .craftotiva-menu-item {
    margin: var(--space-md) 0;
  }

  .craftotiva-menu-link {
    font-size: 1.2rem;
  }

  .craftotiva-services-grid,
  .craftotiva-pricing-grid {
    grid-template-columns: 1fr;
  }

  .craftotiva-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .craftotiva-hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .craftotiva-hero-title {
    font-size: 2.8rem;
  }

  .craftotiva-cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 13px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .craftotiva-hero {
    height: 85vh;
  }

  .craftotiva-hero-title {
    font-size: 2.5rem;
  }

  .craftotiva-gallery-grid {
    grid-template-columns: 1fr;
  }

  .craftotiva-testimonial {
    padding: var(--space-lg) var(--space-md);
  }

  .craftotiva-testimonial-content {
    font-size: 1rem;
    padding: 0;
  }

  .craftotiva-testimonial-content::before,
  .craftotiva-testimonial-content::after {
    display: none;
  }

  .craftotiva-section {
    padding: var(--space-lg) 0;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 12px;
  }

  .craftotiva-container {
    width: 95%;
    padding: 0 var(--space-sm);
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .craftotiva-hero-title {
    font-size: 2.2rem;
  }

  .craftotiva-hero-subtitle {
    font-size: 1rem;
  }

  .craftotiva-contact-form {
    padding: var(--space-lg) var(--space-md);
  }

  .craftotiva-scroll-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
}