/*
Theme Name: Pure Morocco B2B - GeneratePress Child 
Theme URI: https://puremoroccodmc.com
Description: Custom child theme for Pure Morocco B2B
Author: Pure Morocco
Author URI: https://puremoroccodmc.com
Template: generatepress
Version: 1.0.0
Text Domain: generatepress-child
*/

/* ==========================================================================
   Design System - Pure Morocco
   ========================================================================== */

:root {
  /* Primary Colors */
  --navy-deep: #1a1f4e;
  --navy-medium: #2a3165;
  --royal-blue: #3b82c4;
  --sky-blue: #5ba3d9;

  /* Accent Colors (Luxury Gold) */
  --gold-star: #e5a83a;
  --gold-light: #f0c05a;
  --gold-dark: #c48a20;

  /* Neutral Colors */
  --off-white: #f8f7f5;
  --cream: #f5f3ef;
  --charcoal: #3d3d3d;
  --warm-gray: #9a9590;
  --white: #ffffff;

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", "Helvetica Neue", sans-serif;

  /* Animations */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 0.2s;
  --duration-base: 0.4s;
  --duration-slow: 0.6s;
  --duration-slower: 0.8s;

  /* Spacing */
  --space-xs: 0.25rem; /* 4px */
  --space-sm: 0.5rem; /* 8px */
  --space-md: 1rem; /* 16px */
  --space-lg: 1.5rem; /* 24px */
  --space-xl: 2rem; /* 32px */
  --space-2xl: 3rem; /* 48px */
  --space-3xl: 4rem; /* 64px */
  --space-4xl: 6rem; /* 96px */
  --space-5xl: 8rem; /* 128px */
}
a:hover, a:focus, a:active{
    color: var(--gold-dark);
}

/* ==========================================================================
   Global Typography
   ========================================================================== */

body {
  font-family: var(--font-body);
  color: var(--charcoal);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy-deep);
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

.pm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  padding: var(--space-md) 0;
  transition: box-shadow var(--duration-base) var(--ease-out-expo),
    padding var(--duration-base) var(--ease-out-expo);
}

.pm-header.scrolled {
  box-shadow: 0 4px 20px rgba(26, 31, 78, 0.3);
  padding: var(--space-sm) 0;
}

.pm-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.pm-header-logo {
  max-width: 200px;
  height: auto;
}

.pm-header-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.pm-header-nav-group {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

/* Navigation Styles */
.pm-header-nav {
  font-family: var(--font-body);
}

.pm-header-nav .wp-block-navigation__container {
  gap: var(--space-xl);
}

.pm-header-nav .wp-block-navigation-item a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--duration-base) var(--ease-out-quart);
}

.pm-header-nav .wp-block-navigation-item a:hover {
  color: var(--gold-star);
}

/* Classic Menu Styles (wp_nav_menu) */
.pm-header-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-xl);
  align-items: center;
}

.pm-header-nav li {
  margin: 0;
  padding: 0;
}

.pm-header-nav a {
  color: var(--navy-deep);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--duration-base) var(--ease-out-quart);
  display: block;
  padding: 0.5rem 0;
}

.pm-header-nav a:hover {
  color: var(--gold-star);
}

.pm-header-nav .current-menu-item a,
.pm-header-nav .current_page_item a {
  color: var(--gold-star);
}

/* CTA Button */
.pm-cta-gold .wp-block-button__link {
  background-color: var(--gold-star);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--gold-star);
  transition: transform var(--duration-fast) var(--ease-out-quart),
    box-shadow var(--duration-fast) var(--ease-out-quart),
    background-color var(--duration-fast) var(--ease-out-quart);
}

.pm-cta-gold .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 168, 58, 0.35);
  background-color: var(--gold-light);
}

/* Mobile Menu Toggle Button */
.pm-mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.pm-mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.pm-mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.pm-mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.pm-mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .pm-header-inner {
    padding: 0 var(--space-md);
  }

  .pm-header-logo {
    max-width: 150px;
  }

  .pm-header-nav-group {
    gap: var(--space-md);
  }

  .pm-cta-gold .wp-block-button__link {
    padding: 0.75rem 1.5rem;
    font-size: 0.813rem;
  }

  /* Show mobile menu button */
  .pm-mobile-menu-toggle {
    display: flex;
  }

  /* Mobile menu overlay */
  .pm-header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--navy-deep);
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .pm-header-nav.active {
    right: 0;
  }

  .pm-header-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .pm-header-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .pm-header-nav a {
    padding: 1rem 0;
  }
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.pm-footer {
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy-medium) 100%
  );
  color: var(--white);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.pm-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* Gold Divider */
.pm-footer-gold-line {
  width: 60px;
  height: 3px;
  background-color: var(--gold-star);
  border: none;
  margin: 0 auto var(--space-3xl);
}

/* Footer Columns */
.pm-footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.pm-footer-logo {
  max-width: 150px;
  margin-bottom: var(--space-md);
}

.pm-footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.pm-footer-about {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.pm-footer-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.pm-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pm-footer-links li {
  margin-bottom: var(--space-sm);
}

.pm-footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--duration-base) var(--ease-out-quart),
    padding-left var(--duration-base) var(--ease-out-quart);
  display: inline-block;
}

