/* Taqueria Casas 2 — Final, Corrected Stylesheet */

:root {
  --primary-color: #50000d;
  --text-white: #ffffff;
  --text-dark: #232323;
  --bg-dark: #19171c;
  --font-title: 'Caveat', cursive, sans-serif;
  --font-body: 'Jost', sans-serif;
  --section-bg: url("./assets/images/pexels-tbee-14592-82256-2000x1339.jpg") no-repeat center center;
  --section-bg-attachment: fixed;
}

/* iOS fixed background fix */
@supports (-webkit-touch-callout: none) {
  :root { --section-bg-attachment: scroll; }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-title); font-weight: 700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--section-bg);
  background-size: cover;
  background-attachment: var(--section-bg-attachment);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-white);
  text-shadow: 0 4px 25px rgba(0,0,0,0.7);
}
.hero-title-red {
  color: var(--primary-color);
  text-shadow: 0 0 30px rgba(80,0,13,0.5), 0 4px 20px rgba(0,0,0,0.6);
}
.hero-subtitle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.subtitle-star {
  color: var(--primary-color);
  font-size: 1rem;
  line-height: 1;
}
.subtitle-bar {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}
.hero-subtitle {
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

/* Logo column — no dark overlay, cleaner background */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text { align-items: center; }
  .hero-subtitle-row { justify-content: center; }
  .hero-image { max-width: 320px; }
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section { padding: 100px 0; background: var(--section-bg); background-size: cover; background-attachment: var(--section-bg-attachment); }
.menu-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(80,0,13,0.3);
}
.menu-title-deco {
  color: var(--primary-color);
  font-size: 0.6em;
  opacity: 0.5;
  line-height: 1;
}

.menu-category {
  margin-top: 50px;
}
.menu-category-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.menu-category-divider::before,
.menu-category-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}
.menu-divider-icon {
  color: var(--primary-color);
  font-size: 0.6rem;
  opacity: 0.6;
  line-height: 1;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  perspective: 1200px;
}

.menu-card {
  height: 100px;
  position: relative;
  cursor: pointer;
  perspective: 1200px;
}

.menu-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-card:hover .menu-card-inner,
.menu-card.active .menu-card-inner {
  transform: rotateX(180deg);
}

.menu-card-featured {
  height: 120px;
}
.menu-card-featured .menu-item-title {
  font-size: 1.8rem;
}



.menu-card-wide {
  grid-column: span 2;
}

.menu-card-front,
.menu-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.menu-card-front {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(80, 0, 13, 0.2);
  backdrop-filter: blur(4px);
  box-shadow:
    inset 0 0 16px rgba(80, 0, 13, 0.25),
    0 0 14px rgba(80, 0, 13, 0.2),
    0 0 6px rgba(80, 0, 13, 0.15);
  transition: box-shadow 0.3s ease;
}

.menu-card:hover .menu-card-front,
.menu-card.active .menu-card-front {
  box-shadow:
    inset 0 0 22px rgba(80, 0, 13, 0.4),
    0 0 22px rgba(80, 0, 13, 0.35),
    0 0 10px rgba(80, 0, 13, 0.25);
}

.menu-card-back {
  background: rgba(40, 0, 5, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: rotateX(180deg);
  overflow: auto;
  backdrop-filter: blur(10px);
}

.menu-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--primary-color);
  padding: 3px 10px;
  border-radius: 20px;
}

.menu-item-title { font-size: 1.4rem; color: var(--primary-color); text-align: center; }
.menu-item-text { font-size: 0.78rem; text-align: center; line-height: 1.4; color: #eee; }
.menu-daily { display: inline-block; color: var(--primary-color); font-weight: 600; font-size: 0.75rem; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================================
   GLOBAL UTILITIES
   ============================================================ */
.container-fluid { width: 100%; padding: 0 24px; }
.grain-overlay {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1;
}
.hero-image-wrapper { position: relative; display: flex; justify-content: center; align-items: center; }

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-section { position: relative; padding: 80px 0; background: var(--section-bg); background-size: cover; background-attachment: var(--section-bg-attachment); overflow: hidden; }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.welcome-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.welcome-item:first-child { transform: rotate(-1deg); }
.welcome-item:last-child { transform: rotate(1deg); margin-top: 40px; }

.welcome-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.welcome-image-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.welcome-image-wrap:hover img { transform: scale(1.08); }

.welcome-image-corner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 2;
  opacity: 0.85;
  transition: width 0.4s ease, height 0.4s ease, background 0.3s ease;
}
.welcome-image-wrap:hover .welcome-image-corner {
  width: 100px;
  height: 100px;
  background: #6b0012;
}

.welcome-label-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 4px;
}
.welcome-label-deco {
  display: inline-block;
  width: 6px;
  height: 28px;
  background: var(--primary-color);
  border-radius: 3px;
  flex-shrink: 0;
  transition: height 0.3s ease, background 0.3s ease;
}
.welcome-item:hover .welcome-label-deco {
  height: 36px;
  background: #6b0012;
}
.welcome-label {
  color: var(--text-white);
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
  cursor: default;
}
.welcome-item:hover .welcome-label {
  color: #e8c3c8;
  transform: translateX(6px);
  text-shadow: 0 0 20px rgba(80,0,13,0.4), 0 2px 12px rgba(0,0,0,0.5);
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* ============================================================
   CONDIMENT BAR SECTION
   ============================================================ */
.condiment-section { position: relative; padding: 80px 0; background: var(--section-bg); background-size: cover; background-attachment: var(--section-bg-attachment); }
.condiment-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 50px; align-items: center; }
.condiment-text { display: flex; gap: 20px; align-items: flex-start; }
.condiment-text-accent {
  width: 3px; flex-shrink: 0;
  background: linear-gradient(180deg, var(--primary-color), transparent);
  border-radius: 2px;
  align-self: stretch;
}
.condiment-text-content { display: flex; flex-direction: column; gap: 16px; }
.condiment-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.condiment-image-wrapper img { width: 100%; display: block; }
.condiment-corner {
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent var(--primary-color) transparent transparent;
  z-index: 2;
}

