/* ==========================================================================
   Studio Equilibrio by Kathe - Main Stylesheet
   Feminine, Elegant Fitness/Dance Studio Website
   Reference Style: arabesque.qodeinteractive.com
   ========================================================================== */

/* ==========================================================================
   1. GOOGLE FONTS IMPORT
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

/* ==========================================================================
   2. CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */
:root {
  /* Colors */
  --color-bg: #fcefe6;
  --color-title: #111111;
  --color-subtitle: #c7a28b;
  --color-accent: #b55a38;
  --color-accent-hover: #9a4a2e;
  --color-service-border: #FFD84A;
  --color-service-btn: #FFD84A;
  --color-service-btn-text: #111111;
  --color-footer-bg: #000000;
  --color-footer-text: #ffffff;
  --color-team-shadow: #fdd8d6;
  --color-gallery-shadow: #fdd8d6;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text-body: #555555;
  --color-text-light: #777777;
  --color-red-urgency: #e74c3c;

  /* Fonts */
  --font-body: 'Montserrat', sans-serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-firma: 'Allura', cursive;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --grid-gap: 30px;

  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Shadows */
  --shadow-soft: 0 5px 30px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 15px 50px rgba(0, 0, 0, 0.1);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
}

/* ==========================================================================
   3. CSS RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-title);
  line-height: 1.2;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
  color: var(--color-text-body);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   4. TYPOGRAPHY CLASSES
   ========================================================================== */

/* Studio text - Montserrat, uppercase, wide spacing */
.studio {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #555;
  line-height: 1.4;
}

/* Logo text - Cormorant Garamond, large elegant headings */
.logo-text {
  font-family: var(--font-heading);
  font-size: 90px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-title);
  letter-spacing: 0;
}

/* Firma/Signature text - Allura, elegant script */
.firma {
  font-family: var(--font-firma);
  font-size: 42px;
  color: var(--color-subtitle);
  margin-top: -10px;
  line-height: 1.2;
}

/* ==========================================================================
   5. HEADER / NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
  background-color: transparent;
}

.header.scrolled {
  background-color: var(--color-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

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

/* Logo Area */
.logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1001;
}

.logo-area .studio {
  font-size: 11px;
  letter-spacing: 6px;
  margin-bottom: 0;
}

.logo-area .logo-text {
  font-size: 48px;
  line-height: 1;
  margin: -2px 0;
}

.logo-area .firma {
  font-size: 22px;
  margin-top: -4px;
}

/* Navigation */
.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-title);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-subtitle);
  transition: var(--transition-base);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-subtitle);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--color-title);
  margin: 4px 0;
  transition: var(--transition-base);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   6. CAROUSEL / HERO SECTION
   ========================================================================== */
.carousel-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  position: relative;
}

.carousel-slide {
  display: none;
  width: 100%;
  min-height: 100vh;
}

.carousel-slide.active {
  display: flex;
  animation: fadeIn 0.8s ease;
}

.carousel-image-wrapper {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.carousel-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100vh;
}

.carousel-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  pointer-events: none;
}

.carousel-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 60px;
  background-color: var(--color-bg);
}

.carousel-content .firma {
  font-size: 38px;
  margin-bottom: 5px;
}

.carousel-content .logo-text {
  font-size: 72px;
  margin-bottom: 20px;
}

.carousel-content .studio {
  font-size: 14px;
  letter-spacing: 5px;
  max-width: 450px;
  margin-bottom: 30px;
}

.carousel-content p {
  font-size: 16px;
  color: var(--color-text-light);
  max-width: 480px;
  line-height: 1.8;
}

/* Carousel Navigation Dots */
.carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-subtitle);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-base);
}

.carousel-dot.active {
  background-color: var(--color-subtitle);
  transform: scale(1.1);
}

.carousel-dot:hover {
  background-color: var(--color-subtitle);
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-title);
  transition: var(--transition-base);
  z-index: 10;
  box-shadow: var(--shadow-soft);
}

