/* 
   El Xuixo de Girona - Corporate Website stylesheet
   Premium Luxury Bakery Aesthetic
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg-primary: #0a0a0b;
  --bg-secondary: #121214;
  --bg-tertiary: #1a1a1e;
  --accent-gold: #d4af37;
  --accent-gold-rgb: 212, 175, 55;
  --accent-gold-hover: #e5c158;
  --text-primary: #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-muted: #6e6e73;
  --border-color: rgba(212, 175, 55, 0.15);
  --border-color-focus: rgba(212, 175, 55, 0.5);
  --success-color: #25d366; /* WhatsApp Green */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-body: 'Outfit', sans-serif;
  --font-title: 'Playfair Display', serif;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 2px solid var(--bg-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--bg-tertiary);
  padding: 2px;
  border: 1px solid var(--accent-gold);
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

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

.controls-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Selector */
.lang-selector {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--accent-gold);
}

.lang-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: none;
  min-width: 120px;
  z-index: 101;
  overflow: hidden;
}

.lang-dropdown.show {
  display: block;
  animation: fadeIn 0.2s ease-out;
}

.lang-option {
  display: block;
  width: 100%;
  padding: 10px 15px;
  border: none;
  background: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-option:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--text-primary);
}

.lang-option.active {
  color: var(--accent-gold);
  font-weight: 600;
  background: rgba(212, 175, 55, 0.05);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 11, 0) 60%),
              linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {
  z-index: 2;
}

.hero-tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: 600;
  display: inline-block;
  border-bottom: 1px solid var(--accent-gold);
  padding-bottom: 5px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
}

.hero h1 span {
  display: block;
  color: var(--accent-gold);
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-bg {
  position: absolute;
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
}

.hero-img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
  animation: float 6s ease-in-out infinite;
}

/* About / Tradition Section */
.about {
  padding: 100px 24px;
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img {
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-tertiary);
  border: 2px solid var(--accent-gold);
  padding: 15px 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-badge-num {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-top: 5px;
}

.about-content h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 20px;
}

.about-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-icon {
  color: var(--accent-gold);
  font-size: 1.5rem;
  line-height: 1;
  padding-top: 2px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Products Section */
.products {
  padding: 100px 24px;
  background-color: var(--bg-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-color);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.08);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-image-container {
  position: relative;
  background: #000;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

/* Crop out 'Els nostres xuixos' and flavor names from JPG cards */
.crop-card-img {
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .crop-card-img {
  transform: scale(1.05);
}

.product-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-meta {
  margin-bottom: 15px;
}

.product-name {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 600;
}

.product-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-badge {
  font-size: 0.8rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.product-action-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-action-link:hover {
  color: var(--accent-gold-hover);
}

/* Packaging Section */
.packaging {
  padding: 100px 24px;
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.packaging::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  transform: translateY(-50%);
  z-index: 1;
}

.packaging-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.packaging-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.packaging-img-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.packaging-img {
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  max-height: 450px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.packaging-img:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--accent-gold);
}

.packaging-content h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.packaging-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.packaging-features {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.p-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-primary);
}

.p-feat-icon {
  color: var(--accent-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.packaging-price-note {
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--accent-gold);
  padding: 15px 20px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 35px;
}

.packaging-price-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.packaging-price-text {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 100px 24px;
  background-color: var(--bg-primary);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
}

.contact-info-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.contact-detail-icon {
  background: var(--bg-secondary);
  color: var(--accent-gold);
  border: 1px solid var(--border-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-detail-item:hover .contact-detail-icon {
  background: var(--accent-gold);
  color: var(--bg-primary);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.contact-detail-text h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
}

.contact-detail-text a:hover {
  color: var(--accent-gold);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #fff;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background-color: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

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

/* Footer Section */
footer {
  background-color: #050506;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding: 60px 24px 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo-desc {
  max-width: 350px;
}

.footer-logo-desc .logo-wrapper {
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 60px;
  height: 60px;
  background-color: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--success-color);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
}

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

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.50);
    opacity: 0;
  }
}

/* Scroll reveal helper class */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 40px;
  }
  
  .hero-content {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-image-wrapper {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .packaging-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .packaging-image-wrapper {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .packaging-features {
    align-items: center;
  }
  
  .packaging-price-note {
    border-left: none;
    border-top: 3px solid var(--accent-gold);
    border-radius: 0 0 8px 8px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  .nav-links.open {
    left: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float-icon {
    width: 28px;
    height: 28px;
  }
}
