/* =====================================================
   MALIBU EVENTS - FINAL CLEAN CSS
   Luxury Wedding Planner Website
   With Auto-Changing Hero/Header Images
===================================================== */

:root {
  --beige-nude: #ede3dc;
  --sable-clair: #f5efea;
  --rose-poudre: #d8b7a6;
  --taupe-elegant: #8c7a73;
  --dore-doux: #c6a77d;
  --white: #ffffff;
  --text-dark: #5f504a;
  --text-muted: rgba(95, 80, 74, 0.78);
  --text-light: rgba(255, 255, 255, 0.9);
  --border-soft: rgba(140, 122, 115, 0.14);
  --border-lighter: rgba(140, 122, 115, 0.08);
  --shadow: 0 14px 36px rgba(95, 80, 74, 0.12);
  --shadow-hover: 0 22px 48px rgba(95, 80, 74, 0.18);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1180px;
  --transition: 0.3s ease;
}

/* =====================================================
   RESET
===================================================== */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--beige-nude);
  color: var(--taupe-elegant);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  padding: 0;
}

::selection {
  background: var(--dore-doux);
  color: var(--white);
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99999;
  transform: translateY(-150%);
  background: var(--text-dark);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  transition: var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

/* =====================================================
   GLOBAL LAYOUT
===================================================== */

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: var(--sable-clair);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 500;
}

.section-subtitle {
  max-width: 760px;
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 38px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--dore-doux);
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 700;
  color: var(--dore-doux);
}

.text-link:hover {
  opacity: 0.82;
}

.split-grid,
.cards-grid,
.destination-grid,
.review-grid,
.contact-wrap,
.form-grid,
.intro-grid,
.gallery-intro-grid,
.blog-intro-grid {
  display: grid;
  gap: 28px;
}

.split-grid,
.gallery-intro-grid,
.blog-intro-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.cards-grid,
.destination-grid,
.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* =====================================================
   HEADER / NAVBAR
===================================================== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(245, 239, 234, 0.9);
  border-bottom: 1px solid var(--border-soft);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo {
  width: 155px;
  height: auto;
  object-fit: contain;
}

.nav > nav {
  margin-left: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  position: relative;
  font-size: 0.98rem;
  color: var(--taupe-elegant);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--dore-doux);
}

.nav-links a.active::after,
.nav-links a[aria-current="page"]::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1.5px;
  background: var(--dore-doux);
}

.nav-cta {
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--dore-doux);
  color: var(--white) !important;
  box-shadow: 0 12px 24px rgba(198, 167, 125, 0.22);
}

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

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  border-radius: 14px;
  margin-left: auto;
  z-index: 1002;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--taupe-elegant);
  margin: 5px auto;
  transition: var(--transition);
}

/* =====================================================
   BUTTONS
===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 27px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-primary {
  background: var(--dore-doux);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.38);
  border-color: rgba(140, 122, 115, 0.35);
  color: var(--taupe-elegant);
}

/* =====================================================
   HERO WITH AUTO-CHANGING IMAGES
===================================================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 70px;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  isolation: isolate;
  background: var(--beige-nude);
}

/* الصور المتغيرة تلقائياً هنا */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("image/jwag.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroSlider 24s infinite ease-in-out;
  transform: scale(1.03);
}

/* طبقة فاخرة فوق الصور حتى يظهر الكلام واضح */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(245, 239, 234, 0.94) 0%, rgba(245, 239, 234, 0.78) 48%, rgba(95, 80, 74, 0.32) 100%),
    radial-gradient(circle at top left, rgba(198, 167, 125, 0.28), transparent 35%),
    radial-gradient(circle at bottom right, rgba(216, 183, 166, 0.24), transparent 38%);
}

/* غيّر أسماء الصور هنا فقط */
@keyframes heroSlider {
  0%,
  22% {
    background-image: url("image/jwag.webp");
  }

  28%,
  47% {
    background-image: url("image/marrakech.webp");
  }

  53%,
  72% {
    background-image: url("image/4922483.jpeg");
  }

  78%,
  100% {
    background-image: url("image/istockphoto-.jpg");
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5.15rem);
  line-height: 1.03;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-content p {
  font-size: 1.12rem;
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(95, 80, 74, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(140, 122, 115, 0.13);
  box-shadow: 0 10px 24px rgba(95, 80, 74, 0.06);
}

/* =====================================================
   CARDS
===================================================== */

.card,
.hero-card,
.intro-box,
.gallery-card,
.faq-item,
.masonry-item,
.blog-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border-lighter);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 239, 234, 0.94));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-card::before {
  width: 180px;
  height: 180px;
  top: -70px;
  right: -40px;
  background: rgba(198, 167, 125, 0.16);
}

