/* ============================================ */
/* CONTACT HERO - SPLIT SCREEN (ABOUT PAGE STYLE) */
/* ============================================ */

.contact-hero-split {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #f8f6f2 0%, #ffffff 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  overflow: hidden;
  padding-top: 0;
  margin-top: 0;
}

/* Left Column */
.contact-hero-split-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
  overflow-y: auto;
  height: 100%;
}

.contact-hero-split-content {
  max-width: 520px;
  width: 100%;
  animation: contactSplitFadeInLeft 0.8s ease forwards;
  padding: 1rem 0;
}

@keyframes contactSplitFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-hero-split-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.contact-hero-split-dot {
  width: 7px;
  height: 7px;
  background: var(--deluxe-red);
  border-radius: 50%;
}

.contact-hero-split-badge {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-text);
}

.contact-hero-split-title {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--soft-black);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-hero-split-title span {
  color: var(--deluxe-red);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.contact-hero-split-title span::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(194, 65, 12, 0.15);
  z-index: -1;
}

.contact-hero-split-divider {
  width: 50px;
  height: 2px;
  background: var(--deluxe-red);
  margin-bottom: 1rem;
}

.contact-hero-split-description {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--gray-text);
  margin-bottom: 1.2rem;
}

/* Stats - Contact Methods */
.contact-hero-split-stats {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-hero-split-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.contact-hero-split-stat-number {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deluxe-red);
  letter-spacing: -0.01em;
}

.contact-hero-split-stat-label {
  font-size: 0.7rem;
  color: var(--gray-text);
}

/* Links */
.contact-hero-split-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.contact-hero-split-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--deluxe-red);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
}

.contact-hero-split-link svg {
  transition: transform 0.3s ease;
  width: 14px;
  height: 14px;
}

.contact-hero-split-link:hover {
  gap: 0.7rem;
  border-bottom-color: var(--deluxe-red);
}

.contact-hero-split-link:hover svg {
  transform: translateX(4px);
}

/* Right Column - Image */
.contact-hero-split-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  animation: contactSplitFadeInRight 0.8s ease forwards;
  height: 100%;
}

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

.contact-hero-split-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.contact-hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.contact-hero-split:hover .contact-hero-split-image img {
  transform: scale(1.03);
}

.contact-hero-split-image-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1rem;
  border-radius: 40px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hero-split-image-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.contact-hero-split-image-content i {
  font-size: 14px;
  color: var(--deluxe-red);
}

.contact-hero-split-image-content span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Quote on Image */
.contact-hero-split-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 0.6rem 1rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(194, 65, 12, 0.2);
}

.contact-hero-split-quote svg {
  color: var(--deluxe-red);
  width: 18px;
  height: 18px;
}

.contact-hero-split-quote p {
  font-size: 0.7rem;
  font-style: italic;
  color: var(--soft-black);
  margin: 0;
}

/* ============================================ */
/* DESKTOP RESPONSIVE */
/* ============================================ */

/* Desktop Large (1400px and above) */
@media (min-width: 1400px) {
  .contact-hero-split-left {
    padding: 0 4rem;
  }

  .contact-hero-split-content {
    max-width: 560px;
  }

  .contact-hero-split-title {
    font-size: 3rem;
  }
}

/* Desktop Standard (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .contact-hero-split-left {
    padding: 0 2.5rem;
  }

  .contact-hero-split-title {
    font-size: 2.3rem;
  }

  .contact-hero-split-description {
    font-size: 0.85rem;
  }
}

/* Desktop Small (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
  .contact-hero-split-left {
    padding: 0 2rem;
  }

  .contact-hero-split-title {
    font-size: 2rem;
  }

  .contact-hero-split-description {
    font-size: 0.8rem;
  }
}

/* ============================================ */
/* TABLET RESPONSIVE */
/* ============================================ */