.carousel-arrow:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.carousel-arrow.prev {
  left: 30px;
}

.carousel-arrow.next {
  right: 30px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================================================
   7. ABOUT / INFO SECTION - "Dance with us"
   ========================================================================== */
.about-section {
  padding: 120px 0;
  background-color: var(--color-white);
}

.about-section .container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-text {
  flex: 1;
}

.about-text .firma {
  font-size: 36px;
  margin-bottom: 5px;
}

.about-text .logo-text {
  font-size: 64px;
  margin-bottom: 25px;
  line-height: 1.05;
}

.about-text .studio {
  font-size: 13px;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 25px;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 15px 15px 0 var(--color-team-shadow);
}

/* Decorative element */
.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--color-subtitle);
  border-radius: var(--radius-md);
  z-index: -1;
}

/* ==========================================================================
   8. SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 100px 0;
  background-color: var(--color-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .firma {
  font-size: 36px;
  margin-bottom: 0;
}

.section-header .logo-text {
  font-size: 58px;
  margin-bottom: 15px;
}

.section-header .studio {
  font-size: 13px;
  letter-spacing: 5px;
}

.section-header p {
  max-width: 600px;
  margin: 20px auto 0;
  color: var(--color-text-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
  max-width: 1100px;
  margin: 0 auto;
}

/* Service Card */
.service-card {
  background: var(--color-white);
  border: 2px solid var(--color-service-border);
  border-radius: var(--radius-lg);
  padding: 40px 35px;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--color-accent);
}

.service-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: linear-gradient(135deg, var(--color-bg) 0%, #fff 100%);
  border-radius: 50%;
  border: 2px solid var(--color-service-border);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-title);
  margin-bottom: 8px;
}

.service-card .service-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-subtitle);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-pricing {
  margin-bottom: 20px;
}

.service-price-original {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-light);
  text-decoration: line-through;
  margin-right: 10px;
}

.service-price-current {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-title);
}

.service-price-period {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 400;
}

/* Includes List */
.service-includes {
  text-align: left;
  margin-bottom: 20px;
  padding: 0 10px;
}

.service-includes h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-title);
  margin-bottom: 10px;
}

.service-includes ul li {
  font-size: 14px;
  color: var(--color-text-body);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-includes ul li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  font-size: 14px;
}

/* Urgency Badge */
.service-urgency {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-red-urgency);
  margin-bottom: 20px;
  font-style: italic;
}

/* Service CTA Button */
.service-cta {
  display: inline-block;
  background-color: var(--color-service-btn);
  color: var(--color-service-btn-text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid var(--color-service-btn);
  cursor: pointer;
  transition: var(--transition-base);
  margin-top: auto;
  text-align: center;
}

.service-cta:hover {
  background-color: transparent;
  color: var(--color-service-btn);
  transform: scale(1.03);
}

/* ==========================================================================
   9. GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: 100px 0;
  background-color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-base);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay span {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
}

/* Gallery Layout - Masonry-like */
.gallery-item:nth-child(1) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item:nth-child(2) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item:nth-child(3) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item:nth-child(5) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item:nth-child(6) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item img {
  box-shadow: 0 4px 15px var(--color-gallery-shadow);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 85%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: none;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.lightbox-close:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

/* ==========================================================================
   10. CALENDAR / RESERVATIONS SECTION
   ========================================================================== */
.calendar-section {
  padding: 100px 0;
  background-color: var(--color-bg);
}

.calendar-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  background: var(--color-white);
  border-bottom: 1px solid #eee;
}

.calendar-nav-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-subtitle);
  background: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-subtitle);
  transition: var(--transition-base);
}

.calendar-nav-btn:hover {
  background-color: var(--color-subtitle);
  color: var(--color-white);
}

.calendar-month-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-title);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.calendar-weekday {
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-subtitle);
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 10px 20px 20px;
  gap: 5px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-body);
  border-radius: 50%;
  cursor: default;
  transition: var(--transition-base);
  position: relative;
}

