:root {
  --bg-dark: #0f1c2c;      /* Deep midnight blue */
  --bg-slate: #1e2e3e;     /* Slate dark blue */
  --cream: #f4f6f8;        /* Light cool gray/blue background */
  --paper: #e5edf5;        /* Soft ice blue panel background */
  --primary: #106ebe;      /* Clear water blue/azure */
  --primary-soft: #0086d4; /* Vivid sky blue */
  --primary-light: #bde0fe; /* Light baby blue */
  --ink: #111a24;          /* Slate navy black */
  --muted: #5b6c7d;        /* Muted cool gray */
  --line: rgba(16, 110, 190, 0.2);
  --glass: rgba(255, 255, 255, 0.82);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

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

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

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  max-width: 1240px;
  margin: 0 auto;
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
}

.logo span {
  color: var(--primary-soft);
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
  transition: 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--primary-light);
}

.nav-cta {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 700;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(16, 110, 190, 0.2);
}

.nav-cta:hover {
  background: var(--primary-soft);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: 0.2s;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke-width: 2px;
}

.menu-toggle:hover {
  color: var(--primary-soft);
}

@media(max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 28, 44, 0.96);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    padding: 14px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    font-size: 14px;
    letter-spacing: 2.5px;
  }
  .nav-links a:last-child {
    border-bottom: 0;
  }
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

/* HERO */
.hero {
  position: relative;
  height: calc(100vh - 78px);
  overflow: hidden;
  display: block;
}

.hero-banner {
  position: absolute;
  inset: 0;
  background-image: url('images/hero/desktop-hero.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  display: none;
}

.res-container {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  padding: 0 28px;
}

/* Glassmorphism Reservation card */
.res-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 50px -10px rgba(13, 27, 42, 0.18);
  border-top: 3.5px solid var(--primary);
  border-radius: 8px;
  padding: 20px 28px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.res-card-top-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(17, 26, 36, 0.08);
}

.badge-safe {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
}

.desc-safe {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.res-card-fields {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: flex-end;
}

.res-card-fields .field {
  flex: 1;
}

.res-card-fields .field label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.res-card-fields input, .res-card-fields select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(17, 26, 36, 0.15);
  background: #fff;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  height: 45px;
  transition: border-color 0.2s;
}

.res-card-fields input:focus, .res-card-fields select:focus {
  outline: none;
  border-color: var(--primary);
}

.res-card-fields .res-btn {
  margin-top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border: 0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 700;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  flex: 1;
}

.res-card-fields .res-btn:hover {
  background: var(--primary);
  box-shadow: 0 4px 15px rgba(16, 110, 190, 0.3);
}

#res-child-ages-container {
  margin-bottom: 8px;
}

.child-ages-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

#res-child-ages-grid {
  display: grid;
  gap: 14px;
}

#res-child-ages-grid[data-count="1"] {
  grid-template-columns: 1fr;
}

#res-child-ages-grid[data-count="2"] {
  grid-template-columns: 1fr 1fr;
}

#res-child-ages-grid[data-count="3"] {
  grid-template-columns: 1fr 1fr 1fr;
}

.res-note-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  font-size: 11px;
}

.res-support-badge {
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.res-links {
  display: flex;
  gap: 16px;
}

.res-links a {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.res-link-wa {
  color: #25D366;
}

.res-link-call {
  color: var(--ink);
}

@media(max-width: 860px) {
  .hero {
    min-height: auto;
    height: auto;
    display: block;
  }
  
  .hero-banner {
    position: relative;
    height: 380px;
    background-image: url('images/hero/mobile-hero.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
  }
  
  .res-container {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 0 14px;
    margin-top: 20px;
  }
  
  .res-card {
    padding: 24px;
    gap: 16px;
  }
  
  .res-card-top-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .res-card-fields {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .res-card-fields .field {
    width: 100%;
  }
  
  .res-card-fields .res-btn {
    width: 100%;
    margin-top: 6px;
  }
  
  .res-note-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  
  .res-links {
    justify-content: center;
    width: 100%;
  }
}

/* SECTION base */
section {
  padding: 110px 0;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  font-weight: 700;
}

.sec-title {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--ink);
}

.sec-title em {
  font-style: normal;
  color: var(--primary);
}

.sec-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 680px;
  font-weight: 400;
}

.center {
  text-align: center;
  margin: 0 auto;
}

/* INTRO (Hakkımızda) */
.intro {
  background: var(--paper);
}

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

.intro-img {
  position: relative;
}

.intro-img img {
  height: 560px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(13, 27, 42, 0.1);
}

.intro-img::after {
  content: "";
  position: absolute;
  inset: 20px 20px -20px -20px;
  border: 1.5px solid var(--primary);
  z-index: -1;
  border-radius: 4px;
}

.feature-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-list li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

.feature-list li::before {
  content: "✓";
  flex: 0 0 18px;
  height: 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  font-weight: bold;
}

@media(max-width: 860px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .intro-img img {
    height: 380px;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
}

/* CONCEPT band (Termal Kaynak Üstünlüğü) */
.band {
  background: var(--bg-dark);
  color: #fff;
  padding: 90px 0;
}

.band-in {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.band h2 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.band p {
  font-size: 16px;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.8;
}

@media(max-width: 860px) {
  .band-in {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .band h2 {
    white-space: normal;
  }
}

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

.feat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-soft);
  box-shadow: 0 10px 25px rgba(0, 134, 212, 0.15);
}

.feat-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.feat-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  color: #fff;
  letter-spacing: 0.5px;
}

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

@media(max-width: 520px) {
  .feature-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ROOMS (Odalar) */
.rooms {
  background: var(--cream);
}

/* YATAY DETAYLI ÖZEL ODA VİTRİNİ */
.room-featured {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px -15px rgba(13, 27, 42, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-left: 5px solid var(--primary);
  max-width: 1100px;
  margin: 0 auto;
}

.room-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px -15px rgba(13, 27, 42, 0.15);
}

.room-featured-img {
  position: relative;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
}

.room-featured-img .slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.room-featured-img .slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s;
  z-index: 1;
}

.room-featured-img .slides img.active {
  opacity: 1;
  z-index: 2;
}

.room-featured:hover .room-featured-img .slides img.active {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--primary-soft);
  color: #fff;
  font-size: 11px;
  padding: 6px 14px;
  letter-spacing: 1px;
  font-weight: 700;
  border-radius: 4px;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 134, 212, 0.2);
}

