/* ===============================
   THEME: Clean Minimal Ice (Airbnb-like)
   =============================== */

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --ink: #0e1a2b;
  --muted: #334155; /* înlocuiește #465a74 */
  --b800: #0f3d91; /* contrast îmbunătățit */
  --white: #ffffff;

  --primary-900: #0f172a;
  --primary-800: #1f2937;
  --primary-700: #1d4ed8;
  --primary-600: #2563eb;
  --primary-100: #e5efff;
  --primary-50: #f5f7ff;

  --border-subtle: #e5e7eb;
  --bg-body: #f3f4f6;

  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-soft: 0 8px 20px rgba(15, 23, 42, 0.07);
  --shadow-hover: 0 14px 35px rgba(15, 23, 42, 0.12);

  --transition-fast: 0.18s ease;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Arial, sans-serif;
  background:
    radial-gradient(1400px 700px at 0% -10%, #e5efff 0%, transparent 60%),
    radial-gradient(1000px 600px at 100% 0%, #e0f2fe 0%, transparent 65%),
    linear-gradient(180deg, #f9fafb 0%, #f3f4f6 40%, #eef2ff 100%);
}

/* ===============================
   NAV
   =============================== */

#site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease;
}

.nav-hide {
  transform: translateY(-100%);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-round {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: block;
}

.brand {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--primary-900);
  font-size: 1rem;
}

.main-menu {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.main-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background var(--transition-fast), color var(--transition-fast),
    transform var(--transition-fast);
}

.main-menu a:hover {
  background: #e5efff;
  color: var(--primary-800);
  transform: translateY(-1px);
}

.main-menu a.active {
  background: #1d4ed8;
  color: #ffffff;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 6px;
}

.hamburger .line {
  width: 28px;
  height: 2px;
  background: var(--primary-900);
  display: block;
  margin: 6px 0;
  transition: 0.25s;
}

.hamburger-active .line:nth-child(2) {
  width: 0;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(8px);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-8px) rotate(90deg);
}

/* Mobile menu panel */
.menubar {
  position: fixed;
  inset: 0 auto 0 -70%;
  width: 70%;
  height: 100dvh;
  background: #ffffff;
  box-shadow: 8px 0 35px rgba(15, 23, 42, 0.18);
  padding: 80px 24px 32px;
  transition: left 0.38s ease;
  left: -70%;
  z-index: 120;
}

.menubar.active {
  left: 0;
}

.menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menubar li {
  margin-bottom: 18px;
}

.menubar a {
  display: block;
  color: var(--primary-800);
  text-decoration: none;
  font-weight: 700;
  padding: 14px 16px;
  font-size: 1.1rem;
  border-radius: 12px;
}

.menubar a:hover {
  background: #eff6ff;
}

.snap-video {
  object-fit: cover;
  border-radius: var(--radius-lg);
}
/* ===============================
   HERO (HOME)
   =============================== */

.hero {
  width: min(1200px, 96%);
  margin: 32px auto 10px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.hero-title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.6rem);
  line-height: 1.15;
  color: var(--primary-900);
  margin: 0 0 14px;
}

.hero-text {
  font-size: 1.02rem;
  color: var(--muted);
  margin: 0 0 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.4);
}

.btn-ghost {
  color: var(--primary-700);
  background: #e5efff;
  border-color: #cbd5f5;
}

.btn-ghost:hover {
  background: #dbeafe;
}

/* Hero bullets */
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  color: var(--primary-800);
  font-weight: 600;
  display: grid;
  gap: 4px;
  font-size: 0.95rem;
}

/* Hero image */
.hero-right .hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ===============================
   FEATURES
   =============================== */

.features {
  width: min(1200px, 96%);
  margin: 24px auto 8px;
}

.section-head {
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  color: var(--primary-900);
  font-size: clamp(1.3rem, 1rem + 1.5vw, 2rem);
  margin: 0 0 6px;
}

.section-sub {
  color: var(--muted) !important;
  margin: 0;
  font-size: 0.95rem;
}