.calendar-day.empty {
  cursor: default;
}

.calendar-day.available {
  cursor: pointer;
  color: var(--color-subtitle);
  font-weight: 600;
}

.calendar-day.available::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 5px;
  height: 5px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

.calendar-day.available:hover {
  background-color: var(--color-subtitle);
  color: var(--color-white);
  transform: scale(1.1);
}

.calendar-day.available:hover::after {
  background-color: var(--color-white);
}

.calendar-day.selected {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.1);
}

.calendar-day.selected::after {
  background-color: var(--color-white);
}

.calendar-day.past {
  color: #ccc;
}

/* Time Slots Panel */
.time-slots-panel {
  padding: 30px;
  border-top: 1px solid #eee;
  display: none;
}

.time-slots-panel.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.time-slots-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-title);
  margin-bottom: 20px;
}

.time-slot-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  transition: var(--transition-base);
}

.time-slot-item:hover {
  box-shadow: var(--shadow-soft);
  transform: translateX(5px);
}

.time-slot-info h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-title);
  margin-bottom: 3px;
}

.time-slot-info span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-subtitle);
}

.time-slot-spots {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-light);
}

.time-slot-spots strong {
  color: var(--color-accent);
  font-weight: 600;
}

.time-slot-book {
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-base);
}

.time-slot-book:hover {
  background-color: var(--color-accent-hover);
  transform: scale(1.05);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   11. STATS COUNTER SECTION
   ========================================================================== */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,...') repeat;
  opacity: 0.03;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--color-subtitle);
  font-weight: 600;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ==========================================================================
   12. WHAT WE OFFER SECTION
   ========================================================================== */
.offer-section {
  padding: 100px 0;
  background-color: var(--color-white);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.offer-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.offer-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.offer-card:hover .offer-card-image img {
  transform: scale(1.06);
}

.offer-card-content {
  padding: 30px;
}

.offer-card-content h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-title);
  margin-bottom: 10px;
}

.offer-card-content .offer-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-subtitle);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.offer-card-content p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ==========================================================================
   13. TEAM SECTION
   ========================================================================== */
.team-section {
  padding: 100px 0;
  background-color: var(--color-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  transition: var(--transition-smooth);
}

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

.team-card-image {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 10px 10px 0 var(--color-team-shadow);
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-title);
  margin-bottom: 5px;
}

.team-card .team-role {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-subtitle);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  width: 38px;
  height: 38px;
  border: 1.5px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-text-light);
  transition: var(--transition-base);
}

.team-social a:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* ==========================================================================
   14. EVENTS SECTION
   ========================================================================== */
.events-section {
  padding: 100px 0;
  background-color: var(--color-white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.event-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid #f0f0f0;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.event-date {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  padding: 20px;
  text-align: center;
  color: var(--color-white);
}

.event-date .day {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.event-date .month {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.event-content {
  padding: 25px 30px 30px;
}

.event-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-title);
  margin-bottom: 10px;
}

.event-content .event-time {
  font-size: 13px;
  color: var(--color-subtitle);
  margin-bottom: 12px;
  font-weight: 500;
}

.event-content p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.event-cta {
  display: inline-block;
  margin-top: 15px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 3px;
  transition: var(--transition-base);
}

.event-cta:hover {
  color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

/* ==========================================================================
   15. CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background-color: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.contact-form {
  background: var(--color-white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-form .firma {
  font-size: 32px;
  margin-bottom: 0;
}

.contact-form .logo-text {
  font-size: 42px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-title);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-body);
  background: var(--color-bg);
  border: 1.5px solid #e8e0d8;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-subtitle);
  box-shadow: 0 0 0 3px rgba(199, 162, 139, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 2px solid var(--color-accent);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-base);
}

.form-submit:hover {
  background-color: transparent;
  color: var(--color-accent);
}

/* Contact Info & Map */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #e8e0d8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map-placeholder {
  text-align: center;
  color: var(--color-text-light);
}

.contact-map-placeholder span {
  font-size: 48px;
  display: block;
  margin-bottom: 10px;
}

.contact-details {
  background: var(--color-white);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-details h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-detail-item:last-child {
  margin-bottom: 0;
}

.contact-detail-icon {
  width: 45px;
  height: 45px;
  background: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-title);
  margin-bottom: 3px;
}

.contact-detail-text p {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-subtitle);
}

