:root {
  --primary-dark: #1a1a2e;
  --primary-gold: #ffd700;
  --primary-blue: #4169e1;
  --text-primary-yellow: #ffd700;
  --text-light: #ffffff;
  --text-dark: var(--primary-dark);
  --gradient-gold: linear-gradient(135deg, #ffd700, #ffed4e);
  --gradient-blue: linear-gradient(135deg, #4169e1, #1e90ff);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Enhanced Navbar Styles */
.navbar-custom {
  background: var(--primary-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(221, 189, 127, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.1);
}

.navbar-custom.scrolled {
  background: var(--primary-dark);
  box-shadow: 0 10px 40px rgba(26, 26, 46, 0.2);
}

.logo {
  width: 180px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.navbar-brand:hover {
  color: #fff !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 12px 20px !important;
  margin: 0 5px;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(221, 189, 127, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.navbar-nav .nav-link:hover::before {
  left: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-gold) !important;
  background: rgba(221, 189, 127, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(221, 189, 127, 0.2);
}

.dropdown-menu {
  background: var(--primary-dark);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(221, 189, 127, 0.2);
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(26, 26, 46, 0.3);
  margin-top: 10px;
  padding: 15px 0;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 25px;
  transition: all 0.3s ease;
  border-radius: 0;
}

.dropdown-item:hover {
  background: var(--primary-blue);
  color: var(--primary-gold);
  transform: translateX(5px);
}

/* Dropdown Submenu Styling */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  border-radius: 10px;
  min-width: 200px;
  display: none !important;
}

.dropdown-submenu .dropdown-menu.show {
  display: block !important;
}

.dropdown-submenu .dropdown-toggle::after {
  transform: rotate(-90deg);
  float: right;
  margin-top: 8px;
}

.dropdown-submenu .dropdown-toggle {
  position: relative;
}

/* Mobile dropdown submenu adjustments */
@media (max-width: 991px) {
  .dropdown-submenu .dropdown-menu {
    position: static !important;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: var(--primary-dark);
    color: var(--primary-gold);
    border: none;
    border-radius: 8px;
    margin-left: 15px;
    margin-top: 5px;
    left: auto !important;
    top: auto !important;
  }

  .dropdown-submenu .dropdown-menu.show {
    display: block !important;
  }

  .dropdown-submenu .dropdown-toggle::after {
    transform: rotate(0deg);
    float: none;
    margin-top: 0;
  }

  .dropdown-item {
    color: var(--primary-gold) !important;
  }

  .dropdown-item:hover {
    color: var(--primary-gold) !important;
  }
}

.language-toggle {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d03f 100%);
  color: var(--primary-dark);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(221, 189, 127, 0.3);
}

.language-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.language-toggle:hover::before {
  width: 100px;
  height: 100px;
}

.language-toggle:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(221, 189, 127, 0.4);
}

.navbar-toggler {
  border: none !important;
  padding: 8px 12px !important;
  background: rgba(221, 189, 127, 0.1) !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
  outline: none !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(221, 189, 127, 0.3) !important;
  outline: none !important;
}

.navbar-toggler:hover {
  background: rgba(221, 189, 127, 0.2) !important;
  transform: scale(1.02);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28221, 189, 127, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 24px !important;
  height: 24px !important;
}

/* Enhanced toggler states */
.navbar-toggler[aria-expanded="true"] {
  background: rgba(221, 189, 127, 0.25) !important;
  transform: rotate(90deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28221, 189, 127, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 18L18 6M6 6l12 12'/%3e%3c/svg%3e") !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-blue) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
}

/* Hero Slider Styles */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 0.3;
}

.hero-slider .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(6, 6, 6, 0.8) 0%,
    rgba(55, 105, 131, 0.7) 100%
  );
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-btn.active,
.slider-btn:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: scale(1.2);
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ddbd7f" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
  z-index: 2;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.hero-content {
  position: relative;
  z-index: 4;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: rgba(221, 189, 127, 0.2);
  border: 1px solid var(--primary-gold);
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 1.5rem;
  animation: slideInUp 1s ease-out;
}

.hero-badge span {
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  animation: slideInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--primary-gold);
  margin-bottom: 2rem;
  animation: slideInUp 1s ease-out 0.4s both;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  animation: slideInUp 1s ease-out 0.6s both;
}

.services-list {
  list-style: none;
  margin-bottom: 3rem;
}

.services-list li {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  opacity: 0;
  animation: slideInLeft 0.8s ease-out forwards;
  display: flex;
  align-items: center;
}

.services-list li:nth-child(1) {
  animation-delay: 0.8s;
}
.services-list li:nth-child(2) {
  animation-delay: 1s;
}
.services-list li:nth-child(3) {
  animation-delay: 1.2s;
}
.services-list li:nth-child(4) {
  animation-delay: 1.4s;
}

.services-list i {
  color: var(--primary-gold);
  margin-right: 15px;
  font-size: 1.2rem;
  width: 20px;
}

/* Visa Services Grid */
.visa-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 2rem;
  animation: slideInUp 1s ease-out 1.4s both;
}

.visa-service-card {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(221, 189, 127, 0.3);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  gap: 10px;
}

.visa-service-card:hover {
  background: rgba(221, 189, 127, 0.2);
  transform: translateY(-2px);
  color: var(--text-light);
  box-shadow: 0 5px 20px rgba(221, 189, 127, 0.3);
}

.visa-service-card i {
  color: var(--primary-gold);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideInUp 1s ease-out 1.6s both;
}

.cta-button {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-button.primary {
  background: var(--gradient-gold);
  color: var(--primary-dark);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(221, 189, 127, 0.4);
  color: var(--primary-dark);
}

.cta-button.secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary-gold);
}