.hero-card::after {
  width: 120px;
  height: 120px;
  bottom: -35px;
  left: -22px;
  background: rgba(216, 183, 166, 0.18);
}

.card-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--dore-doux);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.05rem);
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text-dark);
  font-weight: 500;
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.hero-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

.hero-list li:last-child {
  border-bottom: none;
}

.hero-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.hero-list span {
  color: var(--text-muted);
}

.story-card,
.service-card,
.destination-card,
.review-card,
.featured-post,
.gallery-note-card {
  padding: 28px;
}

.story-card p + p,
.gallery-note-card p + p {
  margin-top: 14px;
}

.service-number,
.destination-number,
.review-number,
.blog-meta,
.masonry-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--dore-doux);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

.service-card h3,
.destination-card h3,
.review-card h3,
.featured-post h3,
.gallery-note-card h3,
.blog-card h3,
.masonry-body h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 500;
}

.service-card h3,
.destination-card h3,
.review-card h3,
.blog-card h3 {
  font-size: 1.45rem;
}

.featured-post h3 {
  font-size: 1.8rem;
}

.gallery-note-card h3 {
  font-size: 1.6rem;
}

.service-card,
.destination-card,
.review-card,
.gallery-card,
.intro-box,
.masonry-item,
.blog-card {
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service-card:hover,
.destination-card:hover,
.review-card:hover,
.gallery-card:hover,
.intro-box:hover,
.masonry-item:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(198, 167, 125, 0.22);
}

/* =====================================================
   INTRO STRIP
===================================================== */

.intro-strip {
  padding-top: 16px;
  padding-bottom: 16px;
}

.intro-grid {
  grid-template-columns: repeat(3, 1fr);
}

.intro-box {
  padding: 24px;
}

.intro-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 700;
}

.intro-box p {
  color: var(--text-muted);
}

/* =====================================================
   LISTS
===================================================== */

.destination-list,
.contact-list,
.blog-category-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.destination-list {
  margin-top: 16px;
}

.destination-list li,
.contact-list li,
.blog-category-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(216, 183, 166, 0.18);
}

.contact-list a {
  color: var(--text-dark);
  font-weight: 700;
}

.contact-list a:hover {
  color: var(--dore-doux);
}

/* =====================================================
   REVIEWS
===================================================== */

.review-text {
  font-style: italic;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.review-author {
  font-weight: 700;
  color: var(--dore-doux);
}

/* =====================================================
   GALLERY
===================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 20%, rgba(0, 0, 0, 0.48) 100%);
  color: var(--white);
}

.gallery-overlay span {
  font-size: 1.05rem;
  font-weight: 700;
}

/* =====================================================
   FAQ
===================================================== */

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border: none;
  background: transparent;
  color: var(--text-dark);
  font-weight: 700;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* =====================================================
   CONTACT / FORMS
===================================================== */

.contact-section {
  padding-top: 105px;
  padding-bottom: 105px;
}

.contact-wrap,
.contact-page-wrap {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

input,
textarea,
select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(140, 122, 115, 0.2);
  background: #fffdfb;
  color: var(--taupe-elegant);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input::placeholder,
textarea::placeholder {
  color: rgba(140, 122, 115, 0.55);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--dore-doux);
  box-shadow: 0 0 0 4px rgba(198, 167, 125, 0.16);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: 0.94rem;
  color: var(--text-muted);
}

.success-message {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(198, 167, 125, 0.18);
  color: var(--text-dark);
}

/* Contact page compatibility */
.contact-page-form,
.contact-wrap > .card:last-child {
  padding: 34px;
  border-radius: 28px;
}

.contact-page-info .section-title,
.contact-wrap .section-title {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.03;
}

.contact-page-info .section-subtitle,
.contact-wrap .section-subtitle {
  max-width: 620px;
  font-size: 1.12rem;
}

.contact-page-info .story-card {
  margin-top: 22px;
}

/* =====================================================
   BLOG
===================================================== */

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

.blog-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 24px;
}

.blog-card p,
.featured-post p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.blog-link {
  font-weight: 700;
  color: var(--dore-doux);
}