@media (min-width: 769px) and (max-width: 1024px) {
  .contact-hero-split {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  .contact-hero-split-left {
    padding: 4rem 2rem 2rem;
    justify-content: center;
    text-align: center;
    height: auto;
    min-height: auto;
  }

  .contact-hero-split-content {
    max-width: 100%;
  }

  .contact-hero-split-badge {
    justify-content: center;
  }

  .contact-hero-split-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-split-stats {
    align-items: center;
  }

  .contact-hero-split-stat {
    justify-content: center;
  }

  .contact-hero-split-links {
    justify-content: center;
  }

  .contact-hero-split-right {
    height: 380px;
    min-height: 380px;
  }

  .contact-hero-split-quote {
    top: 1rem;
    right: 1rem;
  }

  .contact-hero-split-image-overlay {
    bottom: 1rem;
    left: 1rem;
  }
}

/* ============================================ */
/* MOBILE RESPONSIVE - IMAGE AS BACKGROUND */
/* ============================================ */

@media (max-width: 768px) {
  .contact-hero-split {
    overflow-x: hidden;
    max-width: 100vw;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    position: relative;
  }

  /* Set background image on the section itself */
  .contact-hero-split::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/contact/mobile-hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
  }

  /* Dark overlay for text readability */
  .contact-hero-split::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
  }

  /* Hide the right column on mobile */
  .contact-hero-split-right {
    display: none;
  }

  /* Left column takes full width with transparent background */
  .contact-hero-split-left {
    position: relative;
    z-index: 2;
    flex: none;
    width: 100%;
    padding: 70px 1rem 2rem;
    justify-content: center;
    text-align: center;
    background: transparent;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .contact-hero-split-content {
    max-width: 100%;
    padding: 0;
    color: white;
  }

  .contact-hero-split-badge {
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
  }

  .contact-hero-split-dot {
    background: var(--deluxe-red);
  }

  .contact-hero-split-title {
    color: white;
  }

  .contact-hero-split-title span {
    color: var(--deluxe-red);
  }

  .contact-hero-split-title span::before {
    background: rgba(194, 65, 12, 0.4);
  }

  .contact-hero-split-divider {
    margin-left: auto;
    margin-right: auto;
    background: var(--deluxe-red);
  }

  .contact-hero-split-description {
    color: rgba(255, 255, 255, 0.85);
  }

  .contact-hero-split-stats {
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .contact-hero-split-stat-number {
    color: var(--deluxe-red);
  }

  .contact-hero-split-stat-label {
    color: rgba(255, 255, 255, 0.7);
  }

  .contact-hero-split-link {
    color: var(--deluxe-red);
  }

  .contact-hero-split-link svg {
    stroke: var(--deluxe-red);
  }

  .contact-hero-split-stats {
    align-items: center;
  }

  .contact-hero-split-stat {
    justify-content: center;
    text-align: center;
  }

  .contact-hero-split-links {
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
  }

  .contact-hero-split-link {
    font-size: 0.7rem;
    padding: 0.35rem 0;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .contact-hero-split-left {
    padding: 60px 1rem 1.5rem;
  }

  .contact-hero-split-title {
    font-size: 1.8rem;
  }

  .contact-hero-split-description {
    font-size: 0.75rem;
  }

  .contact-hero-split-stat-number {
    font-size: 0.75rem;
  }
}

/* Extra Small Mobile (380px and below) */
@media (max-width: 380px) {
  .contact-hero-split-left {
    padding: 55px 0.8rem 1.2rem;
  }

  .contact-hero-split-title {
    font-size: 1.6rem;
  }

  .contact-hero-split-description {
    font-size: 0.7rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .contact-hero-split-content,
  .contact-hero-split-right,
  .contact-hero-split-image img {
    animation: none;
    transition: none;
  }

  .contact-hero-split:hover .contact-hero-split-image img {
    transform: none;
  }
}

/* RTL Support */
html[dir="rtl"] .contact-hero-split-title span::before {
  left: auto;
  right: 0;
}

/* RTL Support - Reverse order for contact stats */
html[dir="rtl"] .contact-hero-split-stats {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
}

html[dir="rtl"] .contact-hero-split-stat {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.8rem;
}

html[dir="rtl"] .contact-hero-split-stat-info {
  text-align: right;
}

/* For mobile RTL */
@media (max-width: 768px) {
  html[dir="rtl"] .contact-hero-split-stat {
    justify-content: center;
  }

  html[dir="rtl"] .contact-hero-split-stat-info {
    text-align: center;
  }
}

html[dir="rtl"] .contact-hero-split-links {
  flex-direction: row;
}

html[dir="rtl"] .contact-hero-split-link svg {
  transform: rotate(180deg);
}

html[dir="rtl"] .contact-hero-split-link:hover svg {
  transform: rotate(180deg) translateX(4px);
}

@media (max-width: 768px) {
  html[dir="rtl"] .contact-hero-split-title {
    text-align: center;
  }
}

/* ============================================ */
/* CONTACT FORM SECTION - FULL VIEWPORT */
/* ============================================ */

.contact-form-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background Elements */
.contact-form-bg-gradient {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(194, 65, 12, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-form-bg-shape-1 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(44, 110, 158, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
}

/* Container */
.contact-form-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Section Header */
.contact-form-header {
  text-align: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.contact-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  justify-content: center;
}

.contact-form-dot {
  width: 6px;
  height: 6px;
  background: var(--deluxe-red);
  border-radius: 50%;
}

.contact-form-badge {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-text);
}

.contact-form-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--soft-black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.contact-form-title span {
  color: var(--deluxe-red);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.contact-form-title span::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 5px;
  background: rgba(194, 65, 12, 0.15);
  z-index: -1;
}

.contact-form-divider {
  width: 50px;
  height: 2px;
  background: var(--deluxe-red);
  margin: 0 auto 0.8rem;
  border-radius: 2px;
}

.contact-form-subtitle {
  font-size: 0.85rem;
  color: var(--gray-text);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============================================ */
/* MOBILE TOGGLE BUTTONS - CIRCULAR DESIGN */
/* ============================================ */

.contact-mobile-toggle {
  display: none;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
  padding: 0 1rem;
}

.contact-toggle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.contact-toggle-btn i {
  width: 65px;
  height: 65px;
  background: rgba(194, 65, 12, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--deluxe-red);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-toggle-btn span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-text);
  transition: color 0.3s ease;
}

.contact-toggle-btn.active i {
  background: var(--deluxe-red);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(194, 65, 12, 0.3);
}

.contact-toggle-btn.active span {
  color: var(--deluxe-red);
  font-weight: 600;
}

.contact-toggle-btn:hover i {
  transform: scale(1.05);
  background: rgba(194, 65, 12, 0.15);
}

/* Mobile Close Button - AT BOTTOM */
.mobile-close-btn {
  display: none;
  width: 100%;
  padding: 12px 0;
  margin-top: 16px;
  background: rgba(194, 65, 12, 0.08);
  border-radius: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(194, 65, 12, 0.15);
}

.mobile-close-btn i {
  font-size: 0.9rem;
  color: var(--deluxe-red);
}

.mobile-close-btn span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--deluxe-red);
}

.mobile-close-btn:hover {
  background: var(--deluxe-red);
}

.mobile-close-btn:hover i,
.mobile-close-btn:hover span {
  color: white;
}

/* Grid Layout - Desktop */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  flex: 1;
  min-height: 0;
}

/* Form Column - Desktop */
.contact-form-col {
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  align-self: start;
  margin-top: 52px;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--soft-black);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  padding: 0.7rem 1rem;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  border: 1px solid var(--gray-medium);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  transition: all 0.3s ease;
  color: var(--soft-black);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--deluxe-red);
  box-shadow: 0 0 0 2px rgba(194, 65, 12, 0.1);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: rgba(194, 65, 12, 0.3);
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  background: var(--deluxe-red);
  color: white;
  border: none;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  width: 100%;
}