.badge-count {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(13, 27, 42, 0.85);
  color: #fff;
  font-size: 10px;
  padding: 6px 12px;
  letter-spacing: 1px;
  border-radius: 4px;
  z-index: 3;
  font-weight: 700;
}

.room-featured-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-featured-body .cap {
  font-size: 11px;
  color: var(--primary-soft);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 800;
}

.room-featured-body h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.room-featured-body .capacity {
  margin-bottom: 22px;
  font-size: 14px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.room-featured-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--paper);
}

.amenity-item {
  font-size: 13.5px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.price-showcase {
  margin-bottom: 28px;
}

.price-val {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.old-price {
  font-size: 15px;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.new-price {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-per {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  font-weight: 700;
}

.book-btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 14px 30px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 15px rgba(17, 26, 36, 0.15);
  align-self: flex-start;
}

.book-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 110, 190, 0.3);
}

@media(max-width: 900px) {
  .room-featured {
    grid-template-columns: 1fr;
  }
  .room-featured-img {
    height: 320px;
    min-height: auto;
  }
  .room-featured-body {
    padding: 30px;
  }
  .book-btn {
    align-self: stretch;
  }
}

/* CAMPAIGNS (Kampanyalar) */
.campaigns {
  background: var(--paper);
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

/* OVERLAY KAMPANYA KARTLARI */
.campaign-card-overlay {
  position: relative;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px -12px rgba(13, 27, 42, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.campaign-card-overlay:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px -15px rgba(13, 27, 42, 0.25);
}

.campaign-card-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.campaign-card-overlay::after {
  display: none;
}

.campaign-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 3;
  color: #fff;
}

.campaign-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(16, 110, 190, 0.3);
}

.campaign-overlay-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.campaign-overlay-content p {
  font-size: 13.5px;
  opacity: 0.88;
  margin-bottom: 16px;
  line-height: 1.5;
}

.campaign-overlay-btn {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s, gap 0.2s;
}

.campaign-overlay-btn:hover {
  color: #fff;
  gap: 10px;
}

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

@media(max-width: 640px) {
  .campaign-grid {
    grid-template-columns: 1fr;
  }
}

/* ACTIVITIES (Tesis İmkanları) */
.acts {
  background: var(--bg-slate);
  color: #fff;
}

.acts .sec-title {
  color: #fff;
}

.acts .eyebrow {
  color: var(--primary-light);
}

.acts .sec-lead {
  color: var(--paper);
  opacity: 0.85;
}

.act-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.act {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(13, 27, 42, 0.15);
}

.act .slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.act .slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s;
  z-index: 1;
}

.act .slides img.active {
  opacity: 1;
  z-index: 2;
}

.act:hover .slides img.active {
  transform: scale(1.05);
}

.act::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13, 27, 42, 0.95) 100%);
  z-index: 3;
}

.act-cap {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 4;
}

.act-cap h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 800;
}

.act-cap p {
  font-size: 13.5px;
  opacity: 0.85;
  line-height: 1.6;
  font-weight: 400;
}

@media(max-width: 860px) {
  .act-grid {
    grid-template-columns: 1fr;
  }
}

