/* ============================================
   HoneyBadger Paint Company - Styles
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

/* ============================================
   CSS Variables - Design System
   ============================================ */
:root {
  /* Brand Colors - Vibrant Paint Inspired Palette */
  --primary-red: #E63946;
  --primary-blue: #457B9D;
  --primary-green: #2A9D8F;
  --primary-yellow: #F4A261;
  --primary-orange: #E76F51;

  /* Accent Colors */
  --accent-gold: #FFD700;
  --accent-purple: #9B59B6;
  --accent-teal: #1ABC9C;

  /* Neutrals */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #6C757D;
  --dark-gray: #343A40;
  --black: #1A1A1A;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--primary-yellow) 100%);
  --gradient-cool: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
  --gradient-vibrant: linear-gradient(135deg, #E63946 0%, #F4A261 25%, #2A9D8F 50%, #457B9D 75%, #9B59B6 100%);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--dark-gray);
  line-height: 1.6;
  background-color: var(--light-gray);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-medium);
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--black);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--black);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

p {
  margin-bottom: var(--spacing-sm);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-sm) var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--spacing-md);
}

.logo {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark-gray);
  letter-spacing: 1px;
  transition: transform var(--transition-medium);
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.nav-menu {
  grid-column: 3;
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  justify-content: flex-end;
}

.nav-menu a {
  font-weight: 600;
  color: var(--dark-gray);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: var(--transition-medium);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition-medium);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff5f5 0%, #f0f9ff 50%, #f0fdf4 100%);
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  padding: var(--spacing-md);
  animation: fadeInUp 1s ease;
}

.hero-tagline {
  background: var(--gradient-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--medium-gray);
  margin-bottom: var(--spacing-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

/* Hero Mascot Character - Natural Blending with CSS Masking */
.hero-mascot {
  position: absolute;
  right: -50px;
  bottom: 0;
  z-index: 3;
  width: 500px;
  height: auto;
  animation: float 4s ease-in-out infinite, fadeInRight 1.2s ease;
  pointer-events: none;
  /* Blend mode to merge with background - removes white */
  mix-blend-mode: multiply;
  /* Advanced masking for natural edge blending */
  -webkit-mask-image: radial-gradient(ellipse 75% 85% at 45% 50%,
      black 30%,
      rgba(0, 0, 0, 0.95) 45%,
      rgba(0, 0, 0, 0.7) 65%,
      rgba(0, 0, 0, 0.3) 80%,
      transparent 95%);
  mask-image: radial-gradient(ellipse 75% 85% at 45% 50%,
      black 30%,
      rgba(0, 0, 0, 0.95) 45%,
      rgba(0, 0, 0, 0.7) 65%,
      rgba(0, 0, 0, 0.3) 80%,
      transparent 95%);
}

.hero-mascot img {
  width: 100%;
  height: auto;
  display: block;
  /* Natural color adjustments for blending */
  filter: saturate(1.2) brightness(1.08) contrast(1.05);
  /* Soft drop shadow for depth */
  filter: saturate(1.2) brightness(1.08) contrast(1.05) drop-shadow(-20px 25px 35px rgba(0, 0, 0, 0.2));
}

/* Painted area effect - gradient overlay suggesting painted reveal */
.hero-mascot::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -120px;
  width: 300px;
  height: 80%;
  background: linear-gradient(90deg,
      rgba(42, 157, 143, 0.08) 0%,
      rgba(42, 157, 143, 0.12) 30%,
      rgba(69, 123, 157, 0.08) 60%,
      transparent 100%);
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  filter: blur(25px);
  pointer-events: none;
  animation: paintWash 3s ease-in-out infinite alternate;
  z-index: -1;
}

/* Paint drip/roller trail effect */
.hero-mascot::after {
  content: '';
  position: absolute;
  top: 15%;
  left: -80px;
  width: 200px;
  height: 400px;
  background: linear-gradient(135deg,
      transparent 0%,
      rgba(42, 157, 143, 0.15) 20%,
      rgba(42, 157, 143, 0.25) 40%,
      rgba(26, 188, 156, 0.2) 60%,
      transparent 100%);
  border-radius: 45% 55% 60% 40% / 50% 50% 50% 50%;
  filter: blur(40px);
  opacity: 0.7;
  animation: rollerWash 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(120px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes paintWash {
  0% {
    transform: scale(0.95) translateX(-10px);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.05) translateX(5px);
    opacity: 0.8;
  }
}

@keyframes rollerWash {

  0%,
  100% {
    transform: translateY(-15px) scale(0.98);
    opacity: 0.6;
  }

  50% {
    transform: translateY(15px) scale(1.02);
    opacity: 0.8;
  }
}

/* Paint Stroke Overlay - Simplified gradient based */
.paint-stroke-overlay {
  position: absolute;
  top: 20%;
  right: 20%;
  width: 500px;
  height: 60%;
  z-index: 2;
  background: radial-gradient(ellipse at 30% 40%,
      rgba(42, 157, 143, 0.15) 0%,
      rgba(69, 123, 157, 0.12) 30%,
      rgba(26, 188, 156, 0.08) 50%,
      transparent 70%);
  opacity: 0;
  filter: blur(20px);
  animation: revealPaint 2.5s ease-out forwards;
  animation-delay: 0.6s;
  pointer-events: none;
  border-radius: 50% 40% 60% 50% / 55% 45% 55% 45%;
}

@keyframes revealPaint {
  0% {
    opacity: 0;
    transform: scale(0.7) translateX(80px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

/* ============================================
   Buttons - 3D Style
   ============================================ */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  position: relative;
  overflow: visible;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /* 3D depth effect with layered shadows */
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 -1px 0 rgba(0, 0, 0, 0.1) inset,
    0 4px 0 rgba(0, 0, 0, 0.15),
    0 8px 12px rgba(0, 0, 0, 0.2);
  /* 3D Transform */
  transform: translateY(0);
}

/* Top highlight for 3D effect */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  pointer-events: none;
}

/* Shimmer animation */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #E63946 0%, #F4A261 50%, #E76F51 100%);
  background-size: 200% 200%;
  color: var(--white);
  /* Enhanced 3D shadows for primary button */
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.3) inset,
    0 -2px 0 rgba(0, 0, 0, 0.2) inset,
    0 6px 0 #c42e3a,
    0 12px 20px rgba(230, 57, 70, 0.4);
  animation: gradient-shift 3s ease infinite;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid rgba(0, 0, 0, 0.15);
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.4) inset,
    0 -2px 0 rgba(0, 0, 0, 0.2) inset,
    0 8px 0 #c42e3a,
    0 16px 28px rgba(230, 57, 70, 0.5),
    0 0 30px rgba(230, 57, 70, 0.3);
  animation: gradient-shift 1.5s ease infinite, glow-pulse 1.5s ease infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.15);
  }
}

