/* ==========================================
   SOLI DEVELOPMENT - Main Stylesheet
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
  --teal:        #1a8fa1;
  --teal-dark:   #0d7a8a;
  --teal-light:  #2abdd4;
  --teal-pale:   #e6f5f7;
  --dark:        #0d1f2d;
  --text:        #2c3e50;
  --text-light:  #6b7d8e;
  --white:       #ffffff;
  --bg-light:    #f4f8f9;
  --border:      #d8edf0;
  --shadow:      0 4px 24px rgba(26,143,161,0.12);
  --shadow-lg:   0 12px 40px rgba(26,143,161,0.18);
  --radius:      12px;
  --transition:  0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans Georgian', 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

/* ── Utility ── */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: .8rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--teal); margin-bottom: .5rem;
}
.section-title { margin-bottom: 1rem; }
.section-intro { color: var(--text-light); max-width: 580px; margin-bottom: 2.5rem; }
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 50px; font-size: .9rem;
  font-weight: 600; transition: var(--transition);
}
.btn-primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 16px rgba(26,143,161,0.3);
}
.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 8px 24px rgba(26,143,161,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--white); color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: var(--white); color: var(--teal); }
.btn-outline-teal {
  border: 2px solid var(--teal); color: var(--teal);
  background: transparent;
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.navbar.transparent {
  background: transparent;
  box-shadow: none;
}
.navbar.transparent .nav-link { color: var(--white); }
.navbar.transparent .nav-link:hover { color: var(--white); background: rgba(255,255,255,.15); }
.navbar.transparent .nav-link.active {
  color: var(--white); background: rgba(255,255,255,.18);
  border-bottom: 2px solid var(--white);
}
.navbar.transparent .lang-btn { color: var(--white); border-color: rgba(255,255,255,0.5); }
.navbar.transparent .lang-btn .lang-opt.active { color: var(--white); }
.navbar.transparent .hamburger span { background: var(--white); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 1.5rem;
  max-width: 1300px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: .6rem; }
.nav-logo img { height: 46px; width: 46px; object-fit: contain; border-radius: 8px; }
.nav-logo-text { font-size: 1rem; font-weight: 700; color: var(--teal); letter-spacing: .08em; }

.nav-links { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav-link {
  padding: .5rem .85rem; border-radius: 6px; font-size: .88rem;
  font-weight: 500; color: var(--text); transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--teal); background: var(--teal-pale); }

.nav-actions { display: flex; align-items: center; gap: .75rem; }
.lang-btn {
  display: flex; align-items: center; gap: .25rem;
  padding: .35rem .7rem; border-radius: 20px;
  border: 1.5px solid var(--border); font-size: .8rem;
  font-weight: 600; color: var(--text); transition: var(--transition);
}
.lang-btn:hover { border-color: var(--teal); color: var(--teal); }
.lang-btn .lang-opt { opacity: .4; transition: var(--transition); }
.lang-btn .lang-opt.active { opacity: 1; color: var(--teal); }
.lang-divider { color: var(--border); }
.nav-phone { font-size: .85rem; font-weight: 600; color: var(--teal); }
.nav-cta {
  padding: .5rem 1.25rem; border-radius: 50px; background: var(--teal);
  color: var(--white); font-size: .85rem; font-weight: 600;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { padding: .75rem .5rem; border-bottom: 1px solid var(--border); }
.mobile-actions { display: flex; align-items: center; gap: 1rem; padding-top: 1rem; }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--dark);
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .55; transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,31,45,.75) 0%,
    rgba(26,143,161,.25) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(26,143,161,.25); backdrop-filter: blur(10px);
  border: 1px solid rgba(26,143,161,.4);
  padding: .4rem 1rem; border-radius: 50px;
  color: var(--white); font-size: .8rem; font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal-light); animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero-title { color: var(--white); margin-bottom: 1.25rem; }
.hero-title span { color: var(--teal-light); }
.hero-sub { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 520px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.6); font-size: .75rem;
}
.hero-scroll .arrow {
  width: 28px; height: 28px; border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ==========================================
   STATS BAR
   ========================================== */
.stats-bar {
  background: var(--teal);
  padding: 1.5rem 0;
}
.stats-inner {
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 1rem;
}
.stat-item { text-align: center; color: var(--white); }
.stat-number { font-size: 2rem; font-weight: 800; line-height: 1; }
.stat-label { font-size: .8rem; opacity: .8; margin-top: .25rem; }

/* ==========================================
   FEATURED PROJECT
   ========================================== */
.featured { padding: 6rem 0; background: var(--white); }
.featured-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.featured-images {
  position: relative; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.featured-images .main-img { width: 100%; height: 420px; object-fit: cover; }
.featured-badge-img {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  width: 120px; height: 120px; border-radius: 10px;
  border: 3px solid var(--white); object-fit: cover;
  box-shadow: var(--shadow);
}
.featured-tag {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--teal); color: var(--white);
  padding: .35rem .9rem; border-radius: 20px; font-size: .78rem; font-weight: 600;
}
.featured-text .section-label { margin-bottom: .4rem; }
.featured-specs {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin: 1.75rem 0;
}
.spec-item { display: flex; flex-direction: column; gap: .2rem; }
.spec-val { font-size: 1.3rem; font-weight: 700; color: var(--teal); }
.spec-key { font-size: .78rem; color: var(--text-light); }
.featured-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ==========================================
   WHY US
   ========================================== */
.why-us { padding: 6rem 0; background: var(--bg-light); }
.why-header { text-align: center; margin-bottom: 3.5rem; }
.why-header .section-intro { margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--white); padding: 2rem;
  border-radius: var(--radius); text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--teal-pale); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 1.25rem;
}
.why-card h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.why-card p { font-size: .88rem; color: var(--text-light); }