.pm-footer-links a:hover {
  color: var(--gold-star);
  padding-left: var(--space-xs);
}

/* Copyright Bar */
.pm-footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-xl);
}

.pm-footer-copyright p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Social Icons */
.pm-social-icons {
  display: flex;
  gap: var(--space-md);
  list-style: none;
  padding: 0;
  margin: 0;
}

.pm-social-icons a {
  color: var(--white);
  transition: color var(--duration-base) var(--ease-out-quart),
    transform var(--duration-base) var(--ease-out-quart);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.pm-social-icons a:hover {
  color: var(--gold-star);
  border-color: var(--gold-star);
  transform: translateY(-4px);
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .pm-footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .pm-footer {
    padding: var(--space-3xl) 0 var(--space-xl);
  }

  .pm-footer-inner {
    padding: 0 var(--space-md);
  }

  .pm-footer-columns {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .pm-footer-logo {
    margin: 0 auto var(--space-md);
  }

  .pm-footer-gold-line {
    margin: 0 auto var(--space-2xl);
  }

  .pm-footer-copyright {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .pm-social-icons {
    justify-content: center;
  }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

/* Reset for this section */
.pm-hero * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero Container */
.pm-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy-medium) 50%,
    #1e2a5a 100%
  );
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

/* Background Image */
.pm-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://dmc.ahcreative.ma/wp-content/uploads/2025/12/puremoroccotravel.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: transform 8s ease-out;
}

.pm-hero:hover .pm-hero__bg {
  transform: scale(1.03);
}

/* Dark Overlay */
.pm-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 31, 78, 0.6) 0%,
    rgba(26, 31, 78, 0.75) 50%,
    rgba(26, 31, 78, 0.85) 100%
  );
  opacity: 0.5;
}

/* Moroccan Pattern */
.pm-hero__pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23e5a83a' stroke-width='0.5' opacity='0.12'%3E%3Cpath d='M40 0L50 30L80 40L50 50L40 80L30 50L0 40L30 30Z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  animation: pm-patternFloat 25s ease-in-out infinite;
}

@keyframes pm-patternFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

/* Content Container */
.pm-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  animation: pm-fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pm-fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo */
.pm-hero__logo {
  width: 180px;
  height: auto;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: pm-fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes pm-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Eyebrow Text */
.pm-hero__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-star);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  animation: pm-fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.pm-hero__eyebrow::before,
.pm-hero__eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold-star);
}

/* Main Title */
.pm-hero__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: pm-fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.pm-hero__title span {
  color: var(--gold-star);
  position: relative;
}

/* Subtitle */
.pm-hero__subtitle {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--sky-blue);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: pm-fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* Buttons Container */
.pm-hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: pm-fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* Button Base */
.pm-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-hero__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-hero__btn:hover::before {
  left: 100%;
}

.pm-hero__btn:hover {
  transform: translateY(-3px);
}

/* Primary Button (Gold) */
.pm-hero__btn--primary {
  background: var(--gold-star);
  color: var(--navy-deep);
  border-color: var(--gold-star);
}


/* Outline Button */
.pm-hero__btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.pm-hero__btn--outline:hover {
  background: var(--white);
  color: var(--navy-deep);
}

/* Scroll Indicator */
.pm-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: pm-fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.pm-hero__scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.pm-hero__scroll a:hover {
  opacity: 1;
}

.pm-hero__mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--white);
  border-radius: 11px;
  position: relative;
}

.pm-hero__mouse::before {
  content: "";
  width: 3px;
  height: 7px;
  background: var(--gold-star);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: pm-scrollBounce 2s ease-in-out infinite;
}

@keyframes pm-scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0.3;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .pm-hero {
    min-height: 60svh;
  }
.pmheader{
    display: none !important;
}
  .pm-hero__content {
    padding: 1.5rem;
  }

  .pm-hero__logo {
    width: 140px;
  }

  .pm-hero__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  .pm-hero__eyebrow::before,
  .pm-hero__eyebrow::after {
    width: 25px;
  }

  .pm-hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .pm-hero__btn {
    width: 100%;
    max-width: 280px;
  }

  .pm-hero__scroll {
    bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pm-hero__title {
    font-size: 2rem;
  }

  .pm-hero__subtitle {
    font-size: 1rem;
  }
}

.pm-intro * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Section Container */
.pm-intro {
  --navy-deep: #1a1f4e;
  --navy-medium: #2a3165;
  --royal-blue: #3b82c4;
  --sky-blue: #5ba3d9;
  --gold-star: #e5a83a;
  --gold-light: #f0c05a;
  --off-white: #f8f7f5;
  --cream: #f5f3ef;
  --charcoal: #3d3d3d;
  --warm-gray: #9a9590;
  --white: #ffffff;

  background: var(--white);
  padding: 7rem 0;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}

.pm-intro__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Content Grid */
.pm-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   IMAGE SIDE
   ═══════════════════════════════════════════════════════════════════════════ */

.pm-intro__image-wrapper {
  position: relative;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-intro__image-wrapper.visible {
  opacity: 1;
  transform: translateX(0);
}

.pm-intro__image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 31, 78, 0.15);
}