.blog-link:hover {
  opacity: 0.85;
}

/* =====================================================
   MASONRY GALLERY
===================================================== */

.masonry-grid {
  columns: 3 320px;
  column-gap: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
}

.masonry-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.masonry-body {
  padding: 16px 18px 18px;
}

.masonry-body p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text-muted);
}

/* =====================================================
   SECTION ACTIONS
===================================================== */

.section-actions {
  margin-top: 28px;
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
  background:
    radial-gradient(circle at top left, rgba(198, 167, 125, 0.18), transparent 35%),
    linear-gradient(180deg, #75645e 0%, #5f504a 100%);
  color: var(--white);
  margin-top: 40px;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding: 60px 0 35px;
}

.footer-brand,
.footer-box {
  border-radius: 24px;
  padding: 28px 22px;
}

.footer-brand {
  background: rgba(255, 255, 255, 0.08);
}

.footer-box {
  background: rgba(255, 255, 255, 0.05);
}

.footer-logo {
  width: 145px;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-links a,
.footer-contact a {
  color: var(--text-light);
}

.footer-title {
  margin-bottom: 18px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f5efe9;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 18px 0 24px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
  z-index: 9999;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

/* =====================================================
   ERROR PAGE
===================================================== */

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top left, rgba(140, 122, 115, 0.16), transparent 34%),
    linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
}

.error-page h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--text-dark);
  margin: 16px 0;
}

.error-page p {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 26px;
}

/* =====================================================
   LEGAL PAGE
===================================================== */

.legal-page {
  padding-top: 140px;
  background: linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
}

.legal-wrap {
  max-width: 900px;
}

.legal-wrap h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--text-dark);
  margin: 14px 0 18px;
}

.legal-wrap h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 1.35rem;
}

.legal-wrap p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-wrap a:not(.btn) {
  color: var(--dore-doux);
  font-weight: 700;
}

/* =====================================================
   RESPONSIVE - LARGE TABLET
===================================================== */

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid,
  .review-grid,
  .destination-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: clamp(2.6rem, 5vw, 4.3rem);
  }

  .contact-wrap,
  .contact-page-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 980px) {
  .split-grid,
  .contact-wrap,
  .contact-page-wrap,
  .footer-top,
  .form-grid,
  .intro-grid,
  .gallery-intro-grid,
  .blog-intro-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    justify-content: space-between;
  }

  .nav > nav {
    position: static;
    margin-left: 0;
  }

  .brand {
    order: 1;
  }

  .menu-btn {
    display: block;
    order: 3;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 4%;
    background: rgba(245, 239, 234, 0.98);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
    z-index: 1001;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a.active::after,
  .nav-links a[aria-current="page"]::after,
  .nav-links a:hover::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media (max-width: 768px) {
  .cards-grid,
  .review-grid,
  .destination-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 50px;
  }

  .hero::before {
    background-position: center top;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(245, 239, 234, 0.94) 0%, rgba(245, 239, 234, 0.86) 58%, rgba(95, 80, 74, 0.28) 100%);
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-content h1 {
    font-size: 2.35rem;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-tags {
    gap: 8px;
  }

  .tag {
    font-size: 0.84rem;
    padding: 9px 13px;
  }

  .gallery-card {
    min-height: 270px;
  }

  .blog-card-image {
    min-height: 220px;
  }

  .hero-card,
  .card,
  .footer-brand,
  .footer-box,
  .contact-page-form,
  .contact-wrap > .card:last-child {
    padding: 22px;
  }

  .masonry-grid {
    columns: 1;
  }

  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

/* =====================================================
   RESPONSIVE - SMALL MOBILE
===================================================== */

@media (max-width: 640px) {
  .container {
    width: 94%;
  }

  .nav {
    min-height: 74px;
    padding: 8px 0;
  }

  .brand {
    min-height: 58px;
  }

  .site-logo {
    width: 108px;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle,
  .hero-content p {
    font-size: 1rem;
  }

  .hero {
    padding: 42px 0 44px;
  }

  .hero-content h1 {
    font-size: 2.08rem;
  }

  .hero-card h2 {
    font-size: 1.45rem;
  }

  .footer-brand,
  .footer-box {
    text-align: center;
  }

  .footer-logo {
    width: 118px;
    margin: 0 auto 14px;
  }

  .whatsapp-btn {
    width: 100%;
    text-align: center;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 22px;
    right: 14px;
    bottom: 14px;
  }
}