/* ============================================================
   TREATS / DESSERTS SECTION
   ============================================================ */
.treats-section { position: relative; padding: 80px 0; background: var(--section-bg); background-size: cover; background-attachment: var(--section-bg-attachment); }
.treats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.treats-card {
  background: var(--primary-color); border-radius: 12px; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer;
}
.treats-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(80,0,13,0.5); }
.treats-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.treats-content { padding: 1rem; text-align: center; }
.treats-content h5 { color: #fff; }

/* ============================================================
   DRINKS SECTION
   ============================================================ */
.drinks-section { position: relative; padding: 80px 0; background: var(--section-bg); background-size: cover; background-attachment: var(--section-bg-attachment); }
.drinks-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.drinks-text { display: flex; flex-direction: column; gap: 24px; }
.drinks-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.drinks-list-item {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--text-white);
  display: flex; align-items: center; gap: 10px;
}
.drinks-bullet { color: var(--primary-color); font-size: 0.6rem; line-height: 1; }
.drinks-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.drinks-image-wrapper img { width: 100%; display: block; }
.drinks-frame {
  position: absolute; inset: 12px;
  border: 2px solid rgba(80,0,13,0.5);
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   AGUAS FRESCAS SECTION
   ============================================================ */
.aguas-section { position: relative; padding: 80px 0; background: var(--section-bg); background-size: cover; background-attachment: var(--section-bg-attachment); }
.aguas-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: center; }
.aguas-list-card { display: flex; flex-direction: column; gap: 24px; }
.aguas-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.aguas-list-item {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--text-white);
  display: flex; align-items: center; gap: 10px;
}
.aguas-bullet { color: var(--primary-color); font-size: 0.6rem; line-height: 1; }
.aguas-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.aguas-image-wrapper img { width: 100%; display: block; }
.aguas-corner {
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent var(--primary-color) transparent transparent;
  z-index: 2;
}

/* ============================================================
   PRICING NOTICE SECTION
   ============================================================ */
.pricing-notice-section { position: relative; padding: 60px 0; background: var(--section-bg); background-size: cover; background-attachment: var(--section-bg-attachment); text-align: center; }
.pricing-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 24px;
}
.pricing-divider + .pricing-divider { margin-top: 0; margin-bottom: 0; }
.pricing-card + .pricing-divider { margin-top: 32px; }
.pricing-divider-bar {
  display: inline-block; width: 50px; height: 1px;
  background: var(--primary-color); border-radius: 2px;
}
.pricing-divider-star { color: var(--primary-color); font-size: 0.8rem; line-height: 1; opacity: 0.6; }
.pricing-card {
  max-width: 700px; margin: 0 auto;
  padding: 1.5rem 2rem; border-radius: 12px;
  background: rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column; gap: 12px;
}
.pricing-text {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--primary-color);
  line-height: 1.7;
  letter-spacing: 0.01em;
  text-shadow: 0 0 20px rgba(80,0,13,0.15);
}

/* ============================================================
   FEATURES / AUTHENTIC FLAVORS SECTION
   ============================================================ */
.features-section { position: relative; padding: 80px 0; background: var(--section-bg); background-size: cover; background-attachment: var(--section-bg-attachment); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.features-main { display: flex; flex-direction: column; gap: 32px; }
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  border: 1px solid rgba(80,0,13,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.feature-icon { width: 26px; height: 26px; flex-shrink: 0; color: var(--primary-color); margin-top: 2px; }
.feature-item-text { display: flex; flex-direction: column; gap: 4px; }
.feature-item-text h3 {
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--primary-color);
  text-shadow: 0 0 20px rgba(80,0,13,0.15);
}
.feature-item-text p {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--text-white);
  opacity: 0.8;
}

