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

:root {
  --gray: #404040;
  --red: #AE0009;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --dark-gray: #2A2A2A;
  --font-primary: 'Poppins', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--gray);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #777;
  max-width: 600px;
  margin-bottom: 50px;
  font-weight: 300;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.logo img {
  height: 44px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.logo .logo-white {
  display: block;
}

.logo .logo-dark {
  display: none;
}

.header.scrolled .logo .logo-white {
  display: none;
}

.header.scrolled .logo .logo-dark {
  display: block;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-text span {
  color: var(--red);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 4px 0;
}

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

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

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

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

.header.scrolled .nav a:hover {
  color: var(--red);
}

.nav .btn-nav {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav .btn-nav::after {
  display: none;
}

.nav .btn-nav:hover {
  background: #8c0007;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.header.scrolled .hamburger span {
  background: var(--dark-gray);
}

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

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

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

/* ====================== SUBMENU ====================== */
.nav-item {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: block;
  padding: 10px 24px;
  color: var(--gray) !important;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: var(--transition);
}

.submenu a::after {
  display: none !important;
}

.submenu a:hover {
  color: var(--red) !important;
  background: var(--light-gray);
}

.header.scrolled .submenu {
  border-top: 2px solid var(--red);
}

/* ====================== HERO ====================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 2;
  width: 90%;
  max-width: 850px;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  padding: 6px 20px;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-content h1 span {
  color: var(--red);
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 35px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
}

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

.btn-primary:hover {
  background: #8c0007;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(174, 0, 9, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark-gray);
  transform: translateY(-2px);
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--white);
  border-color: var(--white);
}

.hero-arrow {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  font-size: 1.5rem;
  animation: bounce-down 2s infinite;
  opacity: 0.7;
  cursor: pointer;
}

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

/* ====================== ABOUT ====================== */
.about {
  background: var(--white);
}

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

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
}

.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(174, 0, 9, 0.3);
}

.about-experience .number {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-experience .label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-text .section-title {
  margin-bottom: 20px;
}

.about-text p {
  color: #666;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 25px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray);
}

.about-feature .icon {
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ====================== PARALLAX ====================== */
.parallax {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/image1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

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

.parallax-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding: 0 20px;
}

.parallax-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.parallax-content p {
  font-size: 1.1rem;
  opacity: 0.85;
  font-weight: 300;
}

/* ====================== PROMOTIONS ====================== */
.promotions {
  background: var(--light-gray);
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.promo-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.promo-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.promo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.promo-card:hover .promo-card-image img {
  transform: scale(1.08);
}

.promo-card-status {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-card-status.completed {
  background: #2E7D32;
}

.promo-card-body {
  padding: 24px;
}

.promo-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 8px;
}

.promo-card-body .location {
  font-size: 0.88rem;
  color: #999;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.promo-card-body p {
  font-size: 0.92rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.6;
}

.promo-card-body .promo-details {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.promo-card-body .promo-details span {
  font-size: 0.82rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ====================== CONTACT ====================== */
.contact {
  background: var(--white);
}

.contact-grid {
  max-width: 700px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

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

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--red);
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.92rem;
  color: #777;
  line-height: 1.5;
}

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

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--dark-gray);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 0.92rem;
  color: var(--gray);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(174, 0, 9, 0.1);
}

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

.form-msg {
  display: none;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
}

.form-msg.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-msg.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-group .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.95rem;
}

/* ====================== MAP ====================== */
.map-section {
  height: 400px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ====================== FOOTER ====================== */
.footer {
  background: var(--dark-gray);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-brand .logo-text {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--red);
  padding-left: 4px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ====================== GALLERY PAGE ====================== */
.page-header {
  height: 50vh;
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-header-content p {
  font-size: 1.1rem;
  opacity: 0.85;
  font-weight: 300;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid #e0e0e0;
  background: transparent;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.gallery-item-image {
  height: 280px;
  overflow: hidden;
}

.gallery-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  transition: var(--transition);
}

.gallery-item-overlay h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-item-overlay p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ====================== SCROLL TO TOP ====================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(174, 0, 9, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #8c0007;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(174, 0, 9, 0.45);
}

@media (max-width: 768px) {
  .scroll-top {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    bottom: 20px;
    right: 20px;
  }
}

/* ====================== ANIMATIONS ====================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
  .hero {
    min-height: 500px;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }
  .about-grid {
    gap: 40px;
  }
  .promotions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .parallax {
    height: 300px;
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    align-items: flex-start;
  }
  .nav.open {
    right: 0;
  }
  .nav a {
    color: var(--gray) !important;
    font-size: 0.95rem;
  }
  .nav-item {
    width: 100%;
  }
  .nav-item .submenu-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-item .submenu-trigger::after {
    content: '+';
    font-size: 1.1rem;
    color: var(--red);
    transition: var(--transition);
  }
  .nav-item.open .submenu-trigger::after {
    transform: rotate(45deg);
  }
  .submenu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0 0 4px 16px;
    background: transparent;
  }
  .nav-item.open .submenu {
    display: block;
  }
  .submenu a {
    padding: 8px 16px;
    color: var(--gray) !important;
    font-size: 0.88rem;
    text-transform: none;
    letter-spacing: 0;
    white-space: normal;
  }
  .submenu a:hover {
    background: transparent;
  }
  .hamburger {
    display: flex;
    z-index: 1000;
  }
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .hero-content p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 4px 14px;
    margin-bottom: 16px;
  }
  .hero-content {
    width: 92%;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .hero-dots {
    bottom: 20px;
  }
  .hero-arrow {
    display: none;
  }
  .section {
    padding: 70px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-image img {
    height: 300px;
  }
  .about-experience {
    bottom: -10px;
    right: -10px;
    padding: 15px 20px;
  }
  .about-experience .number {
    font-size: 2rem;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .promotions-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .parallax {
    height: 250px;
    background-attachment: scroll;
  }
  .parallax-content h2 {
    font-size: 1.6rem;
  }
  .parallax-content p {
    font-size: 0.95rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .page-header-content h1 {
    font-size: 2rem;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 320px;
  }
  .hero-content h1 {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    margin-bottom: 8px;
  }
  .hero-content p {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }
  .hero-badge {
    font-size: 0.6rem;
    padding: 3px 12px;
    margin-bottom: 10px;
  }
  .hero-buttons .btn {
    padding: 8px 20px;
    font-size: 0.75rem;
  }
  .hero-dots {
    bottom: 12px;
  }
  .hero-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-content h1 {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }
  .hero-content p {
    font-size: 0.85rem;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 3px 12px;
  }
  .hero-content {
    width: 94%;
  }
  .section-title {
    font-size: 1.5rem;
  }
}

/* ====================== LEGAL PAGES ====================== */
.legal-section {
  padding: 80px 0 100px;
  background: var(--white);
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.96rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-content ul li {
  font-size: 0.96rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-content ul li strong {
  color: var(--gray);
}

.legal-content a {
  color: var(--red);
  text-decoration: underline;
}

.legal-content a:hover {
  color: #8c0007;
}

.legal-date {
  margin-top: 40px;
  color: #999;
  font-size: 0.88rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 0.92rem;
}

.legal-table th {
  background: var(--dark-gray);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  color: #555;
}

.legal-table tbody tr:hover {
  background: var(--light-gray);
}

/* ====================== COOKIE BANNER ====================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark-gray);
  color: rgba(255, 255, 255, 0.9);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
}

.cookie-banner a {
  color: var(--red);
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: #ff1a1a;
}

.cookie-banner .btn {
  flex-shrink: 0;
  padding: 10px 28px;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* ====================== FOOTER LEGAL LINKS ====================== */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: var(--red);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }

  .cookie-banner p {
    font-size: 0.82rem;
  }

  .cookie-banner .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .legal-section {
    padding: 60px 0 80px;
  }

  .legal-content h2 {
    font-size: 1.3rem;
  }

  .legal-table {
    font-size: 0.82rem;
  }

  .legal-table th,
  .legal-table td {
    padding: 8px 10px;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}