.features-grid {
  margin-top: 18px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 18px 16px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.ic {
  font-size: 24px;
  margin-bottom: 6px;
}

.feature h3 {
  margin: 0 0 4px;
  color: var(--primary-800);
  font-size: 1rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ===============================
   GALLERY (SCROLL-SNAP)
   =============================== */

.gallery {
  width: min(1200px, 96%);
  margin: 26px auto 10px;
}

/* ===== GALLERY (scroll-snap) ===== */
.gallery {
  width:min(1200px,96%);
  margin:24px auto;
}

.snap-row {
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  
  padding:8px;
  border-radius:16px;
  background:#fff;
  border:1px solid #e7efff;
  box-shadow:var(--sh-sm);

  /* eliminare spațiu inutil */
  white-space:nowrap;
}

.snap-item {
  flex:0 0 auto;
  width:280px; /* fix pentru glisare perfectă */
  height:auto;
  aspect-ratio:9/16;
  object-fit:cover;

  border-radius:22px;
  scroll-snap-align:center;
}

/* ascundem scrollbar-ul */
.snap-row::-webkit-scrollbar {
  display:none;
}
.snap-row {
  -ms-overflow-style:none;
  scrollbar-width:none;
}



/* ===============================
   CONTENT SEO BOX
   =============================== */

.content-box {
  width: min(1100px, 94%);
  margin: 26px auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 24px 20px;
  box-shadow: var(--shadow-soft);
}

.pill-title,
.pill-subtitle {
  display: inline-block;
  margin: 4px 0 10px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #111827;
  font-weight: 700;
  background: #e5efff;
  font-size: 0.92rem;
}

.pill-subtitle {
  font-size: 0.88rem;
}

.content-box p {
  color: #111827;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ===============================
   CTA WIDE
   =============================== */

.cta-wide {
  width: min(1200px, 96%);
  margin: 24px auto 40px;
  text-align: center;
  background: #e5efff;
  border-radius: var(--radius-lg);
  border: 1px solid #cbd5f5;
  padding: 26px 18px;
}

.cta-wide h2 {
  margin: 0 0 6px;
  color: var(--primary-900);
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
}

.cta-wide p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ===============================
   BLOG & SERVICII – LISTĂ CARDURI
   =============================== */

.page-title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin: 40px auto 18px;
  color: var(--primary-900);
}

.blog-list {
  width: 100%;
  max-width: 1200px;
  margin: 18px auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.blog-card {
  display: block;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.blog-card h3 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 14px 16px 6px;
  color: var(--primary-900);
}

.blog-card p {
  font-size: 0.93rem;
  margin: 0 16px 10px;
  color: var(--muted);
  line-height: 1.5;
}

.blog-date {
  display: block;
  font-size: 0.8rem;
  color: var(--muted-soft);
  margin: 0 16px 14px;
}

/* ===============================
   PAGINĂ ARTICOL / SERVICIU
   =============================== */

.blog-article {
  max-width: 850px;
  margin: 48px auto 70px;
  padding: 0 18px;
}

.blog-article h1 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 18px;
  text-align: center;
}

.article-featured {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  display: block;
  box-shadow: var(--shadow-soft);
}

.article-body {
  font-size: 1rem;
  color: #111827;
  line-height: 1.8;
}

.article-body p {
  margin-bottom: 14px;
}

.article-body h2,
.article-body h3 {
  font-family: "Montserrat", system-ui, sans-serif;
  margin: 24px 0 10px;
  color: var(--primary-900);
  font-size: 1.15rem;
}

.article-body ul {
  margin: 0 0 14px 20px;
  padding: 0;
}

.article-body li {
  margin-bottom: 8px;
}

/* ===============================
   REZERVARE – FORM
   =============================== */

.res-page {
  width: min(1100px, 94%);
  margin: 32px auto 50px;
}

.res-intro {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 24px 20px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-soft);
}

.res-intro h1 {
  margin: 0 0 10px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary-900);
  text-align: center;
}

.res-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  text-align: center;
}

/* Form container */
.res-form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 24px 20px;
  box-shadow: var(--shadow-soft);
}

.res-form h2 {
  margin: 0 0 14px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  color: var(--primary-900);
  text-align: center;
}

/* Form grid */
.content-box form,
.res-form form {
  margin-top: 14px;
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.input-group,
.res-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label,
.res-form label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-900);
}