.pm-intro__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-intro__image:hover img {
  transform: scale(1.03);
}



/* Gold Accent Frame */
.pm-intro__accent {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--gold-star);
  border-radius: 4px;
  z-index: -1;
  opacity: 0;
  transform: translate(10px, 10px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.pm-intro__image-wrapper.visible .pm-intro__accent {
  opacity: 1;
  transform: translate(0, 0);
}

/* Experience Badge */
.pm-intro__badge {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--gold-star);
  color: var(--navy-deep);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(229, 168, 58, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.pm-intro__image-wrapper.visible .pm-intro__badge {
  opacity: 1;
  transform: translateY(0);
}

.pm-intro__badge-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.pm-intro__badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TEXT SIDE
   ═══════════════════════════════════════════════════════════════════════════ */

.pm-intro__content {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.pm-intro__content.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Eyebrow */
.pm-intro__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-star);
  margin-bottom: 1rem;
}

/* Title */
.pm-intro__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* Gold Line */
.pm-intro__line {
  width: 60px;
  height: 3px;
  background: var(--gold-star);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.pm-intro__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: pm-introShimmer 3s ease-in-out infinite;
}

@keyframes pm-introShimmer {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

/* Paragraphs */
.pm-intro__text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.pm-intro__text:last-of-type {
  margin-bottom: 0;
}

.pm-intro__text strong {
  font-weight: 600;
  color: var(--navy-deep);
}

/* Highlight keywords */
.pm-intro__highlight {
  color: var(--navy-deep);
  font-weight: 500;
  position: relative;
}

.pm-intro__highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-star);
  opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════════════════ */

.pm-intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream);
}

.pm-intro__stat {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-intro__content.visible .pm-intro__stat:nth-child(1) {
  transition-delay: 0.4s;
}
.pm-intro__content.visible .pm-intro__stat:nth-child(2) {
  transition-delay: 0.5s;
}
.pm-intro__content.visible .pm-intro__stat:nth-child(3) {
  transition-delay: 0.6s;
}

.pm-intro__content.visible .pm-intro__stat {
  opacity: 1;
  transform: translateY(0);
}

.pm-intro__stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-star);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pm-intro__stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .pm-intro {
    padding: 5rem 0;
  }

  .pm-intro__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pm-intro__image-wrapper {
    max-width: 500px;
    margin: 0 auto;
    order: -1;
  }

  .pm-intro__accent {
    bottom: -15px;
    right: -15px;
  }

  .pm-intro__badge {
    left: -1rem;
    top: 1.5rem;
  }

  .pm-intro__content {
    text-align: center;
  }

  .pm-intro__line {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pm-intro {
    padding: 4rem 0;
  }

  .pm-intro__container {
    padding: 0 1.5rem;
  }

  .pm-intro__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pm-intro__stat {
    padding: 1rem 0;
  }

  .pm-intro__stat:not(:last-child) {
    border-bottom: 1px solid var(--cream);
  }

  .pm-intro__badge {
    position: relative;
    top: auto;
    left: auto;
    display: inline-block;
    margin-bottom: 1.5rem;
  }

  .pm-intro__image-wrapper {
    text-align: center;
  }

  .pm-intro__accent {
    display: none;
  }

  .pm-intro__text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .pm-intro__title {
    font-size: 1.75rem;
  }

  .pm-intro__stat-number {
    font-size: 2.5rem;
  }
}

/* Reset */
.pm-why * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Section Container */
.pm-why {
  --navy-deep: #1a1f4e;
  --navy-medium: #2a3165;
  --royal-blue: #3b82c4;
  --sky-blue: #5ba3d9;
  --gold-star: #e5a83a;
  --gold-light: #f0c05a;
  --off-white: #f8f7f5;
  --cream: #f5f3ef;
  --charcoal: #3d3d3d;
  --warm-gray: #9a9590;
  --white: #ffffff;

  background: var(--off-white);
  padding: 7rem 0;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
  position: relative;
}

/* Subtle Pattern Background */
.pm-why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 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' stroke='%231a1f4e' stroke-width='0.5' opacity='0.03'%3E%3Cpath d='M30 0L36 24L60 30L36 36L30 60L24 36L0 30L24 24Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.pm-why__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════════════════════════ */

.pm-why__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-why__header.visible {
  opacity: 1;
  transform: translateY(0);
}

.pm-why__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-star);
  margin-bottom: 1rem;
}

.pm-why__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.pm-why__line {
  width: 60px;
  height: 3px;
  background: var(--gold-star);
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
}

.pm-why__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: pm-whyShimmer 3s ease-in-out infinite;
}

@keyframes pm-whyShimmer {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

.pm-why__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CARDS GRID
   ═══════════════════════════════════════════════════════════════════════════ */

.pm-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   INDIVIDUAL CARD
   ═══════════════════════════════════════════════════════════════════════════ */

.pm-why__card {
  background: var(--white);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 31, 78, 0.06);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-why__card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.pm-why__card:nth-child(1) {
  transition-delay: 0.1s;
}
.pm-why__card:nth-child(2) {
  transition-delay: 0.2s;
}
.pm-why__card:nth-child(3) {
  transition-delay: 0.3s;
}
.pm-why__card:nth-child(4) {
  transition-delay: 0.4s;
}
.pm-why__card:nth-child(5) {
  transition-delay: 0.5s;
}
.pm-why__card:nth-child(6) {
  transition-delay: 0.6s;
}

/* Top Gold Line Accent */
.pm-why__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-star), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-why__card:hover::before {
  transform: scaleX(1);
}

