/* GwaliorProps - Main Stylesheet */
:root {
  --primary: #1a3c6e;
  --primary-dark: #0f2548;
  --primary-light: #2a5298;
  --accent: #e8631a;
  --accent-light: #f7883a;
  --gold: #d4a017;
  --white: #ffffff;
  --light: #f5f7fa;
  --light2: #eef1f7;
  --text: #1a1a2e;
  --text2: #4a4a6a;
  --text3: #8888aa;
  --border: #dde3f0;
  --green: #1a7a4a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26,60,110,0.10);
  --shadow-hover: 0 8px 36px rgba(26,60,110,0.18);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
.container { max-width: 1200px; margin: auto; padding: 0 24px; }
.lang-en .hi { display: none !important; }
.lang-hi .en { display: none !important; }

/* TOPBAR */
.topbar { background: var(--primary-dark); color: rgba(255,255,255,0.85); font-size: 12.5px; padding: 8px 0; }
.topbar-inner { max-width: 1200px; margin: auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.85); text-decoration: none; }
.topbar a:hover { color: var(--accent-light); }
.topbar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.lang-toggle { display: flex; gap: 4px; background: rgba(255,255,255,0.12); border-radius: 6px; padding: 3px; }
.lang-btn { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 12px; padding: 3px 12px; border-radius: 4px; cursor: pointer; font-family: inherit; font-weight: 500; transition: all 0.2s; }
.lang-btn.active { background: var(--accent); color: white; }

