/* ===== VARIABLES Y RESET ===== */
:root {
  --primary-color: #0077b6;
  --primary-dark: #005f92;
  --secondary-color: #00b4d8;
  --accent-color: #90e0ef;
  --dark-color: #1a1a2e;
  --light-color: #f8f9fa;
  --text-color: #333;
  --text-light: #666;
  --white: #ffffff;
  --gradient-ocean: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #90e0ef 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ===== HEADER / NAVEGACIÓN ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
}

.header.scrolled .nav-links a {
  color: var(--text-color);
}

.header.scrolled .logo img {
  filter: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  height: 50px;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

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

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

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.header.scrolled .menu-toggle {
  color: var(--text-color);
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1502680390469-be75c86b636f?w=1920') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.7) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  font-size: 5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 10px;
}

.hero-content .tagline {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

/* ===== BOTONES ===== */
.btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: var(--gradient-ocean);
  color: var(--white);
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 119, 182, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 119, 182, 0.5);
}

.btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  border: 2px solid var(--white);
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* ===== BTN LINK ===== */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: var(--transition);
}

.btn-link:hover {
  color: var(--primary-dark);
  gap: 15px;
}

.btn-link i {
  transition: var(--transition);
}

/* ===== HEADER SOLID (para páginas internas) ===== */
.header-solid {
  background: var(--white);
  box-shadow: var(--shadow);
}

.header-solid .nav-links a {
  color: var(--text-color);
}

.header-solid .logo img {
  filter: none;
}

.header-solid .menu-toggle {
  color: var(--text-color);
}

/* ===== PAGE HERO (para páginas internas) ===== */
.page-hero {
  height: 50vh;
  min-height: 350px;
  background: url('https://images.unsplash.com/photo-1509914398892-963f53e6e2f1?w=1920') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 70px;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.8) 0%, rgba(26, 26, 46, 0.85) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.page-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.page-hero-content p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* ===== STORY SECTION ===== */
.story {
  padding: 100px 0;
  background: var(--white);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.story-text .highlight {
  font-size: 1.1rem;
  color: var(--primary-color);
  padding: 20px;
  background: var(--light-color);
  border-radius: 10px;
  margin-top: 1.5rem;
}

.story-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy {
  padding: 100px 0;
  background: var(--light-color);
}

.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.philosophy-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.philosophy-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.philosophy-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ===== FINAL MESSAGE ===== */
.final-message {
  padding: 100px 0;
  background: var(--white);
}

.message-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.message-box p {
  font-size: 1.2rem;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.brand-tagline {
  font-size: 1.8rem;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
  margin-bottom: 2rem;
}

/* ===== VALUES GRID 3 COLUMNS ===== */
.values-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ===== ESSENCE SECTION ===== */
.essence {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.essence-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.essence-symbol {
  text-align: center;
}

.essence-logo {
  max-width: 250px;
  filter: drop-shadow(0 10px 30px rgba(0, 119, 182, 0.3));
  animation: float 6s ease-in-out infinite;
}

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

.essence-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.essence-text h2 .emoji {
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
}

.essence-meaning {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 2rem 0;
}

.meaning-item {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.meaning-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.meaning-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.meaning-item h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.meaning-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.essence-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary-color);
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  border-left: 5px solid var(--secondary-color);
  margin-top: 2rem;
  font-family: 'Playfair Display', serif;
}

/* ===== COLLECTION SECTION ===== */
.collection {
  padding: 100px 0;
  background: var(--light-color);
  text-align: center;
}

.collection h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 3rem;
}

.collection-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.collection-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition);
}

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

.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  text-align: left;
}

.collection-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.collection-overlay p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ===== COMING SOON / COUNTDOWN ===== */
.coming-soon-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-container {
  margin: 3rem 0;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.countdown-item {
  background: var(--white);
  padding: 2rem 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  min-width: 120px;
  transition: var(--transition);
}

.countdown-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.countdown-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.countdown-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

.coming-soon-message {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.coming-soon-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.coming-soon-message p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ===== VALUES SECTION ===== */
.values {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.values h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 3rem;
}

.value-card {
  padding: 40px 30px;
  background: var(--light-color);
  border-radius: 20px;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background: var(--white);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-ocean);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i {
  font-size: 2rem;
  color: var(--white);
}

.value-card h3 {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== PARALLAX BANNER ===== */
.parallax-banner {
  height: 60vh;
  background: url('https://images.unsplash.com/photo-1509914398892-963f53e6e2f1?w=1920') center/cover fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 119, 182, 0.8);
}

.parallax-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.parallax-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.parallax-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ===== GALLERY SECTION ===== */
.gallery {
  padding: 100px 0;
  background: var(--light-color);
  text-align: center;
}

.gallery h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

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

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

.contact-info h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-details {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--gradient-ocean);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item span {
  color: var(--text-light);
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--light-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gradient-ocean);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form form {
  background: var(--light-color);
  padding: 40px;
  border-radius: 20px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-color);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand {
  padding-right: 40px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.footer .social-links a {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer .social-links a:hover {
  background: var(--gradient-ocean);
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-newsletter h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
}

.newsletter-form button {
  width: 50px;
  height: 50px;
  background: var(--gradient-ocean);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  transform: scale(1.1);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom i {
  color: #e74c3c;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid,
  .values-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .essence-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .essence-logo {
    max-width: 180px;
  }
  
  .story-content,
  .philosophy-content {
    grid-template-columns: 1fr;
  }
  
  .philosophy-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--dark-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    color: var(--white) !important;
    font-size: 1.2rem;
  }
  
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    letter-spacing: 5px;
  }
  
  .hero-content .tagline {
    font-size: 1.1rem;
  }
  
  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
  
  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .collection-grid,
  .values-grid,
  .values-grid-3 {
    grid-template-columns: 1fr !important;
  }
  
  .countdown {
    gap: 1rem;
  }
  
  .countdown-item {
    padding: 1.5rem 1.8rem;
    min-width: 100px;
  }
  
  .countdown-number {
    font-size: 2.5rem;
  }
  
  .countdown-label {
    font-size: 0.75rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    padding-right: 0;
  }
  
  .footer .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .parallax-banner {
    background-attachment: scroll;
  }
  
  .parallax-content h2 {
    font-size: 2rem;
  }
  
  .essence-meaning {
    grid-template-columns: 1fr;
  }
  
  .essence-quote {
    font-size: 1.1rem;
    padding: 20px;
  }
  
  .page-hero {
    height: 40vh;
    min-height: 280px;
  }
  
  .page-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .story-image,
  .philosophy-image {
    order: -1;
  }
  
  .story-image img,
  .philosophy-image img {
    height: 300px;
  }
  
  .message-box {
    padding: 40px 25px;
  }
  
  .message-box p {
    font-size: 1rem;
  }
  
  .brand-tagline {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem !important;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
  
  .countdown {
    gap: 0.8rem;
  }
  
  .countdown-item {
    padding: 1rem 1.2rem;
    min-width: 70px;
  }
  
  .countdown-number {
    font-size: 1.8rem;
  }
  
  .countdown-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }
  
  .coming-soon-icon {
    font-size: 2rem;
  }
  
  .contact-form form {
    padding: 25px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    width: 100%;
    border-radius: 50px;
  }
}
