/* 
   Spica Gayrimenkul - Master Premium Theme CSS
   2-Projects Per Row on Mobile Smartphones
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --navy-dark: #0E1726;       /* Midnight Navy */
  --navy-soft: #162235;       /* Card Navy */
  --navy-pill: #111A2B;
  --gold-primary: #D4AF37;    /* Metallic Champagne Gold */
  --gold-hover: #E5BE48;
  --gold-light: #F7E7B4;
  --gold-dark: #AA7C11;
  --gold-bg-subtle: rgba(212, 175, 55, 0.08);
  
  --text-dark: #0E1726;
  --text-muted: #64748B;
  --text-white: #FFFFFF;

  --bg-body: #FFFFFF;
  --bg-soft-gray: #F8FAFC;
  --bg-dark-section: #0E1726;

  --border-light: #E2E8F0;
  --border-gold: rgba(212, 175, 55, 0.35);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(14, 23, 38, 0.05);
  --shadow-md: 0 12px 32px rgba(14, 23, 38, 0.12);
  --shadow-lg: 0 24px 48px rgba(14, 23, 38, 0.18);
  --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.35);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy-dark);
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navbar - Bulletproof Responsive Layout */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  height: 100px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.logo-header-img {
  height: 76px;
  max-height: 84px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo-header-img:hover {
  transform: scale(1.04);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 10px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 0;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-primary);
  border-radius: 2px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background: var(--navy-dark);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 8px 18px;
  font-size: 0.825rem;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.phone-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  font-weight: 800;
  color: #FFFFFF;
  padding: 9px 18px;
  background: var(--navy-pill);
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: var(--transition);
  white-space: nowrap;
}

.phone-pill:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
}

.phone-pill i {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

.btn-bize-ulasin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-primary);
  color: var(--navy-dark);
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.8px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-bize-ulasin:hover {
  background: var(--gold-hover);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-primary);
  color: var(--navy-dark);
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.825rem;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold:hover {
  background: #FFFFFF;
  color: var(--navy-dark);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-navy-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--navy-dark);
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.825rem;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--navy-dark);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-navy-outline:hover {
  background: var(--navy-dark);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gold-primary);
  cursor: pointer;
  padding: 4px;
}

/* HERO SECTION */
.hero {
  padding-top: 190px;
  padding-bottom: 80px;
  position: relative;
  background-size: cover;
  background-position: center right;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.85) 55%, rgba(255, 255, 255, 0.3) 100%);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy-dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .gold-highlight {
  color: var(--gold-dark);
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats-pill {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  background: #FFFFFF;
  padding: 18px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-gold);
  width: fit-content;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  font-size: 1.4rem;
  color: var(--gold-primary);
  width: 36px;
  height: 36px;
  background: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
}

.stat-txt {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* 4 PILLARS SECTION */
.pillars-section {
  padding: 70px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 10;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.pillar-item {
  text-align: center;
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 6px 16px rgba(14, 23, 38, 0.15);
  transition: var(--transition);
}

.pillar-item:hover .pillar-icon {
  transform: translateY(-4px) rotate(5deg);
  background: var(--gold-primary);
  color: var(--navy-dark);
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy-dark);
}

.pillar-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* SECTION HEADERS */
.sec-tag {
  display: block;
  font-size: 0.775rem;
  font-weight: 800;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 8px;
}

.sec-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
}

.sec-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* PROJECTS SECTION */
.projects-sec {
  padding: 90px 0;
  background: var(--bg-soft-gray);
}

.section-top-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.projects-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.project-card:hover .card-img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy-dark);
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--navy-dark);
}

.card-loc {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-specs-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-soft-gray);
  border-radius: var(--radius-sm);
  font-size: 0.775rem;
  color: var(--navy-dark);
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
}

.card-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* 25-CONSULTANT 5-IN-VIEW CAROUSEL SLIDER */
.team-sec {
  padding: 90px 0;
  background: var(--bg-soft-gray);
}

.slider-controls-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: #FFFFFF;
  color: var(--navy-dark);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.slider-controls-btn:hover {
  background: var(--gold-primary);
  color: var(--navy-dark);
  border-color: var(--gold-primary);
  transform: scale(1.08);
}

.team-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
}

.team-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.team-card-slide {
  flex: 0 0 calc(20% - 16px);
  min-width: calc(20% - 16px);
}