.btn-outline {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(231, 111, 81, 0.1) 100%);
  border: 3px solid var(--primary-red);
  color: var(--primary-red);
  /* 3D effect for outline button */
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 -1px 0 rgba(230, 57, 70, 0.2) inset,
    0 4px 0 rgba(230, 57, 70, 0.3),
    0 8px 12px rgba(230, 57, 70, 0.2);
  position: relative;
}

.btn-outline::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
  background-size: 200% 200%;
  border-color: var(--primary-orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.3) inset,
    0 -2px 0 rgba(0, 0, 0, 0.2) inset,
    0 6px 0 #c42e3a,
    0 12px 20px rgba(230, 57, 70, 0.4),
    0 0 30px rgba(230, 57, 70, 0.3);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: gradient-shift 2s ease infinite;
}

/* Active/Click state - Pressed down 3D effect */
.btn:active {
  transform: translateY(2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 -1px 0 rgba(0, 0, 0, 0.1) inset,
    0 2px 0 rgba(0, 0, 0, 0.15),
    0 4px 6px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 -1px 0 rgba(0, 0, 0, 0.3) inset,
    0 2px 0 #c42e3a,
    0 4px 8px rgba(230, 57, 70, 0.3);
}

.btn-outline:active {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 -1px 0 rgba(230, 57, 70, 0.3) inset,
    0 2px 0 rgba(230, 57, 70, 0.3),
    0 4px 6px rgba(230, 57, 70, 0.15);
}




/* ============================================
   Section Styles
   ============================================ */
section {
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-sm);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--medium-gray);
  max-width: 700px;
  margin: var(--spacing-md) auto 0;
  font-size: 1.125rem;
}

/* ============================================
   Paint Catalog Section
   ============================================ */
.catalog-filters {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 2rem;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--dark-gray);
  cursor: pointer;
  transition: all var(--transition-medium);
  font-size: 1rem;
}

.filter-btn:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.filter-btn.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.catalog-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  cursor: pointer;
  animation: fadeIn 0.5s ease;
}