/* ============================================================
   CONTACTS SECTION
   ============================================================ */
.contacts-section { position: relative; padding: 80px 0; background: var(--section-bg); background-size: cover; background-attachment: var(--section-bg-attachment); }
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.contacts-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 1.5rem 2rem;
  background: rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  border: 1px solid rgba(80,0,13,0.15);
}
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; flex-direction: column; gap: 2px; }
.contact-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-color);
  opacity: 0.7;
}
.contact-value {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--text-white);
}
.contact-value a { color: var(--text-white); text-decoration: none; }
.contact-value a:hover { color: var(--primary-color); }
.contact-divider {
  display: flex; align-items: center; gap: 10px;
  margin: 4px 0;
}
.contact-divider-bar {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.3;
}
.contact-divider-star { color: var(--primary-color); font-size: 0.55rem; opacity: 0.4; line-height: 1; }
.contact-block { display: flex; flex-direction: column; gap: 8px; }
.contact-block-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-color);
  opacity: 0.7;
}
.contact-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--text-white);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.contact-row:last-child { border-bottom: none; }
.contact-closed { color: var(--primary-color); opacity: 0.7; font-weight: 600; }
.map-wrapper { border-radius: 16px; overflow: hidden; min-height: 380px; box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.map-wrapper iframe { width: 100%; height: 100%; min-height: 380px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-section {
  padding: 30px 0;
  text-align: center;
  background: rgba(80,0,13,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.footer-section p {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Tablet */
@media (max-width: 992px) {
  .welcome-section, .condiment-section, .treats-section,
  .drinks-section, .aguas-section, .features-section,
  .contacts-section { padding-top: 60px; padding-bottom: 60px; }
  .menu-section { padding-top: 60px; padding-bottom: 60px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .condiment-grid { grid-template-columns: 1fr; }
  .menu-title { margin-bottom: 20px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card-wide { grid-column: span 2; }
  .menu-category { margin-top: 40px; }
}

/* Mobile */
@media (max-width: 768px) {
  .welcome-section, .condiment-section, .treats-section,
  .drinks-section, .aguas-section, .features-section,
  .contacts-section { padding-top: 50px; padding-bottom: 50px; }
  .menu-section { padding-top: 50px; padding-bottom: 50px; }
  .welcome-grid, .drinks-grid, .aguas-grid, .contacts-grid { grid-template-columns: 1fr; }
  .map-wrapper { min-height: 280px; }
  .map-wrapper iframe { min-height: 280px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card-wide { grid-column: span 1; }
  .menu-card { height: 90px; }
  .menu-card-featured { height: 90px; }

  .menu-item-title { font-size: 1.2rem; }
  .menu-item-text { font-size: 0.72rem; }
  .menu-category { margin-top: 40px; }
  .menu-category-divider { margin-bottom: 18px; }
  .treats-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}

/* Small mobile */
@media (max-width: 480px) {
  .welcome-section, .condiment-section, .treats-section,
  .drinks-section, .aguas-section, .features-section,
  .contacts-section { padding-top: 40px; padding-bottom: 40px; }
  .menu-section { padding-top: 40px; padding-bottom: 40px; }
  .container, .container-fluid { padding: 0 16px; }
  .hero-grid { gap: 24px; }
  .hero-text { gap: 20px; }
  .feature-item { flex-direction: column; align-items: flex-start; }
  .feature-icon { margin-bottom: 4px; }
  .menu-card { height: 110px; }
  .subtitle-bar { width: 24px; }
  .subtitle-star { font-size: 0.8rem; }
  .hero-subtitle-row { gap: 8px; }
  .pricing-card { padding: 1.25rem; }
}

/* ============================================================
   FLOATING PHONE CIRCLE
   ============================================================ */
.float-phone {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(80,0,13,0.5), 0 0 0 3px rgba(255,255,255,0.15);
  animation: floatPhoneRise 0.6s ease-out, floatPhonePulse 2.5s ease-in-out 0.6s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.float-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 35px rgba(80,0,13,0.7);
}
.float-phone-icon {
  width: 24px;
  height: 24px;
  animation: floatPhoneRing 2.5s ease-in-out 0.6s infinite;
}
.float-phone-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}
@keyframes floatPhoneRise {
  0% { opacity: 0; transform: translateY(30px) scale(0.7); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatPhonePulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(80,0,13,0.5); }
  50% { box-shadow: 0 4px 40px rgba(80,0,13,0.8); }
}
@keyframes floatPhoneRing {
  0%, 100% { transform: rotate(0); }
  5% { transform: rotate(15deg); }
  10% { transform: rotate(-15deg); }
  15% { transform: rotate(10deg); }
  20% { transform: rotate(0); }
}

@media (max-width: 768px) {
  .float-phone {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
  .float-phone-icon { width: 20px; height: 20px; }
  .float-phone-label { font-size: 0.5rem; }
}