.pm-why__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26, 31, 78, 0.12);
}

/* Icon Container */
.pm-why__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy-medium) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-why__card:hover .pm-why__icon {
  transform: scale(1.08);
}

/* Icon Ring */
.pm-why__icon::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid var(--gold-star);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-why__card:hover .pm-why__icon::before {
  opacity: 1;
  transform: scale(1);
}

/* SVG Icon */
.pm-why__icon svg {
  width: 36px;
  height: 36px;
  fill: var(--gold-star);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-why__card:hover .pm-why__icon svg {
  transform: scale(1.1);
}

/* Card Title */
.pm-why__card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

/* Card Description */
.pm-why__card-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CAROUSEL NAVIGATION (Optional)
   ═══════════════════════════════════════════════════════════════════════════ */

.pm-why__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.pm-why__nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--navy-deep);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-why__nav-dot:hover,
.pm-why__nav-dot.active {
  background: var(--gold-star);
  border-color: var(--gold-star);
  transform: scale(1.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CAROUSEL WRAPPER (For Mobile)
   ═══════════════════════════════════════════════════════════════════════════ */

.pm-why__carousel-wrapper {
  display: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .pm-why {
    padding: 5rem 0;
  }

  .pm-why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pm-why {
    padding: 4rem 0;
  }

  .pm-why__container {
    padding: 0 1.5rem;
  }

  .pm-why__header {
    margin-bottom: 2.5rem;
  }

  /* Hide grid, show carousel */
  .pm-why__grid {
    display: none;
  }

  .pm-why__carousel-wrapper {
    display: block;
    position: relative;
  }

  .pm-why__carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 1rem;
    padding: 1rem 0 2rem;
  }

  .pm-why__carousel::-webkit-scrollbar {
    display: none;
  }

  .pm-why__carousel .pm-why__card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    opacity: 1;
    transform: none;
  }

  .pm-why__nav {
    display: flex;
  }
}

@media (max-width: 480px) {
  .pm-why__title {
    font-size: 1.75rem;
  }

  .pm-why__carousel .pm-why__card {
    flex: 0 0 90%;
    padding: 2rem 1.5rem;
  }

  .pm-why__icon {
    width: 70px;
    height: 70px;
  }

  .pm-why__icon svg {
    width: 30px;
    height: 30px;
  }
}

.pm-segments * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pm-segments {
  --navy-deep: #1a1f4e;
  --navy-medium: #2a3165;
  --royal-blue: #3b82c4;
  --sky-blue: #5ba3d9;
  --gold-star: #e5a83a;
  --gold-light: #f0c05a;
  --off-white: #f8f7f5;
  --white: #ffffff;

  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy-medium) 100%
  );
  padding: 7rem 0;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Moroccan Pattern */
.pm-segments::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23e5a83a' stroke-width='0.5' opacity='0.06'%3E%3Cpath d='M50 0L62 38L100 50L62 62L50 100L38 62L0 50L38 38Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.pm-segments__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

/* Header */
.pm-segments__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-segments__header.visible {
  opacity: 1;
  transform: translateY(0);
}

.pm-segments__eyebrow {
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-star);
  margin-bottom: 1rem;
}

.pm-segments__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.pm-segments__line {
  width: 60px;
  height: 3px;
  background: var(--gold-star);
  margin: 0 auto 1.5rem;
}

.pm-segments__subtitle {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Grid */
.pm-segments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Card */
.pm-segments__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease,
    border-color 0.4s ease;
}

.pm-segments__card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pm-segments__card:nth-child(1) {
  transition-delay: 0.05s;
}
.pm-segments__card:nth-child(2) {
  transition-delay: 0.1s;
}
.pm-segments__card:nth-child(3) {
  transition-delay: 0.15s;
}
.pm-segments__card:nth-child(4) {
  transition-delay: 0.2s;
}
.pm-segments__card:nth-child(5) {
  transition-delay: 0.25s;
}
.pm-segments__card:nth-child(6) {
  transition-delay: 0.3s;
}
.pm-segments__card:nth-child(7) {
  transition-delay: 0.35s;
}
.pm-segments__card:nth-child(8) {
  transition-delay: 0.4s;
}
.pm-segments__card:nth-child(9) {
  transition-delay: 0.45s;
}

.pm-segments__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-star);
  transform: translateY(-5px);
}

/* Icon */
.pm-segments__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  background: rgba(229, 168, 58, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-segments__card:hover .pm-segments__icon {
  background: rgba(229, 168, 58, 0.25);
  transform: scale(1.08);
}

.pm-segments__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--gold-star);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-segments__card:hover .pm-segments__icon svg {
  transform: scale(1.1);
}

/* Card Title */
.pm-segments__card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.pm-segments__card:hover .pm-segments__card-title {
  color: var(--gold-star);
}

