/* === contact.css === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #0a0a0a;
  --secondary-dark: #111111;
  --accent-gold: #c9a87c;
  --accent-gold-light: #dcc9b0;
  --accent-beige: #ebe4d9;
  --text-primary: #f0ebe4;
  --text-secondary: #ccc5bd;
  --border-color: rgba(235, 228, 217, 0.08);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-alt: 'Montserrat', sans-serif;
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--primary-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ===== LOGO IMAGE STYLES ===== */
.logo-img {
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
}

/* Preloader Logo */
.preloader-logo-img {
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* Header Logo */
.header-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  margin-right: 8px;
}

/* ===== HERO LOGO ===== */
.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-logo-display {
  width: 380px;
  height: auto;
  max-width: 90%;
  filter: drop-shadow(0 0 60px rgba(201, 168, 124, 0.2)) 
          drop-shadow(0 0 120px rgba(201, 168, 124, 0.1));
  animation: heroLogoFloat 4s ease-in-out infinite;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-logo-display:hover {
  transform: scale(1.03) rotate(-1deg);
}

.hero-logo-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(201, 168, 124, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
  z-index: 1;
}

.hero-logo-glow-secondary {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 124, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulseSecondary 4s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.02); }
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

@keyframes glowPulseSecondary {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0.8; }
}

/* ===== FOOTER LOGO ===== */
.footer-logo-wrapper {
  margin-bottom: 15px;
}

.footer-logo-image {
  width: 120px;
  height: auto;
  filter: brightness(0.9) drop-shadow(0 0 20px rgba(201, 168, 124, 0.1));
  transition: var(--transition);
}

.footer-logo-image:hover {
  transform: scale(1.05);
  filter: brightness(1) drop-shadow(0 0 30px rgba(201, 168, 124, 0.2));
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-beige);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-logo-text span {
  color: var(--accent-gold);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-beige);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.preloader-logo span {
  color: var(--accent-gold);
}

.preloader-bar {
  width: 200px;
  height: 1px;
  background: var(--border-color);
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-gold);
  animation: preloaderSlide 1.5s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

.preloader-content p {
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-alt);
}

/* Custom cursor */
.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--accent-gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}

.cursor-outline {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(201, 168, 124, 0.3);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 32px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-beige);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
  text-decoration: none;
}

.logo-icon {
  color: var(--accent-gold);
  font-size: 1rem;
}

.logo span {
  color: var(--accent-gold);
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-family: var(--font-alt);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.4s ease;
}

nav a:hover {
  color: var(--accent-beige);
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: var(--accent-beige);
}

nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  color: var(--accent-beige);
  font-size: 1.3rem;
  cursor: pointer;
}

/* Contact Hero */
.contact-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 60px 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(201, 168, 124, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(201, 168, 124, 0.02) 0%, transparent 50%);
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  max-width: 700px;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.tag-line {
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
}

.tag-text {
  font-family: var(--font-alt);
  font-size: 0.7rem;
  color: var(--accent-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 30px;
  color: var(--accent-beige);
}

.contact-hero h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.contact-hero h1 .line:nth-child(1) { animation-delay: 0.2s; }
.contact-hero h1 .line:nth-child(2) { animation-delay: 0.4s; }
.contact-hero h1 .line:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-hero h1 .highlight {
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 600;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero-stats {
  display: flex;
  gap: 50px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-beige);
  line-height: 1;
}

.hero-stat .stat-label {
  display: block;
  font-family: var(--font-alt);
  font-size: 0.6rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Section Common */
.section-label {
  font-family: var(--font-alt);
  font-size: 0.7rem;
  color: var(--accent-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

/* Contact Grid */
.contact-grid {
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-form-container {
  padding: 60px;
  background: rgba(10, 10, 10, 0.3);
  border: 1px solid var(--border-color);
}

.form-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--accent-beige);
  margin-bottom: 40px;
  line-height: 1.1;
}

.form-group {
  margin-bottom: 30px;
}

.form-label {
  display: block;
  font-family: var(--font-alt);
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.required {
  color: var(--accent-gold);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  transition: var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.4;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-bottom-color: var(--accent-gold);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c9a87c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 20px;
  padding-right: 30px;
  cursor: pointer;
}

.form-select option {
  background: var(--primary-dark);
  color: var(--text-primary);
}

.error-message {
  color: var(--accent-gold);
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
  font-weight: 300;
}

.error-message.show {
  display: block;
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-bottom-color: var(--accent-gold);
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  padding: 18px 40px;
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  font-family: var(--font-alt);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 124, 0.08), transparent);
  transition: left 0.7s ease;
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button:hover {
  background: rgba(201, 168, 124, 0.05);
  letter-spacing: 3px;
}

.submit-button i {
  transition: transform 0.4s ease;
}

.submit-button:hover i {
  transform: translateX(5px);
}

.success-message {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 20px;
  margin-top: 30px;
  background: rgba(201, 168, 124, 0.08);
  border: 1px solid var(--accent-gold);
  color: var(--accent-beige);
  font-weight: 300;
}

.success-message.show {
  display: flex;
  animation: fadeIn 0.5s ease;
}

.success-message i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Contact Info */
.contact-info-container {
  padding: 60px;
  background: rgba(10, 10, 10, 0.3);
  border: 1px solid var(--border-color);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0;
}

.contact-method {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.method-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-gold);
  font-size: 1.2rem;
  transition: var(--transition);
}

.contact-method:hover .method-icon {
  border-color: var(--accent-gold);
}

.method-content {
  flex: 1;
}

.method-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-beige);
  margin-bottom: 4px;
}