/* NAVBAR */
.navbar { background: var(--white); box-shadow: 0 2px 16px rgba(26,60,110,0.09); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1200px; margin: auto; padding: 0 24px; display: flex; align-items: center; gap: 24px; height: 76px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; cursor: pointer; }
.logo-icon { width: 48px; height: 48px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 28px; height: 28px; fill: none; stroke: white; stroke-width: 2; }
.logo-text { line-height: 1.1; }
.logo-text .main { font-size: 20px; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.logo-text .main span { color: var(--accent); }
.logo-text .sub { font-size: 11px; color: var(--text3); font-weight: 400; }
.nav-tabs { display: flex; gap: 2px; margin-left: auto; align-items: center; }
.nav-tab { background: none; border: none; cursor: pointer; font-family: inherit; text-decoration: none; color: var(--text2); font-size: 14px; font-weight: 500; padding: 10px 16px; border-radius: 8px; transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
.nav-tab:hover { background: var(--light); color: var(--primary); }
.nav-tab.active { background: var(--primary); color: white; font-weight: 600; }
.nav-tab svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn-post { background: var(--accent); color: white; padding: 10px 18px; border-radius: 10px; font-weight: 600; font-size: 13px; text-decoration: none; transition: all 0.2s; white-space: nowrap; border: none; cursor: pointer; font-family: inherit; }
.btn-post:hover { background: #c9541a; color: white; transform: translateY(-1px); }
.menu-btn { display: none; background: none; border: none; padding: 8px; cursor: pointer; }
.menu-btn svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 2; }
.mobile-menu { display: none; background: white; padding: 16px 24px; border-top: 1px solid var(--border); position: sticky; top: 76px; z-index: 99; max-height: 80vh; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 16px; color: var(--text2); text-decoration: none; border-radius: 8px; margin-bottom: 4px; }
.mobile-menu a:hover, .mobile-menu a.active { background: var(--primary); color: white; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%); min-height: 480px; display: flex; align-items: center; position: relative; overflow: hidden; padding: 60px 0 80px; }
.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='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { max-width: 1200px; margin: auto; padding: 0 24px; position: relative; z-index: 1; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); font-size: 13px; padding: 6px 16px; border-radius: 50px; margin-bottom: 24px; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--accent-light); border-radius: 50%; }
.hero h1 { font-size: clamp(28px, 5vw, 50px); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 16px; }
.hero h1 .accent { color: var(--accent-light); }
.hero p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 580px; margin-bottom: 28px; line-height: 1.7; }
.hero.hero-arch { background: linear-gradient(135deg, #1a4d3a 0%, #0e6e4a 50%, #1a7a4a 100%); }
.hero.hero-construction { background: linear-gradient(135deg, #5c3a0e 0%, #8a5a1f 50%, #a87024 100%); }
.hero.hero-services { background: linear-gradient(135deg, #3a1a5c 0%, #5c2d8a 50%, #7a3aa8 100%); }
.hero.hero-contact { background: linear-gradient(135deg, #5c0e2d 0%, #8a1f4a 50%, #a82460 100%); }
.hero.hero-blog { background: linear-gradient(135deg, #5c4e0e 0%, #8a7424 50%, #a87024 100%); }
.hero.hero-about { background: linear-gradient(135deg, #1a3c6e 0%, #2a5298 100%); }
.hero-small { min-height: 280px; padding: 50px 0; }

/* SEARCH */
.search-section { margin-top: -44px; position: relative; z-index: 10; padding: 0 24px; }
.search-box { max-width: 900px; margin: auto; background: white; border-radius: var(--radius-lg); box-shadow: 0 12px 48px rgba(26,60,110,0.18); padding: 24px 28px; }
.search-tabs { display: flex; gap: 4px; margin-bottom: 20px; background: var(--light); border-radius: 10px; padding: 4px; }
.stab { flex: 1; padding: 10px; border: none; background: none; font-family: inherit; font-size: 14px; font-weight: 500; color: var(--text2); border-radius: 7px; cursor: pointer; transition: all 0.2s; text-decoration: none; text-align: center; display: block; }
.stab.active, .stab:hover { background: var(--primary); color: white; }
.search-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.search-group { flex: 1; min-width: 160px; }
.search-group label { display: block; font-size: 12px; color: var(--text3); font-weight: 500; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.search-group select, .search-group input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; font-family: inherit; color: var(--text); outline: none; transition: border 0.2s; background: var(--light); }
.search-group select:focus, .search-group input:focus { border-color: var(--primary); background: white; }
.btn-search { background: var(--accent); color: white; border: none; cursor: pointer; padding: 13px 32px; border-radius: 10px; font-size: 15px; font-weight: 600; font-family: inherit; display: flex; align-items: center; gap: 8px; transition: all 0.2s; white-space: nowrap; }
.btn-search:hover { background: #c9541a; transform: translateY(-1px); }

/* SECTIONS */
section { padding: 70px 0; }
.section-head { text-align: center; margin-bottom: 44px; }
.eyebrow { font-size: 12px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; display: block; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--primary-dark); line-height: 1.2; margin-bottom: 14px; }
.section-head p { font-size: 16px; color: var(--text2); max-width: 580px; margin: auto; }

/* CATEGORY CARDS */
.cats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.cat-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; text-decoration: none; transition: all 0.25s; cursor: pointer; display: block; }
.cat-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.cat-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--light2); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.cat-icon svg { width: 28px; height: 28px; stroke: var(--primary); fill: none; stroke-width: 1.8; }
.cat-card:hover .cat-icon { background: var(--primary); }
.cat-card:hover .cat-icon svg { stroke: white; }
.cat-name { font-size: 15px; font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
.cat-hindi { font-size: 16px; font-weight: 600; color: var(--text2); margin-bottom: 4px; }
.cat-count { font-size: 12px; color: var(--text3); }

/* PROPERTY CARDS */
.props-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.prop-card { background: white; border-radius: var(--radius-lg); border: 1.5px solid var(--border); overflow: hidden; transition: all 0.25s; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.prop-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: var(--primary); }
.prop-img { height: 210px; background: linear-gradient(135deg, var(--light2), var(--border)); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.prop-img img { width: 100%; height: 100%; object-fit: cover; }
.prop-img svg { width: 60px; height: 60px; stroke: var(--primary-light); fill: none; stroke-width: 1.2; opacity: 0.5; }
.prop-badge { position: absolute; top: 12px; left: 12px; background: var(--primary); color: white; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.prop-badge.sell { background: var(--accent); }
.prop-badge.rent { background: var(--green); }
.featured-badge { position: absolute; top: 12px; right: 12px; background: var(--gold); color: #333; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.prop-body { padding: 20px; }
.prop-price { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.prop-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.prop-loc { font-size: 13px; color: var(--text3); display: flex; align-items: center; gap: 5px; margin-bottom: 14px; }
.prop-loc svg { width: 14px; height: 14px; stroke: var(--text3); fill: none; }
.prop-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.prop-tag { background: var(--light2); color: var(--text2); font-size: 12px; padding: 4px 10px; border-radius: 6px; font-weight: 500; }
.prop-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 14px; }
.prop-contact { background: var(--primary); color: white; border: none; cursor: pointer; padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; font-family: inherit; transition: all 0.2s; text-decoration: none; }
.prop-contact:hover { background: var(--primary-dark); color: white; }
.prop-id { font-size: 11px; color: var(--text3); }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: white; padding: 14px 28px; border-radius: 12px; font-size: 16px; font-weight: 700; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; font-family: inherit; }
.btn-primary:hover { background: #c9541a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,99,26,0.35); color: white; }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 12px 28px; border-radius: 10px; font-weight: 600; text-decoration: none; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-view-all { display: inline-flex; align-items: center; gap: 8px; background: white; color: var(--primary); border: 2px solid var(--primary); padding: 12px 32px; border-radius: 10px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.2s; margin-top: 40px; cursor: pointer; font-family: inherit; }
.btn-view-all:hover { background: var(--primary); color: white; }
.text-center { text-align: center; }

/* FORMS */
.contact-section { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-left { color: white; }
.contact-left h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; margin-bottom: 16px; line-height: 1.2; color: white; }
.contact-left p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 36px; line-height: 1.7; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.cinfo { display: flex; gap: 16px; align-items: flex-start; }
.cinfo-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cinfo-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 1.8; }
.cinfo-text h4 { color: white; font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.cinfo-text a, .cinfo-text p { color: rgba(255,255,255,0.8); font-size: 14px; text-decoration: none; }
.cinfo-text a:hover { color: var(--accent-light); }
.contact-form { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: 0 16px 60px rgba(0,0,0,0.2); }
.contact-form h3 { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; font-family: inherit; color: var(--text); outline: none; transition: border 0.2s; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,60,110,0.08); }
.btn-submit { width: 100%; background: var(--primary); color: white; border: none; cursor: pointer; padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 700; font-family: inherit; transition: all 0.2s; margin-top: 8px; }
.btn-submit:hover { background: var(--primary-dark); }
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-weight: 500; font-size: 14px; }
.alert-success { background: #e8f5e9; color: var(--green); border: 1px solid #c8e6c9; }
.alert-error { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }
.alert-info { background: #e3f2fd; color: #1565c0; border: 1px solid #bbdefb; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.why-card { background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; transition: all 0.25s; }
.why-card:hover { box-shadow: var(--shadow); border-color: var(--primary); transform: translateY(-3px); }
.why-icon { width: 64px; height: 64px; background: var(--light2); border-radius: 20px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 30px; height: 30px; stroke: var(--primary); fill: none; stroke-width: 1.8; }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* SERVICES */
.services-section { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.srv-card { background: white; border-radius: var(--radius-lg); padding: 28px 24px; border: 1.5px solid var(--border); transition: all 0.25s; display: flex; gap: 16px; align-items: flex-start; }
.srv-card:hover { box-shadow: var(--shadow-hover); border-color: var(--primary); transform: translateX(4px); }
.srv-icon { width: 52px; height: 52px; background: var(--light2); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.srv-icon svg { width: 26px; height: 26px; stroke: var(--primary); fill: none; stroke-width: 1.8; }
.srv-text h3 { font-size: 16px; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.srv-text p { font-size: 13.5px; color: var(--text2); line-height: 1.6; }

/* ARCH SERVICES */
.arch-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.arch-srv { background: white; border-radius: var(--radius-lg); padding: 32px 26px; border: 2px solid var(--border); transition: all 0.3s; position: relative; overflow: hidden; }
.arch-srv::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.arch-srv:hover { box-shadow: var(--shadow-hover); border-color: var(--primary); transform: translateY(-6px); }
.arch-srv:hover::before { transform: scaleX(1); }
.arch-icon-big { width: 72px; height: 72px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.arch-icon-big svg { width: 36px; height: 36px; stroke: white; fill: none; stroke-width: 1.8; }
.arch-srv h3 { font-size: 18px; font-weight: 800; color: var(--primary-dark); margin-bottom: 10px; }
.arch-srv p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 14px; }
.arch-srv ul { list-style: none; padding: 0; }
.arch-srv ul li { font-size: 13px; color: var(--text2); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.arch-srv ul li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 14px; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.process-step { background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; position: relative; }
.process-num { width: 44px; height: 44px; background: var(--accent); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; margin: -42px auto 16px; box-shadow: 0 4px 12px rgba(232,99,26,0.3); }
.process-step h4 { font-size: 15px; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--text2); line-height: 1.5; }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testi-card { background: white; border-radius: var(--radius-lg); padding: 28px; border: 1.5px solid var(--border); transition: all 0.25s; }
.testi-card:hover { box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; }
.testi-text { font-size: 14.5px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: white; font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.testi-name { font-weight: 700; font-size: 15px; color: var(--primary-dark); }
.testi-loc { font-size: 12px; color: var(--text3); }

/* BLOG CARDS */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.blog-card { background: white; border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border); transition: all 0.25s; text-decoration: none; color: inherit; display: block; }
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: var(--primary); }
.blog-img { height: 200px; background: linear-gradient(135deg, var(--primary-light), var(--accent)); display: flex; align-items: center; justify-content: center; position: relative; }
.blog-img svg { width: 60px; height: 60px; stroke: white; fill: none; opacity: 0.6; }
.blog-cat { position: absolute; top: 12px; left: 12px; background: white; color: var(--primary); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-body { padding: 22px; }
.blog-meta { font-size: 12px; color: var(--text3); margin-bottom: 8px; }
.blog-title { font-size: 17px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; line-height: 1.4; }
.blog-excerpt { font-size: 13.5px; color: var(--text2); line-height: 1.6; }

/* FOOTER */
footer { background: var(--primary-dark); color: rgba(255,255,255,0.85); }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-brand .logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand > p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 20px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; }
.social-btn:hover { background: var(--accent); }
.social-btn svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }
.footer-col h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; color: rgba(255,255,255,0.7); font-size: 13.5px; line-height: 1.5; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--accent-light); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.65); text-decoration: none; cursor: pointer; }
.footer-bottom a:hover { color: var(--accent-light); }

/* FLOATING ACTIONS */
.float-actions { position: fixed; bottom: 24px; right: 24px; z-index: 200; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; box-shadow: 0 6px 20px rgba(0,0,0,0.25); display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: all 0.2s; }
.float-btn:hover { transform: scale(1.08); }
.float-btn.wa { background: #25d366; }
.float-btn.call { background: var(--accent); }
.float-btn svg { width: 26px; height: 26px; stroke: white; fill: white; stroke-width: 0.5; }

/* HIGHLIGHT BAR */
.highlight-bar { background: var(--primary); padding: 40px 0; }
.hbar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.hbar-item { color: white; }
.hbar-num { font-size: 36px; font-weight: 800; color: var(--accent-light); display: block; }
.hbar-label { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* MAP */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border); margin-top: 30px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }

/* PAGINATION */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; }
.pagination a, .pagination span { padding: 10px 16px; border-radius: 8px; border: 1.5px solid var(--border); text-decoration: none; color: var(--text2); font-weight: 600; font-size: 14px; }
.pagination a:hover { background: var(--primary); color: white; border-color: var(--primary); }
.pagination .current { background: var(--primary); color: white; border-color: var(--primary); }

/* PROPERTY DETAIL */
.prop-detail-hero { background: var(--light); padding: 40px 0; }
.prop-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.prop-detail-img { background: var(--light2); border-radius: var(--radius-lg); height: 450px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.prop-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.prop-detail-img svg { width: 100px; height: 100px; stroke: var(--primary-light); fill: none; opacity: 0.4; }
.prop-info { background: white; border-radius: var(--radius-lg); padding: 28px; border: 1.5px solid var(--border); }
.prop-info-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.prop-info-row:last-child { border-bottom: none; }
.prop-info-row .lbl { color: var(--text3); }
.prop-info-row .val { font-weight: 600; color: var(--text); }
.prop-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.prop-amenities span { background: var(--light2); color: var(--text2); font-size: 12.5px; padding: 6px 12px; border-radius: 6px; font-weight: 500; }

/* RESPONSIVE */
@media (max-width: 950px) {
  .nav-tabs { display: none; }
  .menu-btn { display: block; margin-left: auto; }
  .contact-grid, .prop-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hbar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .props-grid, .blog-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 60px; min-height: 380px; }
  .topbar-left { font-size: 11.5px; }
  .float-actions { bottom: 16px; right: 16px; }
  .prop-detail-img { height: 280px; }
}
