/**
 * MEGA STORE Landing Page Styles
 * Aesthetic: Urban Automotive Confidence
 *
 * Bold, geometric typography with industrial strength.
 * Deep blue for trust, vibrant orange for energy.
 * Dramatic animations suggesting speed and confidence.
 */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap");
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
@keyframes scrollDot {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}
@keyframes titlePulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
  }
  5% {
    transform: scale(1.03);
    filter: drop-shadow(0 8px 30px rgba(238, 126, 34, 0.7));
  }
  10% {
    transform: scale(1);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
  }
}
@keyframes fadeInWithGlow {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: drop-shadow(0 0 0 rgba(238, 126, 34, 0));
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.megastore-landing {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
  background: #0a0a0a;
}

#megastore-landing-page {
  width: 100%;
  min-height: 100vh;
  background-color: #141e4a;
}

.megastore-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--brand-color, #1a3a6e);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

svg.hero-image {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.logo-container {
  margin-bottom: 2rem;
  text-align: left;
  animation: fadeInDown 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.logo-image {
  max-width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}
@media (max-width: 768px) {
  .logo-image {
    max-width: 150px;
  }
}
@media (max-width: 480px) {
  .logo-image {
    max-width: 120px;
  }
}

svg.logo-image {
  max-width: 200px;
  height: auto;
  display: block;
}

.title-container {
  width: 100%;
  left: 0;
  right: 0;
  position: relative;
  z-index: 999;
  margin: -265px auto 0 !important;
  text-align: center;
  animation: fadeInWithGlow 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}
@media (max-width: 768px) {
  .title-container {
    margin: -28% auto 0 !important;
  }
}

.title-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
  animation: titlePulse 8s ease-in-out 2s infinite;
}
@media (max-width: 768px) {
  .title-image {
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .title-image {
    max-width: 300px;
  }
}

svg.title-image {
  max-width: 1200px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  animation: titlePulse 8s ease-in-out 2s infinite;
}
@media (max-width: 768px) {
  svg.title-image {
    max-width: 1200px;
  }
}
@media (max-width: 480px) {
  svg.title-image {
    max-width: 1200px;
  }
}

hr {
  max-width: 100px;
  margin: 25px auto 50px;
  border: solid 2px rgb(238, 126, 34);
}

.text-content {
  margin: 3rem auto;
  max-width: 800px;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
  text-align: center;
  padding: 0 10px;
}
.text-content h2 {
  font-size: 50px;
  line-height: 50px;
  font-weight: normal;
}
@media (max-width: 480px) {
  .text-content h2 {
    font-size: 43px;
    line-height: 57px;
  }
}
.text-content p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 1rem;
}
.text-content h1,
.text-content h2,
.text-content h3 {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.text-content strong {
  font-weight: 700;
}
.text-content strong span {
  background-color: var(--accent-color, #ee7e22);
}
.text-content span[style*=background-color],
.text-content span[style*=background] {
  padding: 0.1em 0.3em;
  border-radius: 3px;
}
.text-content ul,
.text-content ol {
  margin: 1rem 0;
  padding-left: 3rem;
}
.text-content li {
  margin-bottom: 0.5rem;
}
@media (max-width: 480px) {
  .text-content {
    font-size: 0.9rem;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.scroll-indicator:hover {
  opacity: 1;
}

.scroll-dot {
  animation: scrollDot 2s ease-in-out infinite;
}

.megastore-images {
  padding: 0;
  background: #141e4a;
  position: relative;
}

.images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .images-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.image-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.image-item:nth-child(1) {
  animation-delay: 0.1s;
}
.image-item:nth-child(2) {
  animation-delay: 0.2s;
}
.image-item:nth-child(3) {
  animation-delay: 0.3s;
}
.image-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(238, 126, 34, 0.4);
}
.image-item:hover .grid-image {
  transform: scale(1.05);
}

.grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

svg.grid-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.megastore-contact {
  padding: 3rem 0;
  background: linear-gradient(180deg, #141e4a 0%, #1a3a6e 100%);
  position: relative;
}

.contact-container {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.contact-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  opacity: 0.9;
}

.contact-form-wrapper {
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.wpcf7-form {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .wpcf7-form {
    padding: 2rem;
  }
}
.wpcf7-form .hidden-fields-container.focused {
  display: none;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  padding: 15px 0;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-list-item {
  padding: 0 10px 0 0;
}
.wpcf7-form label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wpcf7-form .wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.wpcf7-form .wpcf7-list-item .wpcf7-list-item-label a {
  color: #ffffff;
}
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
.wpcf7-form input[type=text]::placeholder,
.wpcf7-form input[type=email]::placeholder,
.wpcf7-form input[type=tel]::placeholder,
.wpcf7-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=email]:focus,
.wpcf7-form input[type=tel]:focus,
.wpcf7-form textarea:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ee7e22;
  box-shadow: 0 0 20px rgba(238, 126, 34, 0.3);
}
.wpcf7-form textarea {
  min-height: 150px;
  resize: vertical;
}
.wpcf7-form input[type=submit] {
  width: 100%;
  padding: 1.25rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #ee7e22, #ee7e22);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(238, 126, 34, 0.3);
  position: relative;
  overflow: hidden;
}
.wpcf7-form input[type=submit]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.wpcf7-form input[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(238, 126, 34, 0.5);
}
.wpcf7-form input[type=submit]:hover:before {
  width: 300px;
  height: 300px;
}
.wpcf7-form input[type=submit]:active {
  transform: translateY(0);
}

.wpcf7-response-output {
  margin: 2rem 0 0;
  padding: 1rem;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: center;
}

.wpcf7-mail-sent-ok {
  background: rgba(76, 175, 80, 0.2);
  border: 2px solid rgba(76, 175, 80, 0.5);
  color: #4caf50;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background: rgba(238, 126, 34, 0.2);
  border: 2px solid rgba(238, 126, 34, 0.5);
  color: #ee7e22;
}

.megastore-footer {
  padding: 2rem 0;
  background: #1a3a6e;
  position: relative;
}

.footer-container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (max-width: 768px) {
  .footer-content {
    gap: 0.5rem;
  }
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 480px) {
  .social-links {
    gap: 0.5rem;
  }
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.social-icon:hover {
  background: #ee7e22;
  border-color: #ee7e22;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(238, 126, 34, 0.4);
}
@media (max-width: 480px) {
  .social-icon {
    width: 36px;
    height: 36px;
  }
  .social-icon svg {
    width: 18px;
    height: 18px;
  }
}

.copyright-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  opacity: 0.8;
  margin: 0;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .copyright-text {
    font-size: 0.8rem;
  }
}

.privacy-link {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #ee7e22;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.privacy-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ee7e22;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.privacy-link:hover {
  color: rgb(241.6428571429, 153.6428571429, 81.3571428571);
}
.privacy-link:hover:after {
  width: 100%;
}
@media (max-width: 480px) {
  .privacy-link {
    font-size: 0.8rem;
  }
}

.megastore-landing svg {
  max-width: 100%;
  height: auto;
}

svg:not([width]):not([height]) {
  width: 100%;
  height: auto;
}

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

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 3rem;
}

:root {
  --brand-color: #1a3a6e;
  --accent-color: #ee7e22;
  --accent-secondary: #ee7e22;
  --white: #ffffff;
  --black: #0a0a0a;
  --gray-light: #f5f5f5;
  --gray-dark: #333333;
  --font-display: Montserrat, sans-serif;
  --font-heading: Montserrat, sans-serif;
  --font-body: Montserrat, sans-serif;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 6rem;
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*# sourceMappingURL=megastore-landing.css.map */