.catalog-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.catalog-item-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.catalog-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.catalog-item:hover .catalog-item-image img {
  transform: scale(1.1);
}

.catalog-item-content {
  padding: var(--spacing-md);
}

.catalog-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--spacing-xs);
}

.catalog-item-code {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.catalog-item-family {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-gray);
}

/* Room Preview Section */
.room-preview {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  margin-top: var(--spacing-lg);
}

.room-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.room-preview-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
}

.room-preview-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.room-preview-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.room-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: var(--spacing-md);
  color: var(--white);
}

.room-preview-overlay h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

/* ============================================
   About Section
   ============================================ */
.about {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.about-feature {
  text-align: center;
  padding: var(--spacing-md);
  background: linear-gradient(135deg, #fff5f5 0%, #f0f9ff 100%);
  border-radius: var(--radius-lg);
  transition: var(--transition-medium);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.about-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.about-feature h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--black);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  background: linear-gradient(135deg, #1d4e89 0%, #00818a 100%);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  color: var(--white);
}

.contact .section-title,
.contact .section-subtitle {
  color: var(--white);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--white);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-gray);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition-medium);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--dark-gray);
  opacity: 0.9;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--white);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-info-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: var(--transition-medium);
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.contact-icon {
  font-size: 2rem;
  min-width: 50px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: var(--light-gray);
  transition: var(--transition-medium);
}

.footer-links a:hover {
  color: var(--primary-yellow);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  transition: var(--transition-medium);
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-md);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  color: var(--light-gray);
  max-width: 1400px;
  margin: 0 auto;
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  z-index: 999;
  transition: all var(--transition-medium);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7);
  }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet - Large (1024px and below) */
@media (max-width: 1024px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .hero {
    min-height: 80vh;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .room-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet - Small (768px and below) */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px var(--spacing-md) var(--spacing-md);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-medium);
    gap: var(--spacing-md);
  }

  .nav-menu.active {
    right: 0;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-tagline {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-filters {
    width: 100%;
    gap: 0.5rem;
  }

  .filter-btn {
    flex: 1 1 calc(33.333% - 0.5rem);
    min-width: 90px;
    padding: 0.625rem 0.75rem;
    font-size: 0.9rem;
  }

  .room-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container,
  .about-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact section visibility improvements */
  .contact .section-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .contact .section-subtitle {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
    font-size: 1.85rem;
  }

  .room-preview-item img {
    height: 280px;
  }
}

/* Mobile - Small (480px and below) */
@media (max-width: 480px) {
  :root {
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 3.5rem;
  }

  .nav-container {
    padding: var(--spacing-sm) var(--spacing-sm);
  }

  .nav-menu {
    width: 80%;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo img {
    height: 40px;
  }

  /* Hero improvements for mobile */
  .hero {
    min-height: 65vh;
    padding-top: 90px;
  }

  .hero-content {
    padding: var(--spacing-sm);
  }

  .hero-tagline {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  h2 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  section {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  /* Catalog - single column on mobile */
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-item-image {
    height: 220px;
  }

  .filter-btn {
    flex: 1 1 calc(50% - 0.5rem);
    padding: 0.625rem 0.5rem;
    font-size: 0.85rem;
  }

  /* Room preview - single column */
  .room-preview {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .room-preview-grid {
    grid-template-columns: 1fr;
  }

  .room-preview-item img {
    height: 250px;
  }

  /* About section */
  .about {
    padding: var(--spacing-md);
  }

  .contact {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  /* Mascot - responsive sizing for mobile */
  .hero-mascot {
    width: 180px;
    right: 2%;
    bottom: 5%;
  }

  .contact .section-title,
  .contact .section-subtitle,
  .contact-form h3 {
    color: var(--white);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }

  .form-group label {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .contact-icon {
    font-size: 1.75rem;
  }

  /* Footer */
  .footer {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 1.75rem;
  }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: var(--spacing-xs);
}

.mt-2 {
  margin-top: var(--spacing-sm);
}

.mt-3 {
  margin-top: var(--spacing-md);
}

.mt-4 {
  margin-top: var(--spacing-lg);
}

.mb-1 {
  margin-bottom: var(--spacing-xs);
}

.mb-2 {
  margin-bottom: var(--spacing-sm);
}

.mb-3 {
  margin-bottom: var(--spacing-md);
}

.mb-4 {
  margin-bottom: var(--spacing-lg);
}

.hidden {
  display: none !important;
}