* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button {
  font-family: "IRANSans", sans-serif;
}

html {
  direction: rtl;
}

/* IranSans Font Face */
@font-face {
  font-family: "IRANSans";
  src: url("public/fonts/iransans/eot/IRANSansWeb.eot");
  src: url("public/fonts/iransans/eot/IRANSansWeb.eot?#iefix")
      format("embedded-opentype"),
    url("public/fonts/iransans/woff2/IRANSansWeb.woff2") format("woff2"),
    url("public/fonts/iransans/woff/IRANSansWeb.woff") format("woff"),
    url("public/fonts/iransans/ttf/IRANSansWeb.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("public/fonts/iransans/eot/IRANSansWeb_Bold.eot");
  src: url("public/fonts/iransans/eot/IRANSansWeb_Bold.eot?#iefix")
      format("embedded-opentype"),
    url("public/fonts/iransans/woff2/IRANSansWeb_Bold.woff2") format("woff2"),
    url("public/fonts/iransans/woff/IRANSansWeb_Bold.woff") format("woff"),
    url("public/fonts/iransans/ttf/IRANSansWeb_Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("public/fonts/iransans/eot/IRANSansWeb_Medium.eot");
  src: url("public/fonts/iransans/eot/IRANSansWeb_Medium.eot?#iefix")
      format("embedded-opentype"),
    url("public/fonts/iransans/woff2/IRANSansWeb_Medium.woff2") format("woff2"),
    url("public/fonts/iransans/woff/IRANSansWeb_Medium.woff") format("woff"),
    url("public/fonts/iransans/ttf/IRANSansWeb_Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("public/fonts/iransans/eot/IRANSansWeb_Light.eot");
  src: url("public/fonts/iransans/eot/IRANSansWeb_Light.eot?#iefix")
      format("embedded-opentype"),
    url("public/fonts/iransans/woff2/IRANSansWeb_Light.woff2") format("woff2"),
    url("public/fonts/iransans/woff/IRANSansWeb_Light.woff") format("woff"),
    url("public/fonts/iransans/ttf/IRANSansWeb_Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("public/fonts/iransans/eot/IRANSansWeb_UltraLight.eot");
  src: url("public/fonts/iransans/eot/IRANSansWeb_UltraLight.eot?#iefix")
      format("embedded-opentype"),
    url("public/fonts/iransans/woff2/IRANSansWeb_UltraLight.woff2")
      format("woff2"),
    url("public/fonts/iransans/woff/IRANSansWeb_UltraLight.woff") format("woff"),
    url("public/fonts/iransans/ttf/IRANSansWeb_UltraLight.ttf")
      format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("public/fonts/iransans/eot/IRANSansWeb_Black.eot");
  src: url("public/fonts/iransans/eot/IRANSansWeb_Black.eot?#iefix")
      format("embedded-opentype"),
    url("public/fonts/iransans/woff2/IRANSansWeb_Black.woff2") format("woff2"),
    url("public/fonts/iransans/woff/IRANSansWeb_Black.woff") format("woff"),
    url("public/fonts/iransans/ttf/IRANSansWeb_Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #fcc40d;
  --text-color: #333;
  --bg-color: #fff;
  --header-bg: #fff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
  font-family: "IRANSans", sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color) !important;
  line-height: 1.6;
  direction: rtl;
  text-align: right;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  direction: rtl;
  text-align: right;
}

/* Header Styles */
.header {
  background-color: var(--header-bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-direction: row-reverse;
}

/* Logo - Right Side */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  background: linear-gradient(135deg, var(--primary-color), #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation Links - Center */
.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Contact Button - Left Side */
.header-left {
  display: flex;
  align-items: center;
}

.btn-contact {
  font-family: "IRANSans", sans-serif;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(252, 196, 13, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  direction: rtl;
}

.btn-contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-contact:hover {
  background-color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 196, 13, 0.4);
  color: #000;
}

.btn-contact:active {
  transform: translateY(0);
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 80px);
}

/* Hero Section */
.bg-half-170 {
  padding: 100px 0;
  direction: rtl;
}

.d-table {
  display: table;
}

/* Hero Content Styles */
.title-heading {
  direction: rtl;
  text-align: right;
}

.heading {
  font-size: 48px;
  font-weight: bold;
  color: var(--text-color);
  line-height: 1.3;
  margin: 0;
}

/* Image Styles */

/* Mobile Responsive */
@media (max-width: 767px) {
  .bg-half-170 {
    padding: 60px 0;
  }

  .heading {
    font-size: 32px;
    text-align: center;
  }

  .title-heading {
    text-align: center;
    margin-bottom: 30px;
  }
}

.btn-primary {
  font-family: "IRANSans", sans-serif;
  background-color: var(--primary-color);
  color: #000;
  border: none;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(252, 196, 13, 0.3);
}

.btn-primary:hover {
  background-color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 196, 13, 0.4);
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-btn span {
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Sidebar Menu */
.sidebar-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85%;
  height: 100%;
  background-color: var(--header-bg);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
  direction: rtl;
}

.sidebar-menu.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.sidebar-close {
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
}

.sidebar-close span {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.sidebar-close span:nth-child(1) {
  transform: rotate(45deg);
}

.sidebar-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.sidebar-nav {
  padding: 20px 0;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-links a {
  display: block;
  padding: 15px 20px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sidebar-links a:hover {
  background-color: #f8f8f8;
  color: var(--primary-color);
  padding-right: 30px;
}

.sidebar-contact-btn {
  padding: 20px;
  border-top: 1px solid #f0f0f0;
  margin-top: 10px;
}

.btn-contact-sidebar {
  display: flex;
  font-family: "IRANSans", sans-serif;
  width: calc(100% - 40px);
  margin: 20px;
  background-color: var(--primary-color);
  color: #000;
  border: none;
  /* padding: 12px 30px; */
  font-size: 16px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(252, 196, 13, 0.3);
  height: 60px;
  width: 50%;
}

.btn-contact-sidebar .btn-contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-contact-sidebar:hover {
  background-color: #ffd700;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 196, 13, 0.4);
}

.btn-contact-sidebar:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }

  .header-center {
    display: none;
  }

  .header-left {
    display: none;
  }

  .header-content {
    justify-content: space-between;
  }

  .header-right {
    gap: 15px;
    order: 2;
    display: flex;
    align-items: center;
  }

  .header-left-mobile {
    display: flex;
    align-items: center;
    order: 1;
  }

  .btn-contact span {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .sidebar-menu {
    width: 280px;
    max-width: 90%;
  }

  .logo {
    font-size: 24px;
  }
}

/* FAQ Section - Custom Accordion */
.faq-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  direction: rtl;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 15px;
}

.faq-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.faq-highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.custom-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.accordion-header {
  width: 100%;
  padding: 20px 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: right;
  transition: background-color 0.3s ease;
  font-family: "IRANSans", sans-serif;
}

.accordion-header:hover {
  background-color: #f8f9fa;
}

.accordion-header.active {
  background-color: var(--primary-color);
  color: #000;
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-title {
  font-size: 18px;
  font-weight: 600;
  flex: 1;
  padding-left: 15px;
}

.accordion-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.accordion-header.active .accordion-icon {
  color: #000;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 25px;
}

.accordion-content.active {
  max-height: 500px;
  padding: 0 25px 20px 25px;
}

.accordion-body {
  padding-top: 15px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: right;
  direction: rtl;
}

.accordion-body strong {
  color: var(--text-color);
  font-weight: 600;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-subtitle {
    font-size: 16px;
  }

  .accordion-header {
    padding: 18px 20px;
  }

  .accordion-title {
    font-size: 16px;
  }

  .accordion-content.active {
    padding: 0 20px 18px 20px;
  }

  .accordion-body {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 24px;
  }

  .accordion-header {
    padding: 15px;
  }

  .accordion-title {
    font-size: 15px;
    padding-left: 10px;
  }

  .accordion-icon {
    width: 25px;
    height: 25px;
  }

  .accordion-content.active {
    padding: 0 15px 15px 15px;
  }
}

/* Guaranteed Products / Brands Section */

.guaranteed-logo {
  max-width: 200px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.guaranteed-logo:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive adjustments for brand logos */
@media (max-width: 991px) {
  .guaranteed-logo {
    max-width: 150px;
    max-height: 100px;
  }
}

@media (max-width: 767px) {
  .guaranteed-logo {
    max-width: 180px;
    max-height: 120px;
  }

  #brands .row > div {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .guaranteed-logo {
    max-width: 160px;
    max-height: 100px;
  }
}

/* Contact Section - Custom Styles */
.contact-section {
  padding: 80px 0;
  background-color: #fff;
  direction: rtl;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.contact-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(252, 196, 13, 0.2);
  border-color: var(--primary-color);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: rgba(252, 196, 13, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  padding: 15px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary-color);
  fill: none;
  stroke-width: 2;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: rgba(252, 196, 13, 0.3);
}

.contact-content {
  direction: rtl;
}

.contact-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 8px;
}

.contact-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
  display: inline-block;
}

.contact-link:hover {
  color: #ffd700;
}

.contact-address {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-postal {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.contact-postal strong {
  color: var(--text-color);
}

/* Contact Form */
.contact-form-wrapper {
  margin: 60px 0;
}

.contact-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-form-box {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 30px;
  text-align: right;
}

.custom-contact-form {
  direction: rtl;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
  text-align: right;
}

.required {
  color: #dc3545;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  z-index: 1;
}

.textarea-icon {
  top: 20px;
  transform: none;
}

.form-input {
  width: 100%;
  padding: 12px 50px 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: "IRANSans", sans-serif;
  transition: all 0.3s ease;
  background: #fff;
  direction: rtl;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(252, 196, 13, 0.1);
}

.form-textarea {
  padding: 15px 50px 15px 15px;
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 15px 30px;
  background: var(--primary-color);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  font-family: "IRANSans", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(252, 196, 13, 0.3);
  margin-top: 10px;
}

.submit-btn:hover {
  background: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 196, 13, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.contact-image {
  text-align: center;
}

.contact-img {
  max-width: 100%;
  height: auto;
}

/* Map Container */
.map-container {
  margin-top: 60px;
}

.map-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.map-navigation-btn {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-family: "IRANSans", sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.map-btn:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Toast Notification */
.custom-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(400px);
  transition: all 0.3s ease;
  max-width: 400px;
}

.custom-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  gap: 15px;
}

.toast-icon {
  width: 40px;
  height: 40px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.toast-message {
  flex: 1;
  direction: rtl;
}

.toast-message strong {
  display: block;
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 5px;
}

.toast-message p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.toast-close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.toast-close:hover {
  color: var(--text-color);
}

.error-message {
  background: #fee;
  color: #c33;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
  direction: rtl;
  text-align: right;
}

.error-message.show {
  display: block;
}

.success-message {
  background: #efe;
  color: #28a745;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
  direction: rtl;
  text-align: right;
}

.success-message.show {
  display: block;
}

/* Responsive Contact Section */
@media (max-width: 991px) {
  .contact-form-container {
    grid-template-columns: 1fr;
  }

  .contact-image {
    order: -1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .contact-form-box {
    padding: 30px 20px;
  }

  .form-title {
    font-size: 24px;
  }

  .map-iframe {
    height: 350px;
  }

  .map-navigation-btn {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
  }

  .custom-toast {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 25px 20px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
  }

  .contact-form-box {
    padding: 25px 15px;
  }

  .map-iframe {
    height: 300px;
  }
}

/* Footer - Custom Styles */
.custom-footer {
  background-color: #000;
  color: #fff;
  padding: 60px 0;
  direction: rtl;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  max-width: 800px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-description {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  text-align: justify;
  margin: 0;
}

.footer-brand {
  color: var(--primary-color);
  font-weight: bold;
}

.footer-bottom {
  background-color: #111;
  border-top: 1px solid #333;
  padding: 20px 0;
  direction: rtl;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  font-size: 14px;
  color: #999;
}

/* Responsive Footer */
@media (max-width: 767px) {
  .custom-footer {
    padding: 40px 0;
  }

  .footer-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-logo img {
    height: 60px;
  }

  .footer-copyright p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .custom-footer {
    padding: 30px 0;
  }

  .footer-description {
    font-size: 13px;
  }

  .footer-logo img {
    height: 50px;
  }
}