.input-group input,
.input-group select,
.res-form input,
.res-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}

.input-group input:focus,
.input-group select:focus,
.res-form input:focus,
.res-form select:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

/* Submit button */
.res-btn,
button.btn.btn-primary {
  width: 100%;
  margin-top: 6px;
  font-size: 1rem;
}

/* Phone error */
#phone-error {
  font-size: 0.8rem;
  margin-top: -2px;
  color: #dc2626;
}

/* ===============================
   SUCCESS MODAL
   =============================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-box {
  background: #ffffff;
  width: min(480px, 90%);
  border-radius: var(--radius-lg);
  padding: 26px 22px 28px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.3);
  animation: modalPop 0.25s ease;
}

@keyframes modalPop {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-box .checkmark {
  font-size: 40px;
  margin-bottom: 10px;
}

.modal-box h2 {
  margin: 0 0 8px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  color: var(--primary-900);
  font-size: 1.4rem;
}

.modal-box p {
  margin: 4px 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.modal-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.modal-actions .btn {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.modal-actions .btn-ghost {
  background: #e5e7eb;
  border-color: #d1d5db;
  color: var(--primary-800);
}

.modal-actions .btn-ghost:hover {
  background: #d4d4d8;
}

/* ========================================================
   FOOTER — LUXURY RESORT FROST DESIGN (2025 Premium)
   ======================================================== */

footer {
    background: radial-gradient(circle at top, rgba(75,131,255,0.10), transparent 60%),
                #050914;
    padding: 110px 20px 60px;
    color: #dfe7f5;
    font-family: "Manrope", sans-serif;
    position: relative;
    overflow: hidden;
}

/* Glow top line */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5ab8ff, transparent);
    opacity: .55;
}

/* Frost particles */
footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,\
    <svg width="300" height="300" xmlns="http://www.w3.org/2000/svg">\
      <circle cx="40" cy="60" r="1" fill="white" opacity="0.18" />\
      <circle cx="200" cy="140" r="1" fill="white" opacity="0.15" />\
      <circle cx="120" cy="220" r="1" fill="white" opacity="0.10" />\
    </svg>') repeat;
    opacity: .07;
    pointer-events: none;
}

/* Main grid */
.footer-wrapper {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 70px;
    position: relative;
    z-index: 2;
}

/* Brand area */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.footer-brand img {
    width: 110px;
    height: 110px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.footer-brand p {
    max-width: 380px;
    font-size: 1.1rem;
    line-height: 1.75;
    color: #cdd8ee;
}

/* Column headings */
.footer-col h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: .4px;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 14px;
}

.footer-col a {
    color: #b9c4da;
    text-decoration: none;
    font-size: 1rem;
    transition: .25s ease;
}

.footer-col a:hover {
    color: #7bc9ff;
    text-shadow: 0 0 8px rgba(123,201,255,0.5);
}

/* Social icons – luxury minimal */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    font-size: 1.3rem;
    color: #f5f8ff;
    transition: .25s ease;
    backdrop-filter: blur(8px);
}

.footer-social a:hover {
    background: #69c3ff;
    color: #03101e;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(105,195,255,0.45);
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: .95rem;
    color: #aab4c8;
}

/* Responsive */
@media(max-width: 1000px){
    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}
@media(max-width: 600px){
    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand {
        align-items: center;
    }
    .footer-social {
        justify-content: center;
    }
}