.team-card,
.team-card-slide {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.team-card:hover,
.team-card-slide:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.team-photo-wrap { height: 320px !important; background: #F1F5F9; overflow: hidden; position: relative; }

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo,
.team-card-slide:hover .team-photo {
  transform: scale(1.06);
}

.team-content {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.team-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.team-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.team-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
  color: var(--navy-dark);
  font-size: 0.85rem;
}

.team-links a:hover {
  color: var(--gold-primary);
}

/* WHY SECTION */
.why-sec {
  padding: 90px 0;
  background: #FFFFFF;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.check-icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.guide-split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 360px;
}

.guide-img-side {
  background-size: cover;
  background-position: center;
  min-height: 360px;
}

.guide-navy-side {
  background: var(--navy-dark);
  color: #FFFFFF;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.guide-icon-top {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.guide-navy-title {
  font-size: 1.6rem;
  color: #FFFFFF;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.guide-navy-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* 4 STEPS SECTION */
.process-sec {
  padding: 90px 0;
  background: var(--navy-dark);
  color: #FFFFFF;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.process-sec .sec-tag {
  color: var(--gold-primary);
}

.process-sec .sec-title {
  color: #FFFFFF;
  margin-bottom: 50px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
}

.step-icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.step-card:hover .step-icon-circle {
  background: var(--gold-primary);
  color: var(--navy-dark);
  transform: scale(1.1);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* CTA SECTION */
.cta-sec {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}

.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 23, 38, 0.94) 0%, rgba(14, 23, 38, 0.75) 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

/* PAGE HERO BANNER FOR ALL SUBPAGES */
.page-hero-banner {
  padding-top: 190px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #0E1726 0%, #162235 100%);
  color: #FFFFFF;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.breadcrumb-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.breadcrumb-link a {
  color: var(--gold-primary);
}

/* FOOTER SECTION */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 60px;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 16px 0 20px 0;
  color: rgba(255, 255, 255, 0.65);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-circle:hover {
  background: var(--gold-primary);
  color: var(--navy-dark);
  border-color: var(--gold-primary);
}

.footer-col-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
}

.footer-menu a:hover {
  color: var(--gold-primary);
}

.footer-bottom-bar {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background-color: #128C7E;
}

/* ==========================================================================
   100% BULLETPROOF MOBILE RESPONSIVE WITH 2-PROJECTS PER ROW
   ========================================================================== */

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .nav-menu {
    gap: 12px;
  }

  .nav-link {
    font-size: 0.75rem;
  }

  .projects-cards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .team-card-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
  }

  .logo-header-img {
    height: 74px !important;
    max-height: 78px !important;
    width: auto !important;
  }

  /* BULLETPROOF MOBILE DRAWER */
  .nav-menu {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 16px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: none;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1rem;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    width: 100%;
    margin-top: 8px;
    border: none;
    padding: 6px 12px;
  }

  .dropdown-item {
    padding: 8px 0;
    font-size: 0.9rem;
  }

  .projects-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .page-hero-banner {
    padding-top: 130px;
    padding-bottom: 40px;
  }

  .page-hero-banner h1 {
    font-size: 2.2rem !important;
  }

  .hero {
    padding-top: 130px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 14px;
  }

  .phone-pill span {
    display: none;
  }

  .phone-pill {
    padding: 9px 12px;
  }

  .btn-bize-ulasin {
    padding: 9px 14px;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-btns a {
    width: 100%;
    text-align: center;
  }

  /* SINGLE-ROW HERO STATS PILL ON MOBILE SMARTPHONES */
  .hero-stats-pill {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 12px 8px !important;
    gap: 4px !important;
    border-radius: var(--radius-md) !important;
  }

  .stat-box {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    gap: 4px !important;
    flex: 1 !important;
  }

  .stat-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.85rem !important;
    margin: 0 auto !important;
  }

  .stat-num {
    font-size: 1.05rem !important;
    line-height: 1.1 !important;
  }

  .stat-txt {
    font-size: 0.65rem !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  /* LUXURY 2X2 HORIZONTAL BADGES GRID FOR MOBILE PILLARS */
  .pillars-section {
    padding: 30px 0 !important;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .pillar-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 10px !important;
    background: #FFFFFF !important;
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--border-gold) !important;
    box-shadow: 0 4px 12px rgba(14, 23, 38, 0.06) !important;
    text-align: left !important;
  }

  .pillar-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    background: var(--navy-dark) !important;
    color: var(--gold-primary) !important;
    border: 1px solid var(--gold-primary) !important;
    box-shadow: 0 4px 10px rgba(14, 23, 38, 0.15) !important;
  }

  .pillar-title {
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    color: var(--navy-dark) !important;
    line-height: 1.25 !important;
    margin-bottom: 0 !important;
  }

  .pillar-desc {
    display: none !important;
  }

  /* SINGLE COLUMN PROJECTS PER ROW ON TABLET / MOBILE */
  .projects-cards-row {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .team-card-slide {
    flex: 0 0 calc(33.333% - 7px) !important;
    min-width: calc(33.333% - 7px) !important;
  }

  .team-slider-track {
    gap: 10px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* CENTERED ULTRA-LUXURY PROJECT SPECS CARDS ON MOBILE */
  div[style*="grid-template-columns:repeat(6, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    text-align: center !important;
  }

  div[style*="border-right:1px solid"] {
    border-right: none !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: var(--radius-md) !important;
    padding: 14px 10px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  div[style*="grid-template-columns:repeat(6, 1fr)"] > div:last-child {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: var(--radius-md) !important;
    padding: 14px 10px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  div[style*="font-size:0.75rem; color:var(--gold-primary)"] {
    text-align: center !important;
    font-size: 0.725rem !important;
    margin-bottom: 4px !important;
  }

  div[style*="font-weight:800; color:#FFF"] {
    text-align: center !important;
    font-size: 0.95rem !important;
  }

  /* 2X2 PROCESS STEPS ON MOBILE */
  .process-sec {
    padding: 36px 0 !important;
  }

  .steps-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .step-card {
    background: rgba(255, 255, 255, 0.04) !important;
    padding: 12px 10px !important;
    border-radius: var(--radius-md) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
  }

  .step-icon-circle {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.85rem !important;
    margin: 0 auto 6px auto !important;
  }

  .step-num {
    font-size: 0.75rem !important;
    margin-bottom: 2px !important;
  }

  .step-title {
    font-size: 0.75rem !important;
    margin-bottom: 0 !important;
    line-height: 1.15 !important;
  }

  .step-desc {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .header {
    height: 96px !important;
  }

  .nav-container {
    height: 96px !important;
  }

  .logo-header-img {
    height: 72px !important;
    max-height: 76px !important;
    width: auto !important;
  }

  .btn-bize-ulasin {
    padding: 8px 12px !important;
    font-size: 0.72rem !important;
  }

  .phone-pill {
    padding: 7px 10px !important;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .sec-title {
    font-size: 1.6rem;
  }

  /* SINGLE COLUMN PROJECTS PER ROW ON MOBILE SMARTPHONES */
  .projects-cards-row {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .card-img-wrap {
    height: 220px !important;
  }

  .card-content {
    padding: 20px !important;
  }

  .card-title {
    font-size: 1.25rem !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
  }

  .card-badge {
    font-size: 0.68rem !important;
    padding: 5px 10px !important;
    top: 10px !important;
    left: 10px !important;
  }

  .card-loc {
    font-size: 0.8rem !important;
    margin-bottom: 12px !important;
  }

  .card-specs-bar {
    padding: 10px 12px !important;
    font-size: 0.775rem !important;
    margin-bottom: 14px !important;
  }

  .card-text {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
    display: block !important;
  }

  .card-content .btn-gold {
    padding: 12px 16px !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    width: 100% !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .team-card-slide {
    flex: 0 0 calc(33.333% - 7px) !important;
    min-width: calc(33.333% - 7px) !important;
  }

  .team-slider-track {
    gap: 10px !important;
  }

  .team-photo-wrap { height: 320px !important; background: #F1F5F9; overflow: hidden; position: relative; }

  .team-content {
    padding: 8px 4px !important;
  }

  .team-name {
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    margin-bottom: 2px !important;
    line-height: 1.15 !important;
  }

  .team-role {
    font-size: 0.58rem !important;
    margin-bottom: 6px !important;
    line-height: 1.1 !important;
  }

  .team-content .btn-gold {
    font-size: 0.55rem !important;
    font-weight: 800 !important;
    padding: 4px 1px !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 6px !important;
    border-radius: var(--radius-full) !important;
    box-shadow: none !important;
    width: 86% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .team-content .btn-gold i {
    font-size: 0.48rem !important;
    margin-left: 2px !important;
  }

  .team-links {
    gap: 6px !important;
    font-size: 0.7rem !important;
    padding-top: 4px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .guide-split-card {
    grid-template-columns: 1fr;
  }

  div[style*="grid-template-columns:2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  div[style*="grid-template-columns:1.2fr 1fr"],
  div[style*="grid-template-columns:1fr 1.2fr"] {
    grid-template-columns: 1fr !important;
    padding: 24px !important;
  }

  div[style*="grid-template-columns:repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}