.cta-button.secondary:hover {
  background: var(--primary-gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Hero Image Section */
.hero-image {
  position: relative;
  height: 550px;
  z-index: 4;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(221, 189, 127, 0.3);
  border-radius: 20px;
  padding: 25px;
  color: var(--text-light);
  text-align: center;
  transition: all 0.3s ease;
  animation: floatUp 6s ease-in-out infinite;
}

.floating-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 26, 46, 0.2);
}

.floating-card:first-child {
  top: 50px;
  left: 50px;
  width: 200px;
}

.floating-card.card-2 {
  top: 70px;
  right: 20px;
  width: 180px;
  animation-delay: 2s;
}

.floating-card.card-3 {
  top: 320px;
  right: 60px;
  width: 160px;
  animation-delay: 4s;
}

.floating-card.card-4 {
  bottom: 50px;
  left: 80px;
  width: 160px;
  animation-delay: 6s;
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 15px;
}

.floating-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-light);
}

.floating-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Our Company Section */
.our-company-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.company-gallery {
  margin-bottom: 4rem;
}

.company-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 300px;
}

.company-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.company-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.company-card:hover .company-image img {
  transform: scale(1.1);
}

.company-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(26, 26, 46, 0.8) 0%,
    rgba(221, 189, 127, 0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.company-card:hover .company-overlay {
  opacity: 1;
}

.company-content {
  text-align: center;
  color: white;
  padding: 20px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.company-card:hover .company-content {
  transform: translateY(0);
}

.company-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-gold);
}

.company-content p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

/* Company Stats */
.company-stats {
  background: rgba(26, 26, 46, 0.05);
  border-radius: 20px;
  padding: 3rem 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

/* Company Gallery Section */
.company-gallery-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.company-images-grid {
  margin-top: 2rem;
}

.company-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 150px;
  background: #fff;
}

.company-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.company-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.company-image-card:hover img {
  transform: scale(1.1);
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--primary-gold);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(221, 189, 127, 0.2);
  height: 100%;
  opacity: 0;
  transform: translateY(50px);
}

.feature-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 26, 46, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.feature-description {
  color: #666;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--primary-dark);
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="faq-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ddbd7f" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23faq-pattern)"/></svg>');
  pointer-events: none;
}

.faq-content {
  position: relative;
  z-index: 2;
}

.faq-section .section-title {
  color: var(--text-light);
  text-align: left;
  margin-bottom: 1rem;
}

.faq-section .section-title::after {
  left: 0;
  transform: none;
}

.faq-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* FAQ Search */
.faq-search {
  position: relative;
  margin-bottom: 3rem;
}

.faq-search input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(221, 189, 127, 0.3);
  border-radius: 50px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-search input:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.15);
}

.faq-search input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.faq-search i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-gold);
  font-size: 1.1rem;
}

/* FAQ Image */
.faq-image {
  position: relative;
  margin-bottom: 3rem;
}

.faq-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid rgba(221, 189, 127, 0.3);
}