/* Card Description */
.pm-segments__card-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .pm-segments {
    padding: 5rem 0;
  }
  .pm-segments__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .pm-segments {
    padding: 4rem 0;
  }
  .pm-segments__container {
    padding: 0 1.5rem;
  }
  .pm-segments__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pm-segments__grid {
    grid-template-columns: 1fr;
  }
  .pm-segments__card {
    padding: 1.5rem 1.25rem;
  }
}

.pm-dest * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pm-dest {
  --navy-deep: #1a1f4e;
  --navy-medium: #2a3165;
  --gold-star: #e5a83a;
  --off-white: #f8f7f5;
  --white: #ffffff;
  --charcoal: #3d3d3d;

  background: var(--white);
  padding: 7rem 0;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}

.pm-dest__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.pm-dest__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-dest__header.visible {
  opacity: 1;
  transform: translateY(0);
}

.pm-dest__eyebrow {
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-star);
  margin-bottom: 1rem;
}

.pm-dest__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.pm-dest__line {
  width: 60px;
  height: 3px;
  background: var(--gold-star);
  margin: 0 auto 1.5rem;
}

.pm-dest__subtitle {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.8;
}

/* Grid */
.pm-dest__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 180px);
  gap: 1rem;
}

/* Card */
.pm-dest__card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-dest__card.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.pm-dest__card:nth-child(1) {
  transition-delay: 0.05s;
}
.pm-dest__card:nth-child(2) {
  transition-delay: 0.1s;
}
.pm-dest__card:nth-child(3) {
  transition-delay: 0.15s;
}
.pm-dest__card:nth-child(4) {
  transition-delay: 0.2s;
}
.pm-dest__card:nth-child(5) {
  transition-delay: 0.25s;
}
.pm-dest__card:nth-child(6) {
  transition-delay: 0.3s;
}
.pm-dest__card:nth-child(7) {
  transition-delay: 0.35s;
}
.pm-dest__card:nth-child(8) {
  transition-delay: 0.4s;
}
.pm-dest__card:nth-child(9) {
  transition-delay: 0.45s;
}
.pm-dest__card:nth-child(10) {
  transition-delay: 0.5s;
}
.pm-dest__card:nth-child(11) {
  transition-delay: 0.55s;
}

/* Large cards */
.pm-dest__card--large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Background */
.pm-dest__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-dest__card:hover .pm-dest__bg {
  transform: scale(1.08);
}

/* Overlay */
.pm-dest__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(26, 31, 78, 0.5) 70%,
    rgba(26, 31, 78, 0.9) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.4s ease;
}

.pm-dest__card:hover .pm-dest__overlay {
  background: linear-gradient(
    180deg,
    transparent 10%,
    rgba(26, 31, 78, 0.6) 60%,
    rgba(26, 31, 78, 0.95) 100%
  );
}

/* Tag */
.pm-dest__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-star);
  margin-bottom: 0.35rem;
}

/* Name */
.pm-dest__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s ease;
}

.pm-dest__card--large .pm-dest__name {
  font-size: 2rem;
}

.pm-dest__card:hover .pm-dest__name {
  color: var(--gold-star);
}

/* Responsive */
@media (max-width: 1024px) {
  .pm-dest {
    padding: 5rem 0;
  }
  .pm-dest__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .pm-dest__card {
    min-height: 200px;
  }
  .pm-dest__card--large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .pm-dest {
    padding: 4rem 0;
  }
  .pm-dest__container {
    padding: 0 1.5rem;
  }
  .pm-dest__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .pm-dest__card {
    min-height: 180px;
  }
  .pm-dest__card--large {
    grid-column: span 2;
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .pm-dest__grid {
    grid-template-columns: 1fr;
  }
  .pm-dest__card,
  .pm-dest__card--large {
    grid-column: span 1;
    min-height: 200px;
  }
}

.pm-process * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pm-process {
  --navy-deep: #1a1f4e;
  --navy-medium: #2a3165;
  --gold-star: #e5a83a;
  --gold-light: #f0c05a;
  --off-white: #f8f7f5;
  --cream: #f5f3ef;
  --white: #ffffff;
  --charcoal: #3d3d3d;

  background: var(--off-white);
  padding: 7rem 0;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}

.pm-process__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.pm-process__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-process__header.visible {
  opacity: 1;
  transform: translateY(0);
}

.pm-process__eyebrow {
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-star);
  margin-bottom: 1rem;
}

.pm-process__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.pm-process__line {
  width: 60px;
  height: 3px;
  background: var(--gold-star);
  margin: 0 auto 1.5rem;
}

.pm-process__subtitle {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.8;
}

/* Timeline */
.pm-process__timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* Connecting Line */
.pm-process__timeline::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--cream),
    var(--navy-deep),
    var(--cream)
  );
  opacity: 0.3;
}

