/* =============================================
   EMIRAT BUSINESS CENTER - Design System
   ============================================= */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --rouge: #c0392b;
  --rouge-dark: #96281b;
  --rouge-light: #e74c3c;
  --bleu: #1a3a5c;
  --bleu-mid: #1565c0;
  --bleu-light: #2196f3;
  --bleu-teal: #0097a7;
  --or: #f39c12;
  --blanc: #ffffff;
  --gris-clair: #f8f9fa;
  --gris: #6c757d;
  --noir: #111827;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-rouge: 0 8px 32px rgba(192, 57, 43, 0.3);
  --radius: 12px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-dark);
  background: var(--blanc);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

img {
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar-emirat {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}

.brand-logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--rouge);
  letter-spacing: -1px;
  position: relative;
}

.brand-logo-text span {
  color: var(--bleu);
}
.brand-sub {
  font-size: 0.6rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gris);
  display: block;
  text-transform: uppercase;
  margin-top: -4px;
}

.nav-link-custom {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
  position: relative;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--rouge);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 60%;
}

.nav-link-custom:hover {
  color: var(--rouge) !important;
}
.nav-link-custom.active {
  color: var(--rouge) !important;
}

.navbar-collapse.collapse.show {
  margin-bottom: 15px;
}

.navbar-collapse.collapse.show .nav-item.ms-2 {
  width: 150px;
}

.nav-cta {
  background: var(--rouge) !important;
  color: var(--blanc) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600;
  transition: var(--transition);
}
.nav-cta.active {
  color: var(--blanc) !important;
}

.nav-cta:hover {
  background: var(--rouge-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-rouge);
  color: var(--blanc) !important;
}

.nav-cta::after {
  display: none;
}

.top-bar {
  background: var(--rouge);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  padding: 6px 0;
  font-weight: 400;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}
.top-bar a:hover {
  color: #fff;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: linear-gradient(
    135deg,
    #0d1b2a 0%,
    #1a3a5c 40%,
    #1565c0 80%,
    #0097a7 100%
  );
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.hero-blob-1 {
  background: var(--rouge);
  top: -200px;
  right: -100px;
}

.hero-blob-2 {
  background: var(--or);
  bottom: -200px;
  left: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--or);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--blanc);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--or);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}

.btn-rouge {
  background: var(--rouge);
  color: var(--blanc);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
}

.btn-rouge:hover {
  background: var(--rouge-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-rouge);
  color: var(--blanc);
}

.btn-outline-blanc {
  background: transparent;
  color: var(--blanc);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
}

.btn-outline-blanc:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--blanc);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: left;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blanc);
  line-height: 1;
}
.stat-num span {
  color: var(--or);
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
}

.hero-card-float {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: absolute;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-card-float.card-1 {
  top: 20px;
  right: -20px;
}
.hero-card-float.card-2 {
  bottom: 60px;
  left: -30px;
  animation-delay: -2s;
}

.hero-main-img {
  border-radius: var(--radius-lg);
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.section {
  padding: 100px 0;
}
.section-sm {
  padding: 60px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 57, 43, 0.08);
  color: var(--rouge);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  font-weight: 300;
}

.service-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-card-body {
  padding: 28px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rouge);
  font-weight: 600;
  font-size: 0.88rem;
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 10px;
  color: var(--rouge-dark);
}

/* =============================================
   WHY US
   ============================================= */
.why-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(192, 57, 43, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  margin-bottom: 20px;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(6px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(192, 57, 43, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(192, 57, 43, 0.3);
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--blanc);
  font-family: "Outfit", sans-serif;
}

.feature-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  font-weight: 300;
}

/* =============================================
   DESTINATIONS
   ============================================= */
.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 3/4;
  transition: var(--transition);
}

.dest-card:hover {
  transform: scale(1.03);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.dest-flag {
  font-size: 2rem;
  margin-bottom: 8px;
}
.dest-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blanc);
  line-height: 1;
}
.dest-tag {
  display: inline-block;
  background: var(--rouge);
  color: var(--blanc);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 8px;
}

/* =============================================
   TESTIMONIALS / CTA
   ============================================= */
.cta-section {
  background: var(--rouge);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--blanc);
}
.cta-section p {
  color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(192, 57, 43, 0.08);
  color: var(--rouge);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-family: "Outfit", sans-serif;
}

.contact-info-item p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

.form-control-custom {
  width: 100%;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--gris-clair);
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-control-custom:focus {
  border-color: var(--rouge);
  background: var(--blanc);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-control-custom::placeholder {
  color: var(--text-muted);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--noir);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blanc);
}

.footer-brand span {
  color: var(--rouge);
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--blanc);
  padding-left: 4px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-btn:hover {
  background: var(--rouge);
  color: var(--blanc);
  border-color: var(--rouge);
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.06);
  margin: 40px 0 24px;
}

.footer-bottom {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   PAGE HERO (sub-pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(192, 57, 43, 0.1));
}

.page-hero h1 {
  color: var(--blanc);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}
.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   MISC
   ============================================= */
.divider-rouge {
  width: 60px;
  height: 4px;
  background: var(--rouge);
  border-radius: 2px;
  margin: 16px 0;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 600;
}

.tag-rouge {
  background: rgba(192, 57, 43, 0.1);
  color: var(--rouge);
}
.tag-bleu {
  background: rgba(21, 101, 192, 0.1);
  color: var(--bleu-mid);
}

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

.animate-up {
  animation: fadeInUp 0.7s ease forwards;
  opacity: 0;
}

.animate-up.d1 {
  animation-delay: 0.1s;
}
.animate-up.d2 {
  animation-delay: 0.2s;
}
.animate-up.d3 {
  animation-delay: 0.3s;
}
.animate-up.d4 {
  animation-delay: 0.4s;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
  .hero-stats {
    gap: 24px;
  }
  .hero-card-float {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-card {
    padding: 24px;
  }
}