/* Enhanced Accordion */
.accordion {
  margin-top: 3rem;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(221, 189, 127, 0.3);
  margin-bottom: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.accordion-item:hover {
  border-color: rgba(221, 189, 127, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.2);
}

.accordion-button {
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  border: none;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  width: 100%;
  text-align: left;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button:not(.collapsed) {
  background: rgba(221, 189, 127, 0.2);
  color: var(--primary-gold);
}

.accordion-button::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  transition: transform 0.3s ease;
  color: var(--primary-gold);
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* FAQ Icons */
.faq-icon {
  width: 40px;
  height: 40px;
  background: rgba(221, 189, 127, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.accordion-body {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-top: 1px solid rgba(221, 189, 127, 0.2);
}

.accordion-body span {
  display: block;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* FAQ Tags */
.faq-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tag {
  background: rgba(221, 189, 127, 0.2);
  color: var(--primary-gold);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(221, 189, 127, 0.3);
}

/* FAQ Contact Box */
.faq-contact-box {
  background: var(--gradient-gold);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.faq-contact-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>');
  pointer-events: none;
}

.faq-contact-box h3 {
  color: var(--primary-dark);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.faq-contact-box p {
  color: rgba(6, 6, 6, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.faq-contact-box .cta-button {
  background: var(--primary-dark);
  color: var(--text-light);
  font-size: 1.1rem;
  padding: 15px 35px;
}

.faq-contact-box .cta-button:hover {
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.3);
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-contact-box {
    padding: 2rem;
  }

  .faq-contact-box h3 {
    font-size: 1.5rem;
  }

  .floating-card {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button {
    text-align: center;
    justify-content: center;
  }
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 60px 0 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ddbd7f" opacity="0.05"/></svg>');
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--primary-gold);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.footer-title::before {
  content: "👑";
  font-size: 1.2rem;
  margin-right: 10px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 8px;
}

.footer-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
}

.footer-links a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(221, 189, 127, 0.1);
  color: var(--text-light);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(221, 189, 127, 0.2);
}

.footer-social a:hover {
  background: var(--primary-gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(221, 189, 127, 0.3);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 25px 0;
  border-top: 1px solid rgba(221, 189, 127, 0.2);
  text-align: center;
  background: rgba(26, 26, 46, 0.2);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.designer-credit {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer-section {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .footer-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .input-group {
    flex-direction: column;
    border-radius: 15px;
  }

  .newsletter-input {
    margin-bottom: 0;
    border-radius: 15px 15px 0 0;
  }

  .newsletter-btn {
    border-radius: 0 0 15px 15px;
  }
}

/* RTL Support for Footer */
[dir="rtl"] .footer-links a:hover {
  transform: translateX(-5px);
}

[dir="rtl"] .footer-title::before {
  margin-right: 0;
  margin-left: 10px;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  color: white;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .hero-section {
    min-height: 90vh;
    padding: 100px 0 50px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .floating-card {
    padding: 20px;
  }

  .floating-card:first-child {
    width: 180px;
  }

  .floating-card.card-2 {
    width: 160px;
  }

  .floating-card.card-3 {
    width: 140px;
    top: 280px;
  }

  .floating-card.card-4 {
    width: 140px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    min-height: 100vh;
    padding: 80px 0 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .services-list {
    margin-bottom: 2rem;
  }

  .services-list li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .visa-services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 1.5rem;
  }

  .visa-service-card {
    padding: 10px 16px;
    font-size: 0.85rem;
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
    gap: 15px;
  }

  .hero-image {
    height: 450px;
    margin-top: 30px;
  }

  .floating-card {
    position: relative;
    display: inline-block;
    margin: 10px;
    animation: none;
    transform: none !important;
    width: calc(50% - 20px) !important;
  }

  .floating-card.card-2 {
    top: auto;
    right: auto;
  }

  .floating-card.card-3 {
    top: auto;
    right: auto;
  }

  .floating-card:first-child,
  .floating-card.card-2,
  .floating-card.card-3,
  .floating-card.card-4 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 30px;
    min-height: 100vh;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    padding: 8px 16px;
    margin-bottom: 1rem;
  }

  .hero-badge span {
    font-size: 0.85rem;
  }

  .services-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0;
  }

  .services-list li {
    font-size: 0.9rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    margin-bottom: 0.8rem;
    padding: 8px 0;
  }

  .services-list i {
    font-size: 1rem;
    margin-right: 10px;
    width: 16px;
  }

  .visa-services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 1.5rem;
  }

  .visa-service-card {
    padding: 10px 15px;
    font-size: 0.8rem;
    justify-content: center;
    border-radius: 25px;
  }

  .visa-service-card i {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-button {
    width: 100%;
    max-width: 280px;
    padding: 12px 25px;
    font-size: 0.9rem;
    justify-content: center;
  }

  .hero-image {
    height: auto;
    padding: 20px 0;
    text-align: center;
  }

  .floating-card {
    width: 100% !important;
    max-width: 300px;
    margin: 10px auto;
    display: block;
    padding: 20px;
  }

  .card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .floating-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .floating-card p {
    font-size: 0.9rem;
  }

  .slider-nav {
    bottom: 15px;
    padding: 8px 15px;
    gap: 8px;
  }

  .slider-btn {
    width: 10px;
    height: 10px;
  }

  .navbar-nav {
    text-align: center;
    padding: 20px 0;
  }

  .navbar-nav .nav-link {
    padding: 10px 15px !important;
    margin: 5px 0;
    font-size: 1rem;
    color: var(--primary-gold) !important;
  }

  .navbar-collapse {
    background: var(--primary-dark);
    color: var(--primary-gold);
    border-radius: 15px;
    margin-top: 15px;
    padding: 20px;
    border: 1px solid var(--primary-gold);
    backdrop-filter: blur(10px);
  }

  .language-toggle {
    margin-top: 15px;
    width: 100%;
    max-width: 200px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }

  /* Our Company Responsive */
  .our-company-section {
    padding: 60px 0;
  }

  .company-card {
    height: 250px;
    margin-bottom: 1rem;
  }

  .company-content h4 {
    font-size: 1.1rem;
  }

  .company-content p {
    font-size: 0.8rem;
  }

  .company-stats {
    padding: 2rem 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-icon {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  /* Company Gallery Responsive */
  .company-gallery-section {
    padding: 40px 0;
  }

  .company-image-card {
    height: 120px;
  }

  .company-images-grid .row {
    margin: 0 -5px;
  }

  .company-images-grid .row > * {
    padding: 0 5px;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 40px 0 20px;
    min-height: 90vh;
  }

  .container {
    padding: 0 15px;
  }

  /* Company Gallery Extra Small */
  .company-gallery-section {
    padding: 30px 0;
  }

  .company-image-card {
    height: 100px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    margin-top: 30px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .hero-badge {
    position: relative;
    top: 35px;
    left: 10px;
    padding: 6px 12px;
    margin-bottom: 0.8rem;
  }

  .hero-badge span {
    font-size: 0.8rem;
  }

  .services-list {
    margin-bottom: 1.2rem;
  }

  .services-list li {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    padding: 6px 0;
  }

  .services-list i {
    font-size: 0.9rem;
    margin-right: 8px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.85rem;
    max-width: 250px;
  }

  .floating-card {
    padding: 15px;
    max-width: 280px;
    margin: 8px auto;
  }

  .card-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .floating-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .floating-card p {
    font-size: 0.85rem;
  }

  .slider-nav {
    bottom: 10px;
    padding: 6px 12px;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .navbar-toggler {
    padding: 6px 10px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero-section {
    padding: 30px 0 15px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .services-list li {
    font-size: 0.8rem;
  }

  .cta-button {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .floating-card {
    max-width: 260px;
    padding: 12px;
  }

  .navbar-brand {
    font-size: 1.3rem;
  }
}

/* RTL Support */
[dir="rtl"] {
  font-family: "Poppins", "Tajawal", sans-serif;
}

[dir="rtl"] .services-list i {
  margin-right: 0;
  margin-left: 10px;
}

[dir="rtl"] .navbar-nav .nav-link {
  margin: 0 10px;
}

/* Text Color Utilities */
.text-primary-dark {
  color: var(--primary-dark) !important;
}

.bg-primary-dark {
  background-color: var(--primary-dark) !important;
}

/* Loading Animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(221, 189, 127, 0.3);
  border-top: 3px solid var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* RTL Support for Enhanced Hero */
[dir="rtl"] .hero-content {
  margin-right: 0;
  margin-left: 20px;
}

[dir="rtl"] .hero-subtitle::before {
  left: auto;
  right: -20px;
}

[dir="rtl"] .hero-title::after {
  left: auto;
  right: 0;
}

[dir="rtl"] .services-list i {
  margin-right: 0;
  margin-left: 20px;
}

[dir="rtl"] .services-list li:hover {
  transform: translateX(-10px);
}

[dir="rtl"] .hero-badge {
  flex-direction: row-reverse;
}

[dir="rtl"] .cta-button {
  flex-direction: row-reverse;
}
[dir="rtl"] .faq-section .section-title {
  text-align: right;
}
[dir="rtl"] .faq-section .section-title::after {
  left: auto;
  right: 0;
}
[dir="rtl"] .faq-subtitle {
  text-align: right;
}

[dir="rtl"] .footer-subtitle::after {
  left: auto;
  right: 0;
}

[dir="rtl"] .visa-service-card {
  direction: rtl;
}

[dir="rtl"] .visa-service-card i {
  margin-left: 10px;
  margin-right: 0;
}

[dir="rtl"] .company-content {
  text-align: center;
}

[dir="rtl"] .company-stats {
  direction: rtl;
}
/* Performance Optimizations */
.hero-section,
.hero-slider,
.hero-bg-animation,
.floating-card {
  will-change: transform;
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  .hero-section *,
  .floating-card,
  .hero-bg-animation,
  .hero-content {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-slider .slide {
    transition: opacity 0.3s ease !important;
  }
}
