/* ============================================
   THE DESIR AGENCY — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #2D2C2A;
  --bg-dark:   #1f1e1c;
  --yellow:    #F6C11C;
  --white:     #FFFFFF;
  --gray:      #8F8F8F;
  --light-gray:#B0B0B0;
  --font:      'Poppins', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  border: none;
}
.btn:hover { opacity: .85; transform: translateY(-1px); }

.btn-yellow {
  background: var(--yellow);
  color: #000;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: #000; }
.btn-outline-yellow {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
}
.btn-outline-yellow:hover { background: var(--yellow); color: #000; }
.btn-sm { font-size: 11px; padding: 10px 20px; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding: 90px 0;
}

/* ---- HEADER ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(45, 44, 42, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.header-logo img {
  height: 60px;
  width: auto;
}

.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  transition: opacity .2s;
}
.phone-btn:hover { opacity: .85; }

/* ---- SIDE NAV ---- */
.sidenav {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.sidenav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--light-gray);
  text-align: right;
  padding: 3px 0;
  transition: color .2s;
  position: relative;
}

.sidenav a::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: transparent;
  transition: background .2s;
}

.sidenav a:hover,
.sidenav a.active {
  color: var(--yellow);
}
.sidenav a:hover::after,
.sidenav a.active::after {
  background: var(--yellow);
}

.sidenav .social-icons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sidenav .social-icons a img {
  width: 20px;
  height: 20px;
  opacity: .7;
  transition: opacity .2s;
}
.sidenav .social-icons a:hover img { opacity: 1; }

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(246,193,28,.06) 0%, transparent 70%);
}

.hero-illustrations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-illustration {
  position: absolute;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 0 40px 0 80px;
}

.hero-content h1 {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--yellow);
}

.hero-content p {
  font-size: 18px;
  font-weight: 300;
  color: var(--light-gray);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cta .arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-size: 22px;
  transition: all .2s;
}
.hero-cta .arrow-btn:hover {
  background: var(--yellow);
  color: #000;
}

/* ---- SECTION LABELS ---- */
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 16px;
}

/* ---- REVIEWS STRIP ---- */
#reviews-strip {
  padding: 50px 0;
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.reviews-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.review-card-mini {
  flex: 1;
}

.stars {
  color: var(--yellow);
  font-size: 18px;
  margin-bottom: 8px;
}

.review-card-mini blockquote {
  font-size: 15px;
  font-style: italic;
  color: var(--light-gray);
  margin-bottom: 8px;
}

.review-card-mini cite {
  font-size: 13px;
  color: var(--gray);
  font-style: normal;
  font-weight: 600;
}

.reviews-strip-info {
  max-width: 380px;
}

.reviews-strip-info h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.reviews-strip-info p {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--yellow);
  color: #000;
  text-align: center;
  padding: 60px 40px;
}

.cta-banner h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
}

.cta-banner p {
  font-size: 16px;
  margin: 16px auto 30px;
  max-width: 560px;
}

.cta-banner .btn-dark {
  background: #000;
  color: var(--yellow);
  display: inline-block;
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 30px;
  transition: opacity .2s;
}
.cta-banner .btn-dark:hover { opacity: .85; }

/* ---- MARQUEE ---- */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  background: rgba(0,0,0,.2);
}

.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.15);
  padding: 0 40px;
}

.marquee-track span.accent {
  color: var(--yellow);
  -webkit-text-stroke: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- CONCIERGE / DIRECTORY SECTION ---- */
#concierge {
  background: var(--bg);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.section-text h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-text p {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

.section-text .link-small {
  display: block;
  font-size: 12px;
  color: var(--gray);
  margin-top: 12px;
  text-decoration: underline;
  transition: color .2s;
}
.section-text .link-small:hover { color: var(--yellow); }

.section-image {
  position: relative;
}

.section-image img {
  width: 100%;
  border-radius: 12px;
}

/* ---- COMMUNITY / CAUSES ---- */
#causes {
  background: var(--bg-dark);
}

/* ---- MAGAZINE ---- */
#magazine {
  background: var(--bg);
}

/* ---- TEAM ---- */
#team {
  background: var(--bg-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .2s, border-color .2s;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246,193,28,.3);
}

.team-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--yellow);
}

.team-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 12px;
  color: var(--yellow);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ---- STATS STRIP ---- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  overflow: hidden;
  margin: 60px 0 0;
}

.stat-item {
  background: rgba(255,255,255,.03);
  padding: 40px 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- PRODUCTS GRID ---- */
#products {
  background: var(--bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.product-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.product-card:hover {
  background: rgba(246,193,28,.08);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.product-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.product-card h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-card ul {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.9;
}

/* ---- FOOTER ---- */
footer {
  background: #1a1917;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 20px;
}

.footer-logo p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-logo .phone-btn {
  font-size: 14px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-nav-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer-nav-col a {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-nav-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  transition: all .2s;
}
.footer-socials a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ---- DREAMED CTA (footer pre-footer) ---- */
.prefooter {
  background: var(--bg-dark);
  padding: 90px 40px;
  text-align: center;
}

.prefooter h2 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}

.prefooter h2 span { color: var(--yellow); }

.prefooter p {
  font-size: 16px;
  color: var(--light-gray);
  margin-bottom: 30px;
}

/* ---- CARRIERS GRID ---- */
.carriers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.carrier-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: transform .2s, box-shadow .2s;
}
.carrier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.carrier-card img {
  max-height: 45px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .sidenav { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  header { padding: 14px 20px; }
  .header-center { display: none; }
  .hero-content { padding: 0 20px; }
  section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-strip-inner { flex-direction: column; gap: 30px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 42px; }
  .footer-nav { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ---- MOBILE MENU ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,29,27,.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  backdrop-filter: blur(10px);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--yellow); }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  cursor: pointer;
  color: var(--white);
  background: none;
  border: none;
  line-height: 1;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .desktop-nav-items { display: none; }
}