/* Step */
.pm-process__step {
  flex: 1;
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-process__step.visible {
  opacity: 1;
  transform: translateY(0);
}

.pm-process__step:nth-child(1) {
  transition-delay: 0.1s;
}
.pm-process__step:nth-child(2) {
  transition-delay: 0.2s;
}
.pm-process__step:nth-child(3) {
  transition-delay: 0.3s;
}
.pm-process__step:nth-child(4) {
  transition-delay: 0.4s;
}
.pm-process__step:nth-child(5) {
  transition-delay: 0.5s;
}

/* Number Circle */
.pm-process__number {
  width: 90px;
  height: 90px;
  background: var(--white);
  border: 3px solid var(--gold-star);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-process__step:hover .pm-process__number {
  background: var(--gold-star);
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(229, 168, 58, 0.3);
}

.pm-process__number span {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy-deep);
  transition: color 0.4s ease;
  margin-bottom: 14px ;
}

.pm-process__step:hover .pm-process__number span {
  color: var(--white);
}

/* Step Title */
.pm-process__step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}

/* Step Description */
.pm-process__step-desc {
  font-size: 0.875rem;
  color: var(--charcoal);
  line-height: 1.6;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 1024px) {
  .pm-process {
    padding: 5rem 0;
  }
  .pm-process__number {
    width: 75px;
    height: 75px;
  }
  .pm-process__number span {
    font-size: 1.75rem;
  }
  .pm-process__timeline::before {
    top: 37px;
  }
}

@media (max-width: 768px) {
  .pm-process {
    padding: 4rem 0;
  }
  .pm-process__container {
    padding: 0 1.5rem;
  }
  .pm-process__header {
    margin-bottom: 3rem;
  }

  .pm-process__timeline {
    flex-direction: column;
    gap: 2.5rem;
  }

  .pm-process__timeline::before {
    top: 0;
    bottom: 0;
    left: 34px;
    right: auto;
    width: 2px;
    height: 100%;
  }

  .pm-process__step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    gap: 1.5rem;
  }

  .pm-process__number {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin: 0;
  }

  .pm-process__step-content {
    padding-top: 0.75rem;
  }
}
.pm-testimonials * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pm-testimonials {
  --navy-deep: #1a1f4e;
  --navy-medium: #2a3165;
  --gold-star: #e5a83a;
  --gold-light: #f0c05a;
  --white: #ffffff;

  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy-medium) 100%
  );
  padding: 7rem 0;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Decorative Pattern */
.pm-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23e5a83a' stroke-width='0.5' opacity='0.05'%3E%3Cpath d='M40 0L50 30L80 40L50 50L40 80L30 50L0 40L30 30Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.pm-testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

/* Header */
.pm-testimonials__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-testimonials__header.visible {
  opacity: 1;
  transform: translateY(0);
}

.pm-testimonials__eyebrow {
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-star);
  margin-bottom: 1rem;
}

.pm-testimonials__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.pm-testimonials__line {
  width: 60px;
  height: 3px;
  background: var(--gold-star);
  margin: 0 auto;
}

/* Grid */
.pm-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card */
.pm-testimonials__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease,
    border-color 0.4s ease;
}

.pm-testimonials__card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pm-testimonials__card:nth-child(1) {
  transition-delay: 0.1s;
}
.pm-testimonials__card:nth-child(2) {
  transition-delay: 0.2s;
}
.pm-testimonials__card:nth-child(3) {
  transition-delay: 0.3s;
}

.pm-testimonials__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(229, 168, 58, 0.3);
}

/* Quote Mark */
.pm-testimonials__quote-mark {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold-star);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}

/* Quote Text */
.pm-testimonials__text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* Author */
.pm-testimonials__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Avatar */
.pm-testimonials__avatar {
  width: 55px;
  height: 55px;
  background: var(--gold-star);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy-deep);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-testimonials__card:hover .pm-testimonials__avatar {
  transform: scale(1.08);
}

/* Author Info */
.pm-testimonials__info h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.pm-testimonials__info p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Stars */
.pm-testimonials__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  justify-content: end;
}

.pm-testimonials__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-star);
}

/* Responsive */
@media (max-width: 1024px) {
  .pm-testimonials {
    padding: 5rem 0;
  }
  .pm-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pm-testimonials {
    padding: 4rem 0;
  }
  .pm-testimonials__container {
    padding: 0 1.5rem;
  }
  .pm-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pm-testimonials__card {
    padding: 2rem 1.5rem;
  }
}

.pm-cta * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pm-cta {
  --navy-deep: #1a1f4e;
  --navy-medium: #2a3165;
  --gold-star: #e5a83a;
  --gold-light: #f0c05a;
  --off-white: #f8f7f5;
  --white: #ffffff;
  --charcoal: #3d3d3d;

  background: var(--white);
  padding: 7rem 0;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle Background Pattern */
.pm-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231a1f4e' stroke-width='0.5' opacity='0.02'%3E%3Cpath d='M50 0L62 38L100 50L62 62L50 100L38 62L0 50L38 38Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.pm-cta__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

/* Content */
.pm-cta__content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-cta__content.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Eyebrow */
.pm-cta__eyebrow {
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-star);
  margin-bottom: 1rem;
}

/* Title */
.pm-cta__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* Gold Line */
.pm-cta__line {
  width: 60px;
  height: 3px;
  background: var(--gold-star);
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
}

.pm-cta__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: pm-ctaShimmer 3s ease-in-out infinite;
}