.footer-col p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.footer-contact-item span:first-child {
  color: var(--color-subtitle);
  font-size: 16px;
  width: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: var(--transition-base);
}

.footer-social a:hover {
  background-color: var(--color-subtitle);
  border-color: var(--color-subtitle);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-classes-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: var(--transition-base);
}

.footer-classes-list li:hover {
  color: var(--color-white);
  padding-left: 8px;
}

.footer-classes-list li .class-day {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-subtitle);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition-base);
}

.footer-bottom-links a:hover {
  color: var(--color-subtitle);
}

/* ==========================================================================
   17. WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--color-white);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-base);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  text-decoration: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   18. MODAL (Booking / General)
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 3000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 50px;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--color-text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  border-radius: 50%;
}

.modal-close:hover {
  background: var(--color-bg);
  color: var(--color-title);
}

.modal .firma {
  font-size: 30px;
  margin-bottom: 0;
  text-align: center;
}

.modal .logo-text {
  font-size: 38px;
  margin-bottom: 30px;
  text-align: center;
}

.modal .form-group {
  margin-bottom: 18px;
}

.modal .form-submit {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

/* ==========================================================================
   19. SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* Fade in from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Fade in from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up reveal */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   20. UTILITY CLASSES
   ========================================================================== */
.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }

.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.bg-white { background-color: var(--color-white); }
.bg-primary { background-color: var(--color-bg); }

/* Button base */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-base);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-accent);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-title);
  border-color: var(--color-title);
}

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

.btn-service {
  background-color: var(--color-service-btn);
  color: var(--color-service-btn-text);
  border-color: var(--color-service-btn);
}

.btn-service:hover {
  background-color: transparent;
  color: var(--color-service-btn);
}

