/* ================================================================
   TEMA 2 — Modern Editorial Landing
================================================================ */
:root {
  --navy:  #1E3582;
  --blue:  #1876BB;
  --ink:   #0d1b3e;
  --pale:  #f3f6fc;
  --rule:  #e2e8f5;
  --muted: #6b7a9d;
}
*, *::before, *::after { box-sizing: border-box; }
body { background: #fff !important; color: var(--ink); }

/* ---- HEADER ---- */
.header { background: #fff !important; box-shadow: 0 1px 0 var(--rule) !important; border-radius: 0 !important; }
.header .logo img { filter: none !important; height: 54px; width: auto; }
.header .navbar .language-button { color: var(--ink) !important; border-color: var(--rule) !important; background: transparent !important; }
.header .navbar .language-button.active,
.header .navbar .language-button:hover { background: var(--navy) !important; border-color: var(--navy) !important; color: #fff !important; }

/* ---- FORM BUTTON ---- */
.js-open-form { background: var(--navy) !important; border-radius: 0 !important; }
.js-open-form:hover { background: var(--blue) !important; }

/* ---- STICKY FORM ---- */
#sticky-form { background: var(--navy) !important; }
#sticky-form .form-top { background: var(--navy) !important; border-bottom: 1px solid rgba(255,255,255,.12) !important; }
#sticky-form .form-title { color: #fff !important; }
#sticky-form .js-close-form { background: rgba(255,255,255,.12) !important; border: none !important; border-radius: 50% !important; width: 40px !important; height: 40px !important; display: flex !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; }
#sticky-form .js-close-form i { color: #fff !important; font-size: 17px !important; }
#sticky-form .js-close-form:hover { background: rgba(255,255,255,.22) !important; }
#sticky-form .floor-select-wrapper { display: none !important; }
#sticky-form .form-input { background: rgba(255,255,255,.1) !important; border: 1px solid rgba(255,255,255,.18) !important; border-radius: 8px !important; color: #fff !important; }
#sticky-form .form-input::placeholder { color: rgba(255,255,255,.45) !important; }
#sticky-form .form-input:focus { border-color: rgba(255,255,255,.6) !important; }
#sticky-form .iti { width: 100% !important; }
#sticky-form .iti__selected-dial-code { color: #fff !important; }
#sticky-form .form-checkbox label span { color: rgba(255,255,255,.72) !important; }
#sticky-form .form-checkbox label span a, #sticky-form .form-checkbox label span strong { color: #fff !important; }
#sticky-form .custom-checkbox { border: 2px solid rgba(255,255,255,.3) !important; background: transparent !important; border-radius: 3px !important; }
#sticky-form .submit-button { background: var(--blue) !important; border-radius: 8px !important; border: none !important; }
#sticky-form .submit-button:hover { background: #1560a0 !important; }
#sticky-form .submit-button span { color: #fff !important; }

/* ---- FORM VALIDATION ERRORS ---- */
#sticky-form .form-input.error { border-color: red !important; }
#sticky-form .form-checkbox.error .custom-checkbox { border-color: red !important; }
#sticky-form .form-checkbox.error label span { color: red !important; }
#sticky-form select.js-select-2.error + .select2 .select2-selection { border-color: red !important; }

/* ---- CHECKBOX FIX (clickable on all devices) ---- */
#sticky-form .form-checkbox input[type="checkbox"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  visibility: visible !important;
  z-index: auto !important;
  opacity: 0 !important;
}
#sticky-form .form-checkbox label { cursor: pointer; }
#sticky-form .form-checkbox input[type="checkbox"]:checked + .custom-checkbox { background-color: rgba(255,255,255,.2) !important; border-color: #fff !important; }
#sticky-form .form-checkbox input[type="checkbox"]:checked + .custom-checkbox svg { opacity: 1 !important; }

/* ---- HERO ---- */
.v2-hero { background: #fff; padding: 60px 0 80px; overflow: hidden; }
.v2-hero-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 42fr 58fr; gap: 56px; align-items: center;
}
.v2-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pale); border: 1px solid var(--rule); border-radius: 100px; padding: 6px 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 28px;
}
.v2-hero-tag span { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); display: inline-block; }
.v2-hero-h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem); font-weight: 900;
  line-height: 1.08; color: var(--ink); letter-spacing: -1.5px; margin-bottom: 24px;
}
.v2-hero-h1 em { font-style: normal; color: var(--navy); }
.v2-hero-desc { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 40px; max-width: 420px; }
.v2-hero-stats { display: flex; gap: 0; border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; }
.v2-hstat { flex: 1; padding: 16px 18px; border-right: 1px solid var(--rule); }
.v2-hstat:last-child { border-right: none; }
.v2-hstat b { display: block; font-size: 1.1rem; font-weight: 900; color: var(--navy); }
.v2-hstat small { display: block; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.v2-hero-card {
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(30,53,130,.14), 0 2px 12px rgba(30,53,130,.06);
  position: relative; aspect-ratio: 4/3;
}
.v2-hero-card .slider-section { height: 100% !important; padding: 0 !important; margin: 0 !important; }
.v2-hero-card .slider-section .container { max-width: 100% !important; padding: 0 !important; height: 100% !important; }
.v2-hero-card .slider-section .swiper { height: 100% !important; }
.v2-hero-card .slider-section .swiper .swiper-slide { height: 100% !important; overflow: hidden; }
.v2-hero-card .slider-section .swiper .swiper-slide picture { width: 100% !important; height: 100% !important; display: block; }
.v2-hero-card .slider-section .swiper .swiper-slide img { width: 100% !important; height: 100% !important; object-fit: cover !important; border-radius: 0 !important; }
.v2-hero-card .slider-section .swiper .slider-controls { display: none !important; }
.v2-hero-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,27,62,.72) 0%, transparent 100%);
  pointer-events: none; height: 120px;
}
.v2-hero-badge {
  position: absolute; top: 20px; left: 20px; z-index: 10;
  background: var(--navy); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 14px; border-radius: 8px;
}
@media (max-width: 1024px) {
  .v2-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .v2-hero-h1 { font-size: 2.6rem; }
}
@media (max-width: 640px) {
  .v2-hero { padding: 32px 0 48px; }
  .v2-hero-inner { padding: 0 16px; }
  .v2-hero-h1 { font-size: 2rem; }
  .v2-hero-stats { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .v2-hero-stats::-webkit-scrollbar { display: none; }
  .v2-hstat { flex: 0 0 auto; min-width: 120px; border-right: 1px solid var(--rule); border-bottom: none; }
  .v2-hstat:last-child { border-right: none; }
  .v2-hero-card { aspect-ratio: unset !important; height: 260px; }
}

/* ---- YAŞAM ---- */
[data-aos="flip-left"],[data-aos="flip-right"],[data-aos="flip-up"],[data-aos="flip-down"] { transform: none !important; opacity: 1 !important; }
.v2-section { position: relative; overflow: hidden; }
.v2-section[data-num]::before {
  content: attr(data-num); position: absolute; top: -20px; right: 40px;
  font-size: 13rem; font-weight: 900; color: var(--navy); opacity: .04;
  line-height: 1; pointer-events: none; letter-spacing: -8px; z-index: 0;
}
.v2-life { background: var(--pale); padding: 100px 0; }
.v2-life-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 440px; gap: 0; align-items: stretch;
}
.v2-life-img { position: relative; border-radius: 20px 0 0 20px; overflow: hidden; }
.v2-life-img img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; display: block; }
.v2-life-text {
  background: var(--navy); border-radius: 0 20px 20px 0;
  padding: 64px 52px; display: flex; flex-direction: column; justify-content: center; position: relative;
}
.v2-life-text::before {
  content: '01'; position: absolute; bottom: -10px; right: 20px;
  font-size: 7rem; font-weight: 900; color: rgba(255,255,255,.06); line-height: 1; pointer-events: none;
}
.v2-tag-light {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border-radius: 100px; padding: 5px 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.8); margin-bottom: 22px; align-self: flex-start;
}
.v2-life-text h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 900; color: #fff; line-height: 1.18; margin-bottom: 22px; letter-spacing: -.3px; }
.v2-life-text h2 span { color: #74B3E8; }
.v2-life-text p { color: rgba(255,255,255,.65); line-height: 1.78; font-size: 15px; margin: 0; }
@media (max-width: 992px) {
  .v2-life { padding: 60px 0; }
  .v2-life-inner { grid-template-columns: 1fr; padding: 0 20px; }
  .v2-life-img { border-radius: 16px 16px 0 0; }
  .v2-life-img img { min-height: 280px; }
  .v2-life-text { border-radius: 0 0 16px 16px; padding: 40px 32px; }
}

/* ---- YATIRIM ---- */
.v2-invest { background: #fff; padding: 100px 0; }
.v2-invest-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.v2-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pale); border: 1px solid var(--rule); border-radius: 100px; padding: 5px 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px; align-self: flex-start;
}
.v2-invest-text h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 900; color: var(--ink); line-height: 1.15; margin-bottom: 22px; letter-spacing: -.4px; }
.v2-invest-text h2 em { font-style: normal; color: var(--navy); }
.v2-invest-text p { color: var(--muted); line-height: 1.78; font-size: 15px; margin-bottom: 36px; }
.v2-invest-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.v2-kpi { border: 1px solid var(--rule); border-radius: 14px; padding: 20px; border-left: 4px solid var(--navy); }
.v2-kpi b { display: block; font-size: 1.5rem; font-weight: 900; color: var(--navy); }
.v2-kpi span { font-size: 12px; color: var(--muted); font-weight: 600; }
.v2-invest-img { position: relative; }
.v2-invest-img img { width: 100%; border-radius: 20px; display: block; object-fit: cover; height: 520px; }
.v2-invest-img::before { content: ''; position: absolute; top: -16px; right: -16px; bottom: 16px; left: 16px; border: 2px solid var(--rule); border-radius: 22px; z-index: -1; }
@media (max-width: 992px) {
  .v2-invest { padding: 60px 0; }
  .v2-invest-inner { grid-template-columns: 1fr; padding: 0 20px; gap: 40px; }
  .v2-invest-img img { height: 300px; }
  .v2-invest-img::before { display: none; }
}