.contact-submit-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover {
  background: #a3340a;
  transform: translateY(-2px);
  gap: 0.7rem;
}

.contact-submit-btn:hover svg {
  transform: translateX(4px);
}

.form-note {
  font-size: 0.65rem;
  color: var(--gray-text);
  text-align: center;
  margin-top: 0.5rem;
}

/* Info Column - Desktop */
.contact-info-col {
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  align-self: start;
}

.contact-info-card {
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--soft-black);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--deluxe-red);
  display: inline-block;
  width: auto;
}

.contact-map-container {
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
}

.contact-map-container iframe {
  height: 200px;
  border: none;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  transition: all 0.3s ease;
  border: none;
}

.contact-detail-item:hover {
  background: transparent;
  transform: translateX(5px);
}

.contact-detail-item i {
  font-size: 1.1rem;
  color: var(--deluxe-red);
  width: 30px;
  margin-top: 0.1rem;
}

.contact-detail-item div {
  flex: 1;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--soft-black);
  margin-bottom: 0.2rem;
}

.contact-detail-item span {
  font-size: 0.7rem;
  color: var(--gray-text);
  line-height: 1.4;
}

/* ============================================ */
/* MOBILE STYLES (max-width: 1024px) - CENTERED */
/* ============================================ */

@media (max-width: 1024px) {
  /* Center the entire section vertically */
  .contact-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow-x: hidden;
    max-width: 100vw;
  }

  .contact-form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 1rem;
    width: 100%;
    height: auto;
    min-height: auto;
  }

  /* Show toggle buttons */
  .contact-mobile-toggle {
    display: flex;
  }

  /* Center the grid content */
  .contact-form-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  /* Card styles for mobile - centered */
  .contact-form-col,
  .contact-info-col {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
  }

  /* Hide columns by default */
  .contact-form-col {
    display: none;
  }

  .contact-form-col.active {
    display: block;
  }

  .contact-info-col {
    display: none;
  }

  .contact-info-col.active {
    display: block;
  }

  /* Show close button at bottom */
  .mobile-close-btn {
    display: flex;
  }

  /* Center header on mobile */
  .contact-form-header {
    margin-bottom: 0.5rem;
  }

  .contact-form-title {
    font-size: 1.4rem;
  }

  .contact-form-subtitle {
    font-size: 0.75rem;
  }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-mobile-toggle {
    margin: 0.5rem 0 1rem;
  }

  .contact-toggle-btn i {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .contact-toggle-btn span {
    font-size: 0.65rem;
  }

  .contact-form-col,
  .contact-info-col {
    max-width: 550px;
    padding: 1.8rem;
  }
}