@keyframes pm-ctaShimmer {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

/* Description */
.pm-cta__desc {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons Container */
.pm-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button Base */
.pm-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease,
    color 0.3s ease;
}

.pm-cta__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-cta__btn:hover::before {
  left: 100%;
}

.pm-cta__btn:hover {
  transform: translateY(-3px);
}

/* Primary Button (Gold) */
.pm-cta__btn--primary {
  background: var(--gold-star);
  color: var(--navy-deep);
  border-color: var(--gold-star);
}

.pm-cta__btn--primary:hover {
  box-shadow: 0 10px 30px rgba(229, 168, 58, 0.4);
}

/* Secondary Button (Navy) */
.pm-cta__btn--secondary {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}

.pm-cta__btn--secondary:hover {
  box-shadow: 0 10px 30px rgba(26, 31, 78, 0.25);
}

/* Outline Button */
.pm-cta__btn--outline {
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--navy-deep);
}

.pm-cta__btn--outline:hover {
  background: var(--navy-deep);
  color: var(--white);
}

/* Button Icons */
.pm-cta__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.pm-cta__btn:hover svg {
  transform: translateX(3px);
}

/* Contact Info Strip */
.pm-cta__contact {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--off-white);
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.pm-cta__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pm-cta__contact-item:hover {
  color: var(--gold-star);
}

.pm-cta__contact-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-star);
}

/* Responsive */
@media (max-width: 768px) {
  .pm-cta {
    padding: 4rem 0;
  }
  .pm-cta__container {
    padding: 0 1.5rem;
  }

  .pm-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .pm-cta__btn {
    width: 100%;
    max-width: 280px;
  }

  .pm-cta__contact {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}
/* Mobile Menu Logo Styling */
.pm-mobile-menu-logo {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.pm-mobile-menu-logo img {
    max-width: 150px;
    height: auto;
}

/* Ensure background color is applied */
.pm-header-nav .wp-block-navigation__responsive-container.is-menu-open {
    background-color: #1a1f4e !important;
}

/* Style the close button to be visible on dark background */
.pm-header-nav .wp-block-navigation__responsive-container-close {
    color: #ffffff;
}

/* Optional: Adjust menu items color for better contrast */
.pm-header-nav .wp-block-navigation__responsive-container .wp-block-navigation-item__content {
    color: #ffffff;
}

/* Single Trip */ 

.nav-tab-wrapper .tab-anchor-wrapper .nav-tab{
font-family: var(--font-body);
font-size:16px;
font-weight: 600;
}

#include-result,
#exclude-result {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
}

/* Stack to 1 column on mobile */
@media (max-width: 768px) {
  #include-result,
  #exclude-result {
    grid-template-columns: 1fr;
  }
}

.single-trip .site-content{
    margin: 50px 0;
}

.booking-info-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    text-align: center;
    position: sticky;
    top: 10px;
}

.booking-info-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
}

.booking-info-card p {
    margin-bottom: 20px;
    color: #666;
}

.devis-btn {
    display: inline-block;
    background: #F7B105;
    color: #161063;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.devis-btn:hover {
    background: #005a87;
    color: #fff;
}
.category-trip-budget{
    display: none !important;
}

@media (min-width: 768px) {
    .wpte-tabs-container.fixed-header .nav-tab-wrapper {
        position: fixed;
        top: 87px;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: none;
        z-index: 1111;
    }
}

/* Title Page Section */
.title-page {
    position: relative;
    background: url(https://dmc.ahcreative.ma/wp-content/uploads/2026/02/bg-header.jpg);
    background-size: cover;
    padding: 60px 20px ;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.breadcrumb {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.breadcrumb ol {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    opacity: 0.7;
    font-size: 16px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.breadcrumb a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.breadcrumb li:last-child {
    color: rgba(255, 255, 255, 0.7);
}

/* Title Styling */
.title-page h1 {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 20px;
    letter-spacing: -1px;
    color: white;
}

/* Paragraph Styling */
.title-page p {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-page {
        padding: 60px 20px 40px;
    }
    
    .title-page h1 {
        font-size: 2.5rem;
    }
    
    .title-page p {
        font-size: 1rem;
    }
    
    .breadcrumb li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .title-page h1 {
        font-size: 2rem;
    }
    
    .title-page p {
        font-size: 0.95rem;
    }
}

.why-partner-section {
    background: #161063;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.why-partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(218, 165, 32, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-partner-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #DAA520, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(218, 165, 32, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15) 0%, rgba(218, 165, 32, 0.05) 100%);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #DAA520;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.25) 0%, rgba(218, 165, 32, 0.1) 100%);
    border-color: rgba(218, 165, 32, 0.4);
    transform: scale(1.05);
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.feature-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .why-partner-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .section-description {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 15px;
    }
}
.pm-dest-page {
    padding: 80px 0;
    background: #ffffff;
}

.pm-dest-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.pm-dest-page__header {
    text-align: center;
    margin-bottom: 60px;
}

.pm-dest-page__eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #DAA520;
    margin-bottom: 12px;
}

.pm-dest-page__title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pm-dest-page__line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #DAA520, transparent);
    margin: 0 auto 24px;
}

.pm-dest-page__subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.pm-dest-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pm-dest-page__card {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pm-dest-page__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pm-dest-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: transform 0.6s ease;
}

.pm-dest-page__card:hover .pm-dest-page__bg {
    transform: scale(1.1);
}

.pm-dest-page__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    z-index: 1;
}

.pm-dest-page__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #DAA520;
    background: rgba(218, 165, 32, 0.15);
    border: 1px solid rgba(218, 165, 32, 0.3);
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
}