/* ---- ULAŞIM ---- */
.v2-transport { background: var(--pale); padding: 100px 0; }
.v2-transport-inner { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.v2-transport-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 56px; }
.v2-transport-head h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 900; color: var(--ink); line-height: 1.15; letter-spacing: -.4px; margin: 0; }
.v2-transport-head h2 em { font-style: normal; color: var(--navy); }
.v2-transport-head p { color: var(--muted); line-height: 1.78; font-size: 15px; margin: 0; align-self: end; }
.v2-tcards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.v2-tcard {
  background: #fff; border-radius: 18px; padding: 28px 24px;
  border: 1px solid var(--rule); transition: border-color .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.v2-tcard:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(24,118,187,.1); }
.v2-tcard::after { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--navy); border-radius: 18px 0 0 18px; }
.v2-tcard i { font-size: 26px; color: var(--blue); margin-bottom: 16px; display: block; }
.v2-tcard strong { display: block; font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.v2-tcard span { font-size: 12px; color: var(--muted); line-height: 1.5; }
@media (max-width: 992px) {
  .v2-transport { padding: 60px 0; }
  .v2-transport-inner { padding: 0 20px; }
  .v2-transport-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
  .v2-tcards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) { .v2-tcards { grid-template-columns: 1fr; } }

/* ---- GÜVENLİK ---- */
.v2-safety { background: #fff; padding: 100px 0; }
.v2-safety-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.v2-safety-img { position: relative; border-radius: 20px; overflow: hidden; }
.v2-safety-img img { width: 100%; height: 520px; object-fit: cover; display: block; }
.v2-safety-text h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 900; color: var(--ink); line-height: 1.15; margin-bottom: 22px; letter-spacing: -.4px; }
.v2-safety-text h2 em { font-style: normal; color: var(--navy); }
.v2-safety-text p { color: var(--muted); line-height: 1.78; font-size: 15px; margin-bottom: 0; }
.v2-safety-feats { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.v2-sfeat { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: 10px; background: var(--pale); border: 1px solid var(--rule); }
.v2-sfeat i { color: var(--navy); font-size: 16px; flex-shrink: 0; }
.v2-sfeat span { font-size: 14px; font-weight: 600; color: var(--ink); }
@media (max-width: 992px) {
  .v2-safety { padding: 60px 0; }
  .v2-safety-inner { grid-template-columns: 1fr; padding: 0 20px; gap: 40px; }
  .v2-safety-img img { height: 280px; }
}

/* ---- SOSYAL İMKANLAR ---- */
.v2-amenities { background: var(--pale); padding: 0 0 80px; }
.v2-amenities-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.v2-amenities-text p { color: var(--muted); line-height: 1.78; font-size: 15px; margin-bottom: 32px; text-align: center; }
.v2-amenities-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.v2-amenity-item { display: flex; align-items: flex-start; gap: 16px; background: #fff; border: 1px solid var(--rule); border-radius: 14px; padding: 24px; transition: box-shadow .25s; width: calc(33.333% - 14px); flex-wrap: wrap; }
.v2-amenity-item:hover { box-shadow: 0 6px 24px rgba(30,53,130,.08); }
.v2-amenity-item i { color: var(--navy); font-size: 22px; flex-shrink: 0; }
.v2-amenity-item strong { color: var(--ink); font-size: 14px; font-weight: 800; white-space: nowrap; }
.v2-amenity-item span { color: var(--muted); font-size: 13px; line-height: 1.6; width: 100%; }
@media (max-width: 768px) {
  .v2-amenity-item { width: 100%; }
}

/* ---- GALERİ ---- */
.gallery-section { background: var(--navy) !important; padding: 80px 0 40px !important; }
.gallery-section .container .title { color: #fff !important; }
.gallery-section .tab-buttons { border-bottom: 1px solid rgba(255,255,255,.15) !important; margin-bottom: 28px; }
.gallery-section .tab-buttons .js-tab-button {
  background: transparent !important; color: rgba(255,255,255,.45) !important;
  border: none !important; border-bottom: 3px solid transparent !important; border-radius: 0 !important;
  padding: 10px 28px 14px !important; font-size: 12px !important; font-weight: 700 !important;
  letter-spacing: 2px !important; text-transform: uppercase !important;
}
.gallery-section .tab-buttons .js-tab-button.selected,
.gallery-section .tab-buttons .js-tab-button:hover { color: #fff !important; border-bottom-color: #74B3E8 !important; }
.gallery-section .container-fluid { padding: 0 !important; }
.gallery-section .swiper.gallery-slider { padding-bottom: 3rem !important; }
.gallery-section .slider-grid img { border-radius: 0 !important; }
.gallery-section .gallery-slider .slider-controls .button-prev,
.gallery-section .gallery-slider .slider-controls .button-next {
  background: transparent !important; border: 2px solid rgba(255,255,255,.45) !important;
  border-radius: 50% !important; color: #fff !important;
}
.gallery-section .gallery-slider .slider-controls .button-prev:hover,
.gallery-section .gallery-slider .slider-controls .button-next:hover { background: rgba(255,255,255,.12) !important; border-color: #fff !important; }
.gallery-section .gallery-slider .slider-controls .button-prev i,
.gallery-section .gallery-slider .slider-controls .button-next i { color: #fff !important; }

/* ---- KAT PLANLARI ---- */
.floor-plans-section { padding: 100px 0 !important; background: var(--pale) !important; }
.floor-plans-section .container > .title { color: var(--ink) !important; margin-bottom: 40px !important; }
.floor-plans-section .floor-plans { display: none !important; }
.fp-wrapper { background: #fff; border: 1px solid var(--rule); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 32px rgba(30,53,130,.07); }
.fp-type-bar { display: flex; border-bottom: 1px solid var(--rule); background: var(--pale); }
.fp-type-btn { flex: 1; padding: 18px 14px; background: transparent; border: none; border-bottom: 3px solid transparent; margin-bottom: -1px; font-size: 14px; font-weight: 800; color: var(--muted); cursor: pointer; transition: color .2s, border-color .2s; }
.fp-type-btn:hover { color: var(--navy); }
.fp-type-btn.fp-active { color: var(--navy); border-bottom-color: var(--navy); background: #fff; }
.fp-sub-panel { display: none; }
.fp-sub-panel.fp-active { display: block; }
.fp-sub-bar { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 24px; background: #fff; border-bottom: 1px solid var(--rule); }
.fp-sub-btn { padding: 7px 18px; background: var(--pale); border: 1px solid var(--rule); border-radius: 100px; font-size: 11px; font-weight: 700; color: var(--muted); cursor: pointer; letter-spacing: .8px; text-transform: uppercase; transition: all .18s; }
.fp-sub-btn:hover { border-color: var(--blue); color: var(--blue); }
.fp-sub-btn.fp-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.fp-display-area { padding: 32px 40px 40px; display: flex; align-items: flex-start; gap: 48px; }
.fp-meta { min-width: 160px; padding-top: 8px; }
.fp-meta-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); border-left: 3px solid var(--blue); padding-left: 10px; margin-bottom: 10px; line-height: 1; }
.fp-meta-name { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.fp-meta-expand { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #fff; background: var(--blue); padding: 10px 18px; text-decoration: none; border-radius: 8px; transition: background .2s; }
.fp-meta-expand:hover { background: var(--navy) !important; color: #fff !important; }
.fp-image-area { flex: 1; min-height: 320px; display: flex; align-items: center; justify-content: center; }
.fp-image-area img { max-width: 100%; max-height: 460px; object-fit: contain; display: block; transition: opacity .3s ease; }
.fp-image-area img.fp-fade { opacity: 0; }
@media (max-width: 992px) {
  .fp-type-btn { font-size: 12px; padding: 14px 10px; }
  .fp-display-area { flex-direction: column; padding: 24px 20px; gap: 20px; }
  .fp-meta { min-width: unset; }
  .fp-image-area img { max-height: 260px; }
}

/* ---- VİDEO ---- */
.project-video-section { padding: 80px 0 !important; background: #fff !important; }
.project-video-section .container > .title { color: var(--ink) !important; }
.project-video-section .container .video-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
.project-video-section .container .video-grid .video-item { grid-column: span 1 !important; }
.project-video-section .container .video-grid .video-item:first-child { grid-column: span 2 !important; }
.project-video-section .container .video-grid .video-item:first-child iframe { aspect-ratio: 21/9 !important; }
.project-video-section .container .video-grid .video-item iframe { aspect-ratio: 16/9 !important; width: 100%; display: block; border: none; border-radius: 12px; }
.project-video-section .container .video-grid .video-item h2 { font-size: .9rem !important; color: var(--muted) !important; font-weight: 700 !important; text-align: left !important; margin-bottom: 10px !important; letter-spacing: 1.5px !important; text-transform: uppercase !important; }
.video-load-more-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: transparent; color: var(--navy) !important; border: 2px solid var(--navy);
  padding: 14px 40px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin: 40px auto 0; cursor: pointer; transition: all .25s; max-width: 240px; border-radius: 100px;
}
.video-load-more-btn:hover { background: var(--navy) !important; color: #fff !important; }
@media (max-width: 992px) {
  .project-video-section .container .video-grid { grid-template-columns: 1fr !important; }
  .project-video-section .container .video-grid .video-item:first-child { grid-column: span 1 !important; }
  .project-video-section .container .video-grid .video-item:first-child iframe { aspect-ratio: 16/9 !important; }
}

/* ---- KONUM ---- */
.project-location-section { padding: 0 !important; background: var(--pale) !important; }
.project-location-section > .container { display: none !important; }
.loc-split { display: grid; grid-template-columns: 1fr 1fr; width: 100%; min-height: 520px; }
.loc-map { overflow: hidden; }
.loc-map iframe { width: 100% !important; height: 100% !important; min-height: 520px; display: block; border: none; }
.loc-info { background: #fff; padding: 64px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--rule); }
.loc-info .v2-tag { margin-bottom: 16px; }
.loc-info .title { font-size: 2rem !important; color: var(--ink) !important; margin-bottom: 14px !important; }
.loc-info .title .green-text { color: var(--navy) !important; }
.loc-info .adress { font-style: normal; color: var(--muted); line-height: 1.78; font-size: 14px; margin-bottom: 32px; }
.loc-info .button-wrapper { display: flex; flex-wrap: wrap; gap: 12px; }
.loc-info .btn { border-radius: 100px !important; border: 2px solid var(--navy) !important; background: transparent !important; color: var(--navy) !important; font-weight: 700 !important; }
.loc-info .btn:hover { background: var(--navy) !important; color: #fff !important; }
.loc-info .btn--lightblue { background: var(--blue) !important; border-color: var(--blue) !important; color: #fff !important; border-radius: 100px !important; }
.loc-info .btn--lightblue:hover { background: var(--navy) !important; border-color: var(--navy) !important; }
@media (max-width: 992px) {
  .loc-split { grid-template-columns: 1fr; }
  .loc-map iframe { min-height: 300px; height: 300px !important; }
  .loc-info { padding: 40px 20px; border-left: none; border-top: 1px solid var(--rule); }
}

/* ---- FOOTER ---- */
.footer { background: var(--ink) !important; }
.footer::after { background-color: var(--blue) !important; opacity: .5 !important; }
.footer .container .logo-area img { filter: brightness(0) invert(1) !important; }
.footer .container .legal-area a { color: rgba(255,255,255,.4) !important; }
.footer .container .legal-area a:hover { color: #fff !important; }
.footer .container .social-area span { color: rgba(255,255,255,.3) !important; }
.footer .social-list a svg { filter: brightness(0) invert(1); opacity: .5; transition: opacity .2s; }
.footer .social-list a:hover svg { opacity: 1; }