/* ==========================================
   GALLERY STRIP
   ========================================== */
.gallery-strip { padding: 5rem 0; background: var(--white); }
.gallery-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden; border-radius: 10px; position: relative;
}
.gallery-item:first-child {
  grid-column: span 2; grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(13,31,45,0);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(13,31,45,.35); }
.gallery-overlay span {
  color: var(--white); font-size: 2rem; opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay span { opacity: 1; }

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner .btn-outline { margin: 0 .5rem; }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .nav-logo-text { color: var(--white); }
.footer-brand p { font-size: .88rem; line-height: 1.8; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .95rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

.footer-col h4 {
  color: var(--white); font-size: .9rem; margin-bottom: 1.25rem;
  padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .87rem; transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .87rem; margin-bottom: .8rem;
}
.footer-contact-item i { color: var(--teal-light); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: .82rem;
}

/* ==========================================
   CHAT WIDGET
   ========================================== */
.chat-widget {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
}
.chat-toggle {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 4px 20px rgba(26,143,161,.45);
  transition: var(--transition);
}
.chat-toggle:hover { background: var(--teal-dark); transform: scale(1.08); }
.chat-popup {
  display: none; position: absolute; bottom: 70px; right: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  overflow: hidden; min-width: 220px;
  animation: slideUp .25s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-popup.open { display: block; }
.chat-popup-header {
  background: var(--teal); color: var(--white);
  padding: .85rem 1rem; font-size: .88rem; font-weight: 600;
}
.chat-option {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1rem; font-size: .88rem; font-weight: 500;
  transition: var(--transition); color: var(--text);
}
.chat-option:hover { background: var(--teal-pale); color: var(--teal); }
.chat-option i { font-size: 1.2rem; }
.chat-option .fa-facebook-messenger { color: #0084ff; }
.chat-option .fa-whatsapp { color: #25d366; }

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal-dark) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a8fa1' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; position: relative; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1.05rem; position: relative; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  color: rgba(255,255,255,.6); font-size: .85rem;
  margin-bottom: 1rem; position: relative;
}
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb-sep { opacity: .4; }

/* ==========================================
   PROJECTS PAGE
   ========================================== */
.projects-section { padding: 5rem 0; }
.project-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: var(--transition);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card-img { position: relative; overflow: hidden; height: 260px; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover .project-card-img img { transform: scale(1.06); }
.project-status {
  position: absolute; top: 1rem; left: 1rem;
  padding: .3rem .8rem; border-radius: 20px; font-size: .75rem; font-weight: 600;
}
.status-done { background: #22c55e; color: #fff; }
.status-progress { background: #f59e0b; color: #fff; }
.project-card-body { padding: 1.5rem; }
.project-card-body h3 { margin-bottom: .5rem; }
.project-card-body p { font-size: .88rem; color: var(--text-light); margin-bottom: 1.25rem; }
.project-meta {
  display: flex; gap: 1.25rem; margin-bottom: 1.25rem;
  padding-bottom: 1.25rem; border-bottom: 1px solid var(--border);
}
.meta-item { display: flex; flex-direction: column; gap: .15rem; }
.meta-val { font-weight: 700; font-size: .95rem; color: var(--teal); }
.meta-key { font-size: .75rem; color: var(--text-light); }
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* ── Floor Plan Viewer ── */
.floor-viewer { padding: 5rem 0; background: var(--bg-light); }
.floor-viewer-header { text-align: center; margin-bottom: 3rem; }
.floor-viewer-inner {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 3rem; align-items: start;
}

/* Building map */
.building-map-wrap { position: sticky; top: 90px; }
.building-hint {
  font-size: .85rem; color: var(--text-light); margin-bottom: .75rem;
}
.building-map {
  position: relative; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
  cursor: crosshair;
}
.building-map-img { width: 100%; display: block; }

/* Floor overlay zones — positioned over the residential floors */
.floor-overlays {
  position: absolute;
  top: 4%;      /* below rooftop/sky */
  bottom: 11%;  /* above parking/ground */
  left: 0; right: 0;
  display: flex; flex-direction: column;
}
.floor-zone {
  flex: 1; position: relative;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .15s ease;
}
.floor-zone:hover,
.floor-zone.active {
  background: rgba(220, 38, 38, 0.28);
  border-bottom-color: rgba(220, 38, 38, 0.5);
  box-shadow: inset 0 0 0 1px rgba(220,38,38,0.6);
}
.floor-label {
  position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%);
  font-size: .65rem; font-weight: 700;
  background: rgba(255,255,255,.75); color: var(--dark);
  padding: 1px 5px; border-radius: 4px;
  opacity: .6; transition: var(--transition);
  pointer-events: none;
}
.floor-zone:hover .floor-label,
.floor-zone.active .floor-label {
  opacity: 1;
  background: #dc2626; color: #fff;
}

/* Default hint message in plans panel */
.fv-default-msg {
  grid-column: 1 / -1; text-align: center;
  padding: 3rem 1rem; color: var(--text-light);
}
.fv-default-msg i { font-size: 2rem; display: block; margin-bottom: .75rem; color: var(--teal); }
.fv-default-msg p { font-size: .9rem; }
.floor-plans-panel h3 { margin-bottom: 1.25rem; color: var(--dark); }
.floor-plans-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.plan-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,.06); overflow: hidden;
  transition: var(--transition); cursor: pointer;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan-card img { width: 100%; height: 160px; object-fit: cover; }
.plan-card-info { padding: .85rem; }
.plan-card-info .area { font-size: 1.1rem; font-weight: 700; color: var(--teal); }
.plan-card-info .rooms { font-size: .8rem; color: var(--text-light); }
.no-plans {
  grid-column: 1 / -1; text-align: center; padding: 3rem;
  color: var(--text-light); font-size: .95rem;
}

/* Plan lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(13,31,45,.9); z-index: 2000;
  align-items: center; justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-content {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; max-width: 700px; width: 100%;
  animation: slideUp .3s ease;
}
.lightbox-content img { width: 100%; }
.lightbox-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem;
}
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover { background: var(--teal); color: var(--white); }

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-section { padding: 6rem 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--teal); color: var(--white);
  padding: 1.25rem 1.5rem; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow);
}
.about-badge .big { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge small { font-size: .78rem; opacity: .85; }
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.value-item {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: 1rem; border-radius: 10px; background: var(--teal-pale);
}
.value-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.value-item h4 { font-size: .9rem; margin-bottom: .2rem; }
.value-item p { font-size: .8rem; color: var(--text-light); }

.mission-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a3345 100%);
}
.mission-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.mission-card {
  text-align: center; padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.mission-card:hover { background: rgba(26,143,161,.15); border-color: var(--teal); }
.mission-card i { font-size: 2rem; color: var(--teal-light); margin-bottom: 1rem; }
.mission-card h3 { color: var(--white); margin-bottom: .75rem; font-size: 1.1rem; }
.mission-card p { color: rgba(255,255,255,.65); font-size: .88rem; }

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section { padding: 6rem 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 4rem; align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-light); margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--white);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.contact-card-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--teal-pale); color: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-card-text h4 { font-size: .85rem; color: var(--text-light); font-weight: 400; }
.contact-card-text a,
.contact-card-text span { font-weight: 600; color: var(--text); font-size: .95rem; }
.contact-card-text a:hover { color: var(--teal); }

.social-links { display: flex; gap: .75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-link-btn {
  display: flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border-radius: 50px;
  border: 1.5px solid var(--border); font-size: .85rem; font-weight: 500;
  transition: var(--transition);
}
.social-link-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.social-link-btn .fa-facebook { color: #1877f2; }
.social-link-btn:hover .fa-facebook { color: var(--white); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 2.5rem;
}
.contact-form-wrap h3 { margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--text); margin-bottom: .45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem; border-radius: 8px;
  border: 1.5px solid var(--border); font-size: .9rem;
  font-family: inherit; color: var(--text); background: var(--bg-light);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--teal);
  background: var(--white); box-shadow: 0 0 0 3px rgba(26,143,161,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: .9rem; font-size: 1rem; }
.form-success {
  display: none; text-align: center; padding: 2rem;
  color: var(--teal); font-weight: 600;
}
.form-success i { font-size: 2.5rem; display: block; margin-bottom: .75rem; }

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }
.fade-up-d4 { transition-delay: .4s; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .floor-viewer-inner { grid-template-columns: 1fr; }
  .building-map-wrap { position: static; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .featured-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-badge { position: static; margin-top: 1rem; display: inline-block; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gallery-item:first-child { grid-column: 1 / -1; grid-row: span 1; }
  .mission-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-inner { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: 1; grid-row: span 1; }
  .hero-btns { flex-direction: column; }
  .chat-widget { bottom: 1rem; right: 1rem; }
}