.pm-dest-page__name {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
    .pm-dest-page__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pm-dest-page {
        padding: 60px 0;
    }

    .pm-dest-page__header {
        margin-bottom: 40px;
    }

    .pm-dest-page__title {
        font-size: 32px;
    }

    .pm-dest-page__subtitle {
        font-size: 16px;
    }

    .pm-dest-page__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pm-dest-page__card {
        height: 280px;
    }

    .pm-dest-page__name {
        font-size: 24px;
    }
}

.wp-block-wptravelengine-trips {
    max-width: 1400px;
    margin: auto;
}

.partner-benefits-section .container{
        max-width: 1400px;
    margin: auto;
}
.partner-benefits-section {
    padding: 120px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;

    
}

.partner-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(218, 165, 32, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(218, 165, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.benefits-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.benefits-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #DAA520;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.benefits-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #DAA520, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    border-color: rgba(218, 165, 32, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.15);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(218, 165, 32, 0.05) 100%);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #DAA520;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2) 0%, rgba(218, 165, 32, 0.1) 100%);
    border-color: rgba(218, 165, 32, 0.5);
    transform: scale(1.05);
}

.benefit-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.benefit-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .partner-benefits-section {
        padding: 80px 0;
    }
    
    .benefits-header {
        margin-bottom: 60px;
    }
    
    .benefits-title {
        font-size: 36px;
    }
    
    .benefits-subtitle {
        font-size: 20px;
    }
    
    .benefits-description {
        font-size: 16px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefit-card {
        padding: 32px 24px;
    }
    
    .benefit-title {
        font-size: 20px;
    }
    
    .benefit-description {
        font-size: 15px;
    }
}

.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}
.contact-section .container{
    max-width: 1400px !important;
    margin: auto;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(218, 165, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left Side - Contact Info */
.contact-info {
    padding: 40px 0;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(218, 165, 32, 0.15);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(218, 165, 32, 0.05) 100%);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DAA520;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2) 0%, rgba(218, 165, 32, 0.1) 100%);
    border-color: rgba(218, 165, 32, 0.4);
    transform: scale(1.05);
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #DAA520;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.contact-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
    margin: 0;
}

.contact-link {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.contact-link:hover {
    color: #DAA520;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Right Side - Form */
.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.1);
    border-color: rgba(218, 165, 32, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .contact-wrapper {
        gap: 50px;
    }
    
    .contact-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-text {
        font-size: 15px;
    }
    
    .contact-form-wrapper {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-title {
        font-size: 32px;
    }
}

.proposal-request-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.proposal-request-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(218, 165, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.proposal-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Proposal Info */
.proposal-info {
    padding: 40px 0;
}

.proposal-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.proposal-subtitle {
    font-size: 20px;
    color: #666666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.proposal-benefits {
    margin-bottom: 50px;
}

.proposal-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 0;
}

.proposal-benefit-item svg {
    color: #DAA520;
    flex-shrink: 0;
}

.proposal-benefit-item span {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
}

.proposal-contact-info {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.05) 0%, rgba(218, 165, 32, 0.02) 100%);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 12px;
    padding: 30px;
}

.proposal-contact-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.proposal-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.proposal-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.proposal-contact-link svg {
    color: #DAA520;
}

.proposal-contact-link:hover {
    color: #DAA520;
    transform: translateX(5px);
}

/* Proposal Form */
.proposal-form-wrapper {
    background: #ffffff;
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.proposal-form-wrapper:hover {
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.1);
    border-color: rgba(218, 165, 32, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-wrapper,
    .proposal-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info,
    .proposal-info {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .contact-section,
    .proposal-request-section {
        padding: 80px 0;
    }
    
    .contact-title,
    .proposal-title {
        font-size: 36px;
    }
    
    .contact-title {
        margin-bottom: 40px;
    }
    
    .proposal-title {
        margin-bottom: 12px;
    }
    
    .proposal-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .contact-wrapper,
    .proposal-wrapper {
        gap: 50px;
    }
    
    .contact-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-text {
        font-size: 15px;
    }
    
    .proposal-benefits {
        margin-bottom: 40px;
    }
    
    .proposal-benefit-item {
        padding: 10px 0;
        margin-bottom: 15px;
    }
    
    .proposal-benefit-item span {
        font-size: 15px;
    }
    
    .proposal-contact-info {
        padding: 25px 20px;
    }
    
    .proposal-contact-title {
        font-size: 16px;
    }
    
    .proposal-contact-link {
        font-size: 14px;
    }
    
    .contact-form-wrapper,
    .proposal-form-wrapper {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-title,
    .proposal-title {
        font-size: 32px;
    }
}
.proposal-request-section .container{
    max-width: 1400px;
    margin: auto;
}