/* Mobile (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .contact-mobile-toggle {
    margin: 0.5rem 0 1rem;
  }

  .contact-toggle-btn i {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .contact-toggle-btn span {
    font-size: 0.7rem;
  }

  .contact-form-col,
  .contact-info-col {
    max-width: 450px;
    padding: 1.2rem;
  }

  .mobile-close-btn {
    padding: 10px 0;
    margin-top: 14px;
  }
}

/* Small Mobile (380px - 480px) */
@media (min-width: 380px) and (max-width: 480px) {
  .contact-mobile-toggle {
    margin: 0.3rem 0 0.8rem;
    gap: 1.6rem;
  }

  .contact-toggle-btn i {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .contact-toggle-btn span {
    font-size: 0.6rem;
  }

  .contact-form-col,
  .contact-info-col {
    max-width: 95%;
    padding: 1rem;
  }

  .mobile-close-btn {
    padding: 8px 0;
    margin-top: 12px;
  }

  .mobile-close-btn i {
    font-size: 0.8rem;
  }

  .mobile-close-btn span {
    font-size: 0.65rem;
  }
}

/* Extra Small Mobile (below 380px) */
@media (max-width: 380px) {
  .contact-mobile-toggle {
    margin: 0.2rem 0 0.6rem;
    gap: 1.2rem;
  }

  .contact-toggle-btn i {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .contact-toggle-btn span {
    font-size: 0.55rem;
  }

  .contact-form-col,
  .contact-info-col {
    max-width: 95%;
    padding: 0.8rem;
  }

  .mobile-close-btn {
    padding: 8px 0;
    margin-top: 10px;
  }

  .mobile-close-btn i {
    font-size: 0.75rem;
  }

  .mobile-close-btn span {
    font-size: 0.6rem;
  }
}

/* Desktop (above 1024px) - Original layout */
@media (min-width: 1025px) {
  .contact-mobile-toggle {
    display: none;
  }

  .mobile-close-btn {
    display: none;
  }

  .contact-form-col,
  .contact-info-col {
    display: block !important;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact-form-col {
    margin-top: 52px;
  }
  .contact-details {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
  }
}

/* Desktop Large (1400px+) */
@media (min-width: 1400px) {
  .contact-form-container {
    max-width: 1400px;
    padding: 90px 4rem 2rem;
  }
  .contact-form-title {
    font-size: 2rem;
  }
  .contact-map-container iframe {
    height: 220px;
  }
  .contact-form-col {
    margin-top: 56px;
  }
  .contact-details {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
  }
}

/* Desktop Small (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
  .contact-form-container {
    max-width: 1000px;
    padding: 80px 2rem 2rem;
  }
  .contact-form-title {
    font-size: 1.6rem;
  }
  .contact-form-grid {
    gap: 1.5rem;
  }
  .contact-map-container iframe {
    height: 180px;
  }
  .contact-form-col {
    margin-top: 48px;
  }
  .contact-details {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
  }
}

/* RTL Support */
html[dir="rtl"] .contact-form-title span::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .contact-submit-btn svg {
  transform: rotate(180deg);
}

html[dir="rtl"] .contact-submit-btn:hover svg {
  transform: rotate(180deg) translateX(-4px);
}

html[dir="rtl"] .contact-detail-item {
  flex-direction: row-reverse;
}

html[dir="rtl"] .contact-detail-item:hover {
  transform: translateX(-5px);
}

html[dir="rtl"] .contact-info-card h3 {
  border-bottom-color: var(--deluxe-red);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .contact-submit-btn,
  .contact-detail-item,
  .contact-toggle-btn i,
  .mobile-close-btn {
    transition: none;
  }
  .contact-submit-btn:hover {
    transform: none;
  }
}

/* ============================================ */
/* CALL TO ACTION SECTION - Same as Products */
/* ============================================ */

.products-cta {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background Elements */
.products-cta::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(194, 65, 12, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.products-cta::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 40%;
  height: 50%;
  background: radial-gradient(
    circle,
    rgba(44, 110, 158, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
}

.products-cta-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.products-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease forwards;
}

.products-cta-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--soft-black);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.products-cta-subtitle {
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Buttons */
.products-cta-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.products-cta-btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--deluxe-red);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 2px;
  border: 1px solid transparent;
}

.products-cta-btn-primary:hover {
  background: #a3340a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(194, 65, 12, 0.3);
}

.products-cta-btn-secondary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--soft-black);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1.5px solid var(--gray-medium);
  border-radius: 2px;
}

.products-cta-btn-secondary:hover {
  border-color: var(--deluxe-red);
  color: var(--deluxe-red);
  transform: translateY(-2px);
}

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

/* ============================================ */
/* RESPONSIVE - CTA SECTION */
/* ============================================ */

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .products-cta {
    height: 100vh;
  }

  .products-cta-title {
    font-size: 1.6rem;
  }

  .products-cta-subtitle {
    font-size: 0.85rem;
  }

  .products-cta-buttons {
    gap: 1rem;
  }

  .products-cta-btn-primary,
  .products-cta-btn-secondary {
    padding: 0.75rem 1.6rem;
    font-size: 0.85rem;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .products-cta {
    height: 100vh;
    display: flex;
    align-items: center;
    overflow-x: hidden;
    max-width: 100vw;
  }

  .products-cta-container {
    padding: 0 1rem;
    width: 100%;
  }

  .products-cta-title {
    font-size: 1.4rem;
  }

  .products-cta-subtitle {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .products-cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }

  .products-cta-btn-primary,
  .products-cta-btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .products-cta-title {
    font-size: 1.3rem;
  }

  .products-cta-subtitle {
    font-size: 0.75rem;
  }
}

/* Extra Small Mobile (380px and below) */
@media (max-width: 380px) {
  .products-cta-title {
    font-size: 1.2rem;
  }
}

/* RTL Support */
html[dir="rtl"] .products-cta-btn-primary svg,
html[dir="rtl"] .products-cta-btn-secondary svg {
  transform: rotate(180deg);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .products-cta-content {
    animation: none;
  }

  .products-cta-btn-primary:hover,
  .products-cta-btn-secondary:hover {
    transform: none;
  }
}