.method-detail {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}

.method-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-gold);
  text-decoration: none;
  font-family: var(--font-alt);
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-top: 8px;
  transition: var(--transition);
}

.method-link i {
  transition: transform 0.3s;
}

.method-link:hover {
  color: var(--accent-beige);
}

.method-link:hover i {
  transform: translateX(5px);
}

.contact-social {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.social-label {
  display: block;
  font-family: var(--font-alt);
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.social-icons a:hover {
  border-color: var(--accent-gold);
  color: var(--accent-beige);
  transform: translateY(-3px);
}

/* Process Section */
.contact-process {
  padding: 120px 60px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  max-width: 100%;
  background: rgba(235, 228, 217, 0.01);
}

.process-container {
  max-width: 1400px;
  margin: 0 auto;
}

.process-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--accent-beige);
  line-height: 1.05;
  margin-bottom: 20px;
}

.process-sub {
  color: var(--text-secondary);
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 25px;
  padding: 30px;
  border: 1px solid var(--border-color);
  background: rgba(10, 10, 10, 0.3);
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.5;
}

.step-content {
  flex: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-beige);
  margin-bottom: 10px;
}

.step-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 10px;
}

.step-time {
  display: inline-block;
  font-family: var(--font-alt);
  font-size: 0.7rem;
  color: var(--accent-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* FAQ Section */
.faq-section {
  padding: 120px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--accent-beige);
  line-height: 1.05;
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 60px;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-beige);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-question i {
  color: var(--accent-gold);
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 15px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

/* CTA Section */
.cta-section {
  padding: 120px 60px;
  border-top: 1px solid var(--border-color);
  max-width: 1400px;
  margin: 0 auto;
}

.cta-container {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--accent-beige);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 35px;
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  text-decoration: none;
  font-family: var(--font-alt);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid var(--accent-gold);
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-gold);
}

/* Footer */
footer {
  padding: 60px;
  border-top: 1px solid var(--border-color);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  text-align: center;
}

footer p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.75rem;
  opacity: 0.5;
  font-style: italic;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  border-color: var(--accent-gold);
  color: var(--accent-beige);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
  .contact-hero h1 {
    font-size: 4.5rem;
  }
  .process-title,
  .faq-title {
    font-size: 3.5rem;
  }
  .hero-logo-display {
    width: 300px;
  }
  .hero-logo-glow {
    width: 450px;
    height: 450px;
  }
  .hero-logo-glow-secondary {
    width: 330px;
    height: 330px;
  }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-visual {
    height: 300px;
  }
  .hero-logo-display {
    width: 260px;
  }
  .hero-logo-glow {
    width: 380px;
    height: 380px;
  }
  .hero-logo-glow-secondary {
    width: 280px;
    height: 280px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 30px 80px;
  }
  .site-header {
    padding: 20px 30px;
  }
  .contact-grid {
    padding: 60px 30px;
  }
  .contact-form-container,
  .contact-info-container {
    padding: 40px 30px;
  }
  .contact-process {
    padding: 80px 30px;
  }
  .faq-section {
    padding: 80px 30px;
  }
  .cta-section {
    padding: 80px 30px;
  }
  .contact-hero h1 {
    font-size: 3.2rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .form-title {
    font-size: 2.2rem;
  }
  .process-title,
  .faq-title {
    font-size: 2.8rem;
  }
  .cta-content h2 {
    font-size: 2.5rem;
  }
  footer {
    padding: 40px 30px;
  }
  .header-logo-img {
    width: 28px;
    height: 28px;
  }
  .hero-logo-display {
    width: 220px;
  }
  .hero-logo-glow {
    width: 320px;
    height: 320px;
  }
  .hero-logo-glow-secondary {
    width: 240px;
    height: 240px;
  }
  .footer-logo-image {
    width: 90px;
  }
  .preloader-logo-img {
    width: 90px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }
  .form-title {
    font-size: 1.8rem;
  }
  .process-title,
  .faq-title {
    font-size: 2.2rem;
  }
  .cta-content h2 {
    font-size: 2rem;
  }
  .process-step {
    flex-direction: column;
  }
  .hero-logo-display {
    width: 180px;
  }
  .hero-logo-glow {
    width: 260px;
    height: 260px;
  }
  .hero-logo-glow-secondary {
    width: 190px;
    height: 190px;
  }
  .preloader-logo-img {
    width: 70px;
  }
  .footer-logo-image {
    width: 70px;
  }
}