.float-wapp {
    all: unset !important; /* Șterge TOT ce moștenește */
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    width: 64px !important;
    height: 64px !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    background-color: #25d366 !important;
    border-radius: 50% !important;

    cursor: pointer !important;
    z-index: 999999 !important;

    background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 32 32' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.001 3.2c-7.06 0-12.8 5.74-12.8 12.8 0 2.257.589 4.457 1.707 6.4L3.2 28.8l6.6-1.662a12.74 12.74 0 0 0 6.201 1.562h.002c7.059 0 12.8-5.74 12.8-12.8 0-3.417-1.333-6.633-3.76-9.06A12.74 12.74 0 0 0 16.001 3.2zm0 23.04h-.002a10.25 10.25 0 0 1-5.218-1.437l-.374-.223-3.918.987 1.045-3.787-.243-.39A10.22 10.22 0 0 1 5.75 16c0-5.65 4.6-10.25 10.25-10.25 2.74 0 5.316 1.067 7.257 3.007A10.22 10.22 0 0 1 26.25 16c0 5.65-4.6 10.25-10.249 10.25zm5.499-7.46c-.3-.149-1.768-.871-2.043-.97-.275-.099-.475-.149-.674.15-.2.3-.774.97-.95 1.17-.175.2-.35.225-.649.075-.3-.149-1.262-.465-2.4-1.483-.887-.79-1.486-1.761-1.661-2.061-.175-.3-.018-.462.132-.611.136-.135.3-.35.45-.524.15-.174.2-.3.3-.499.1-.2.05-.375-.025-.524-.075-.149-.674-1.612-.924-2.212-.243-.583-.491-.504-.675-.512a1.31 1.31 0 0 0-.575.075c-.2.099-.524.3-.799.599-.275.3-1.049 1.024-1.049 2.499 0 1.475 1.074 2.9 1.224 3.099.149.2 2.112 3.225 5.113 4.524.714.308 1.27.492 1.705.63.716.227 1.367.195 1.883.118.575-.086 1.768-.723 2.018-1.423.25-.7.25-1.299.175-1.423-.075-.125-.275-.2-.575-.35z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 60% !important;
}



/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 1080px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .main-menu {
    display: none;
  }

  .hamburger {
    display: block;
	padding: 14px;
  	width: 48px;
  	height: 48px;
  }

  .brand {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    order: -1;
  }

  .snap-item {
    flex-basis: 65%;
    max-width: 65%;
  }
}

@media (max-width: 720px) {
  .logo-round {
    width: 46px;
    height: 46px;
  }

  .hero {
    width: 94%;
    margin-top: 22px;
  }

  .content-box,
  .cta-wide {
    width: 94%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-title {
    font-size: 1.6rem;
  }

  .blog-card img {
    height: 170px;
  }

  .blog-article {
    margin-top: 28px;
  }

  .blog-article h1 {
    font-size: 1.6rem;
  }

  .snap-item {
    flex-basis: 80%;
    max-width: 80%;
  }
}
/* ===============================
   CONTACT PAGE — MATCH RESERVATION STYLE
   =============================== */

.contact-page {
  width: min(1100px, 94%);
  margin: 40px auto 80px;
}

/* Intro */
.contact-intro {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e7e9f5;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.contact-intro h1 {
  font-family: "Montserrat";
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 8px;
}

.contact-intro p {
  font-size: 1.05rem;
  color: var(--muted);
}

/* GRID CARDS */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-bottom: 40px;
}

.contact-card {
  background: #ffffff;
  padding: 26px 24px;
  border-radius: 18px;
  border: 1px solid #e6eeff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  text-align: center;
  transition: .25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.contact-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-900);
}

.contact-card p {
  font-size: 1.05rem;
}

.contact-card a {
  color: var(--primary-700);
  font-weight: 600;
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}

/* FORM BOX */
.contact-form-box {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e7e9f5;
  padding: 32px 26px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  margin-bottom: 40px;
}

.contact-form-box h2 {
  text-align:center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form .form-group label {
  font-weight: 700;
  color: var(--primary-900);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #d6d9e8;
  background:#fff;
  font-size:1rem;
  transition:.2s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color:#2563eb;
  box-shadow:0 0 0 3px rgba(37,99,235,.25);
  outline:none;
}

/* Map */
.contact-map iframe {
  width: 100%;
  height: 380px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 700px) {
  .contact-form button {
    width: 100%;
  }
}
/* ===== BLOG DROPDOWN ===== */

.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 46px;
    background: #ffffff;
    padding: 12px 0;
    border-radius: 12px;
    list-style: none;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 200;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
    transition: 0.2s;
    border-radius: 8px;
}

.dropdown-menu li a:hover {
    background: #e5efff;
    color: #1d4ed8;
}
.submenu-mobile a {
    display: block;
    padding: 10px 14px;
    font-size: 1rem;
    color: #374151;
    text-decoration: none;
}

.submenu-mobile a:hover {
    background: #eef4ff;
    color: #1d4ed8;
}