/* AMENITY STRIP */
.strip {
  background: var(--primary);
  padding: 30px 0;
  color: #fff;
  box-shadow: 0 4px 15px rgba(16, 110, 190, 0.15);
}

.strip-in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  align-items: center;
}

.strip-item {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.strip-item::before {
  content: "✦";
  font-size: 12px;
  color: var(--primary-light);
}

/* GALLERY */
.gallery {
  background: var(--paper);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 60px;
}

.gal-grid div {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(13, 27, 42, 0.05);
}

.gal-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

.gal-grid div:hover img {
  transform: scale(1.05);
}

.gal-grid .big {
  grid-column: span 2;
  grid-row: span 2;
}

.gal-grid .wide {
  grid-column: span 2;
}

@media(max-width: 860px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-grid .big, .gal-grid .wide {
    grid-column: span 2;
    grid-row: auto;
  }
}

/* CONTACT */
.contact {
  background: var(--bg-dark);
  color: #fff;
}

.contact .sec-title {
  color: #fff;
}

.contact .sec-lead {
  color: var(--paper);
  opacity: 0.85;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  margin-top: 60px;
}

.info-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px;
  border-radius: 6px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s;
}

.info-card:hover {
  border-color: rgba(16, 110, 190, 0.3);
}

.info-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: 0 0 44px;
  box-shadow: 0 4px 10px rgba(16, 110, 190, 0.25);
}

.info-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.info-card p {
  font-size: 14.5px;
  opacity: 0.85;
  font-weight: 400;
}

.info-card a {
  color: #fff;
}

.call-form {
  background: var(--paper);
  color: var(--ink);
  padding: 36px;
  border-radius: 6px;
  border-top: 3.5px solid var(--primary);
  box-shadow: 0 15px 35px rgba(13, 27, 42, 0.1);
}

.call-form h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}

.call-form .sub {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  font-weight: 600;
}

.call-form .field {
  margin-bottom: 14px;
}

.call-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}

.call-form input,
.call-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(17, 26, 36, 0.15);
  background: #fff;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  height: 45px;
  transition: border-color 0.2s;
}

.call-form input:focus,
.call-form select:focus {
  outline: none;
  border-color: var(--primary);
}

.call-form .res-btn {
  width: 100%;
  margin-top: 14px;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border: 0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 700;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.call-form .res-btn:hover {
  background: var(--primary);
  box-shadow: 0 4px 15px rgba(16, 110, 190, 0.3);
}

.call-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(17, 26, 36, 0.15);
  background: #fff;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  min-height: 90px;
  resize: vertical;
  transition: border-color 0.2s;
}

.call-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.wa-btn {
  display: block;
  text-align: center;
  margin-top: 14px;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
  transition: background 0.3s, transform 0.2s;
}

.wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

@media(max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
footer {
  background: #090f17;
  color: var(--paper);
  padding: 50px 0 30px;
  text-align: center;
  font-size: 13.5px;
  opacity: 0.95;
}

footer .social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
}

footer .social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

footer .social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(16, 110, 190, 0.3);
}

footer .copy {
  opacity: 0.6;
  font-size: 12px;
  margin-top: 14px;
}

/* FAB */
.fabs {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.4);
  transition: 0.2s;
}

.fab:hover {
  transform: scale(1.08);
}

.fab.wa {
  background: #25D366;
}

.fab.call {
  background: var(--primary);
  color: #fff;
}

[data-fancybox] {
  cursor: pointer;
}

/* MOBILE BOTTOM BAR */
.mobile-bottom-bar {
  display: none;
}

@media(max-width: 860px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 480px;
    z-index: 99;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    padding: 10px 16px;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 10px 30px rgba(13, 27, 42, 0.12);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s, background 0.4s, border-radius 0.4s, transform 0.4s;
  }
  .mobile-bottom-bar.collapsed {
    width: calc(100% - 60px);
    padding: 6px 16px;
    transform: translateX(-50%);
  }
  .mobile-bottom-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--ink);
    opacity: 0.7;
    transition: color 0.2s, transform 0.2s, opacity 0.2s, font-size 0.3s;
    font-weight: 700;
  }
  .mobile-bottom-bar a:hover, .mobile-bottom-bar a.active {
    color: var(--primary);
    opacity: 1;
    transform: translateY(-2px);
  }
  .mobile-bottom-bar a svg {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
    transition: width 0.3s ease, height 0.3s ease;
  }
  .mobile-bottom-bar.collapsed a {
    font-size: 9px;
  }
  .mobile-bottom-bar.collapsed a svg {
    width: 18px;
    height: 18px;
  }
  .fabs {
    right: 0;
    bottom: 95px;
    gap: 8px;
    z-index: 98;
  }
  .fab {
    border-radius: 4px 0 0 4px;
    width: 50px;
    height: 50px;
    font-size: 20px;
    box-shadow: -2px 5px 15px rgba(0, 0, 0, 0.2);
  }
}