/* Divider */
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--color-subtitle);
  margin: 20px auto;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background: var(--color-white);
  border: 1.5px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-title);
  z-index: 998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  box-shadow: var(--shadow-soft);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* Loading screen */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #e8e0d8;
  border-top-color: var(--color-subtitle);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   21. RESPONSIVE DESIGN - TABLET (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .logo-area .logo-text {
    font-size: 38px;
  }

  .logo-area .studio {
    font-size: 9px;
    letter-spacing: 4px;
  }

  .logo-area .firma {
    font-size: 18px;
  }

  .nav-links {
    gap: 25px;
  }

  .nav-links a {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .carousel-content {
    padding: 60px 40px;
  }

  .carousel-content .logo-text {
    font-size: 52px;
  }

  .carousel-content .firma {
    font-size: 30px;
  }

  .about-section .container {
    gap: 50px;
  }

  .about-text .logo-text {
    font-size: 52px;
  }

  .about-image img {
    height: 480px;
  }

  .section-header .logo-text {
    font-size: 48px;
  }

  .services-grid {
    gap: 20px;
  }

  .service-card {
    padding: 30px 25px;
  }

  .stats-grid {
    gap: 20px;
  }

  .stat-number {
    font-size: 58px;
  }

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

  .contact-grid {
    gap: 40px;
  }

  .contact-form {
    padding: 35px;
  }

  .footer-grid {
    gap: 30px;
  }
}

/* ==========================================================================
   22. RESPONSIVE DESIGN - MOBILE LANDSCAPE & SMALL TABLET (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .logo-area .logo-text {
    font-size: 30px;
  }

  .logo-area .studio {
    font-size: 8px;
    letter-spacing: 3px;
  }

  .logo-area .firma {
    font-size: 16px;
  }

  /* Mobile Navigation */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    transition: var(--transition-smooth);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  }

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

  .nav-links a {
    font-size: 14px;
    letter-spacing: 2px;
  }

  /* Carousel */
  .carousel-slide.active {
    flex-direction: column;
  }

  .carousel-image-wrapper {
    width: 100%;
    height: 50vh;
  }

  .carousel-image-wrapper img {
    min-height: 50vh;
  }

  .carousel-content {
    width: 100%;
    padding: 40px 25px;
  }

  .carousel-content .logo-text {
    font-size: 40px;
  }

  .carousel-content .firma {
    font-size: 28px;
  }

  .carousel-content .studio {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .carousel-arrow.prev {
    left: 15px;
  }

  .carousel-arrow.next {
    right: 15px;
  }

  /* About */
  .about-section .container {
    flex-direction: column;
    gap: 40px;
  }

  .about-text .logo-text {
    font-size: 42px;
  }

  .about-text .firma {
    font-size: 30px;
  }

  .about-image img {
    height: 400px;
  }

  .about-image::before {
    display: none;
  }

  /* Section Headers */
  .section-header .logo-text {
    font-size: 38px;
  }

  .section-header .firma {
    font-size: 30px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .gallery-item img {
    min-height: 180px;
  }

  /* Calendar */
  .calendar-month-title {
    font-size: 22px;
  }

  .calendar-day {
    font-size: 13px;
  }

  .time-slot-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-number {
    font-size: 52px;
  }

  /* Offers */
  .offer-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .team-card-image {
    height: 350px;
  }

  /* Events */
  .events-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

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

  .contact-form {
    padding: 30px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  /* Modal */
  .modal {
    padding: 35px 25px;
    margin: 15px;
  }

  .modal .logo-text {
    font-size: 30px;
  }

  /* WhatsApp */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ==========================================================================
   23. RESPONSIVE DESIGN - MOBILE (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
  .logo-area .logo-text {
    font-size: 26px;
  }

  .logo-area .studio {
    font-size: 7px;
    letter-spacing: 2.5px;
  }

  .logo-area .firma {
    font-size: 14px;
  }

  .carousel-content .logo-text {
    font-size: 32px;
  }

  .carousel-content .firma {
    font-size: 24px;
  }

  .about-text .logo-text {
    font-size: 34px;
  }

  .about-text .firma {
    font-size: 26px;
  }

  .about-image img {
    height: 320px;
  }

  .section-header .logo-text {
    font-size: 32px;
  }

  .section-header .firma {
    font-size: 26px;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-price-current {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-item img {
    min-height: 140px;
  }

  .stat-number {
    font-size: 44px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .footer-col h4 {
    font-size: 20px;
  }

  .calendar-weekday {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .calendar-day {
    font-size: 12px;
  }

  .team-card-image {
    height: 300px;
  }
}

/* ==========================================================================
   24. RESPONSIVE DESIGN - LARGE SCREENS (min-width: 1400px)
   ========================================================================== */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .logo-area .logo-text {
    font-size: 54px;
  }

  .carousel-content .logo-text {
    font-size: 80px;
  }

  .about-text .logo-text {
    font-size: 72px;
  }

  .section-header .logo-text {
    font-size: 64px;
  }
}

/* ==========================================================================
   25. PRINT STYLES
   ========================================================================== */
@media print {
  .header,
  .whatsapp-float,
  .back-to-top,
  .carousel-dots,
  .carousel-arrow,
  .footer,
  .modal-overlay {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .logo-area .logo-text,
  .section-header .logo-text,
  h1, h2, h3 {
    color: black;
  }
}

/* ==========================================================================
   26. ACCESSIBILITY
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   27. SELECTION & SCROLLBAR STYLING
   ========================================================================== */
::selection {
  background-color: var(--color-subtitle);
  color: var(--color-white);
}

::-moz-selection {
  background-color: var(--color-subtitle);
  color: var(--color-white);
}

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

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-subtitle);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}
