/* Z5K MOBİLYA & TASARIM - ULTRA MODERN LUXURY CSS */
:root {
  --bg-primary: #0e1014;
  --bg-secondary: #16181f;
  --bg-tertiary: #1f222b;
  --bg-card: rgba(28, 31, 40, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.35);
  --text-primary: #f5f6f8;
  --text-secondary: #a3a9b7;
  --text-muted: #717786;
  --gold-primary: #d4af37;
  --gold-light: #f5d061;
  --gold-dark: #a8841a;
  --red-accent: #e53935;
  --red-dark: #b71c1c;
  --green-wa: #25d366;
  --font-heading: 'Outfit', 'Montserrat', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 6px 24px rgba(212, 175, 55, 0.25);
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TOP ANNOUNCEMENT BAR - KESİNLİKLE TEK SIRA (NO-WRAP) & LÜKS KREM */
.top-bar {
  background: #ede8dc;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 13.5px;
  padding: 9px 0;
  color: #2b2f3a;
  letter-spacing: 0.2px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  width: 100%;
}

.top-bar-left {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-badge {
  background: linear-gradient(135deg, #d4af37, #c28314);
  color: #0b0c10;
  font-weight: 800;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.6px;
  margin-right: 10px;
  display: inline-block;
  flex-shrink: 0;
}

.top-slogan {
  color: #3e4452;
  font-weight: 600;
  font-size: 13.5px;
  white-space: nowrap;
}

.top-bar-right {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  gap: 14px;
}

.top-sep {
  color: rgba(212, 175, 55, 0.5);
  font-weight: 300;
}

.top-icon {
  margin-right: 4px;
}

.top-contact-link {
  color: #14171f;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.top-contact-link strong {
  color: #0b0c10;
  font-weight: 800;
}

.top-contact-link:hover {
  color: #b38312;
}

.top-whatsapp-link {
  background: rgba(37, 211, 102, 0.16);
  color: #0d7a3e;
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-whatsapp-link:hover {
  background: #25d366;
  color: #fff;
}

.wa-dot {
  width: 7px;
  height: 7px;
  background: #25d366;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #25d366;
}

/* MAIN HEADER - GENİŞ, FERAH & ŞIK KREM ARKA PLAN */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(254, 252, 247, 0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  gap: 20px;
}

/* LOGO: ÖNDE, BÜYÜK & BELİRGİN */
.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 32px;
}

.brand-logo img {
  height: 68px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.08));
  transition: transform 0.25s ease;
}

.brand-logo:hover img {
  transform: scale(1.03);
}

/* NAVIGATION: RAHAT, TEK SATIR (NO-WRAP) & DROPDOWN */
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-grow: 1;
}

.nav-link {
  font-size: 15px;
  font-weight: 700;
  color: #1a1d24;
  letter-spacing: 0.2px;
  position: relative;
  padding: 12px 2px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover {
  color: #b38312;
}

.nav-link.active {
  color: #b38312;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(90deg, #d4af37, #c28314);
  border-radius: 3px;
}

/* DROPDOWN MENU FOR KURUMSAL */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-arrow {
  font-size: 12px;
  margin-left: 5px;
  color: #8c732b;
  transition: transform 0.25s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: #1a1d24;
  transition: background 0.2s, color 0.2s;
}

.dropdown-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #11141a;
}

.dropdown-item small {
  display: block;
  font-size: 12px;
  color: #6c7383;
  margin-top: 2px;
}

.dropdown-item:hover {
  background: #fbf8f0;
}

.dropdown-item:hover strong {
  color: #b38312;
}

.dropdown-item.active {
  background: #f7f2e4;
}

.dropdown-item.active strong {
  color: #b38312;
}

/* HEADER ACTIONS: AYRI, BOŞLUKLU & ŞIK BUTON */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: 24px;
  padding-left: 20px;
  border-left: 1px solid rgba(212, 175, 55, 0.25);
}

.btn-header {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.3px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.btn-icon {
  font-style: normal;
  font-size: 15px;
  margin-right: 2px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #1a1d24;
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  padding: 12px 24px;
  font-size: 14px;
  line-height: 1;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 60%, var(--gold-dark) 100%);
  color: #000;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #000;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #20ba59;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn-block { width: 100%; }

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: brightness(0.95) contrast(1.05) saturate(1.05);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 16, 20, 0.82) 0%, rgba(14, 16, 20, 0.55) 45%, rgba(14, 16, 20, 0.2) 100%);
}

.hero-title {
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.75);
}

.hero-subtitle {
  color: #f1f3f7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-content {
  max-width: 740px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 17px;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 34px;
  max-width: 650px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-light);
}

.trust-txt {
  font-size: 12px;
  color: var(--text-secondary);
}

/* SECTION PADDING & HEADINGS */
.section-pad {
  padding: 90px 0;
}

.bg-darker {
  background-color: var(--bg-secondary);
}

.sub-badge {
  display: inline-block;
  color: var(--gold-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 15.5px;
  max-width: 620px;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.feature-card.highlight {
  border-color: var(--border-gold);
  background: linear-gradient(145deg, rgba(35, 38, 48, 0.9) 0%, rgba(20, 22, 28, 0.9) 100%);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.service-card-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-media img {
  transform: scale(1.07);
}

.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(14, 16, 20, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.service-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.service-card-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.read-more-link {
  color: var(--gold-light);
  font-size: 13.5px;
  font-weight: 600;
}

.card-wa-btn {
  background: rgba(37, 211, 102, 0.15);
  color: var(--green-wa);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-media-wrapper {
  position: relative;
}

.about-hero-img {
  border-radius: var(--radius-md);
  width: 100%;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-tertiary);
  border: 2px solid var(--gold-primary);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.exp-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--gold-light);
}

.exp-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.lead-text {
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
}

.body-text {
  color: var(--text-secondary);
  font-size: 15px;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.point-item {
  display: flex;
  gap: 14px;
}

.point-item strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.point-item p {
  color: var(--text-secondary);
  font-size: 13.5px;
}

.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* PROJECTS GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
}

.project-media {
  width: 100%;
  height: 100%;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-media img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 75%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-cat {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 4px 0 6px;
}

.project-loc {
  color: var(--text-secondary);
  font-size: 13px;
}

/* CTA BANNER CARD */
.cta-banner-section {
  padding: 50px 0;
}

.cta-banner-card {
  background: linear-gradient(135deg, #1c1f28 0%, #13151b 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: var(--shadow-lg);
}

.cta-text {
  max-width: 600px;
}

.cta-badge {
  display: inline-block;
  color: var(--gold-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.cta-text p {
  color: var(--text-secondary);
  font-size: 15px;
}

.cta-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  padding: 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
}

/* NEWS GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.news-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.news-media {
  position: relative;
  height: 200px;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-primary);
  color: #000;
  font-weight: 700;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
}

.news-body {
  padding: 22px;
}

.news-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.news-summary {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.news-more {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
}

.stars {
  color: var(--gold-primary);
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-text {
  color: var(--text-primary);
  font-style: italic;
  font-size: 14.5px;
  margin-bottom: 18px;
}

.testimonial-author strong {
  display: block;
  color: #fff;
}

.author-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* FAQ ACCORDION */
.max-w-800 { max-width: 800px; }
.mx-auto { margin-inline: auto; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 20px;
  color: var(--gold-light);
  margin-left: 14px;
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}

/* CONTACT SECTION */
.contact-card-main {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.c-info h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 6px 0 10px;
}

.c-details p {
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 14.5px;
}

.c-details strong {
  color: #fff;
}

.c-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

/* FORMS */
.styled-form .form-group {
  margin-bottom: 16px;
}

.styled-form .form-row {
  display: flex;
  gap: 14px;
}

.styled-form .form-row .col {
  flex: 1;
}

.styled-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.styled-form .form-control {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: #fff;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: var(--transition);
}

.styled-form .form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.form-status {
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(37, 211, 102, 0.15);
  color: var(--green-wa);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.form-status.error {
  display: block;
  background: rgba(229, 57, 53, 0.15);
  color: var(--red-accent);
  border: 1px solid rgba(229, 57, 53, 0.3);
}

/* SUBPAGES COMMON */
.page-hero {
  background: linear-gradient(180deg, rgba(22, 24, 31, 0.95) 0%, rgba(14, 16, 20, 1) 100%);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.badge-gold {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: inline-block;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.page-lead {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 750px;
}

.breadcrumb-nav {
  padding: 12px 0;
  background: #090a0d;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: var(--text-muted);
}

.breadcrumb-list li.active {
  color: var(--gold-light);
}

/* DETAIL LAYOUT */
.detail-layout-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
}

.rich-text-body {
  font-size: 15.5px;
  color: #d1d5db;
  line-height: 1.75;
}

.rich-text-body h3, .rich-text-body h4 {
  font-family: var(--font-heading);
  color: #fff;
  margin: 24px 0 12px;
}

.rich-text-body ul {
  padding-left: 20px;
  margin-bottom: 18px;
}

.rich-text-body li {
  margin-bottom: 8px;
}

.sidebar-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
}

.sidebar-box h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.sidebar-links {
  list-style: none;
}

.sidebar-links li {
  margin-bottom: 10px;
}

.sidebar-links a {
  color: var(--text-secondary);
  font-size: 14px;
}

.sidebar-links a:hover,
.sidebar-links li.active a {
  color: var(--gold-light);
}

.cta-box {
  background: linear-gradient(135deg, #1f222b 0%, #15171e 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 30px;
}

.cta-box h3 {
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 8px;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: 14.5px;
  margin-bottom: 18px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* OFFER PAGE */
.offer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

.offer-form-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px;
}

.offer-benefits-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 36px;
}

.step-item {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-item h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}

.step-item p {
  color: var(--text-secondary);
  font-size: 13.5px;
}

/* FOOTER */
.site-footer {
  background: #090a0d;
  border-top: 1px solid var(--border-color);
  margin-top: 60px;
}

.footer-top {
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
}

.company-legal-name {
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 13.5px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  color: var(--text-secondary);
  font-size: 13.5px;
  margin-bottom: 8px;
}

.footer-contact-item strong {
  color: #fff;
}

.footer-stamp-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.webyaz-footer-link {
  color: #8c93a0;
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.webyaz-footer-link:hover {
  color: #ffffff;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.soc-btn {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-size: 12px;
  margin-right: 8px;
}

.soc-wa {
  background: rgba(37, 211, 102, 0.2);
  color: var(--green-wa);
}

/* FLOATING BUTTONS */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12);
}

.float-whatsapp {
  background: #25d366;
}

.float-phone {
  background: var(--gold-primary);
}

.float-tooltip {
  position: absolute;
  right: 64px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .about-grid, .contact-card-grid, .offer-grid, .detail-layout-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-card { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid, .projects-grid, .news-grid { grid-template-columns: 1fr; }
  .styled-form .form-row { flex-direction: column; gap: 0; }
  .top-bar-right { display: none; }
}

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(14, 16, 20, 0.98);
  backdrop-filter: blur(16px);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.drawer-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.drawer-body {
  padding: 30px 24px;
  overflow-y: auto;
  flex-grow: 1;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.drawer-nav .nav-link {
  font-size: 18px;
  font-weight: 600;
}


/* =========================================================================
   BOTTOM MOBILE NAVBAR & RESPONSIVENESS
   ========================================================================= */

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: rgba(254, 252, 247, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
}

.mobile-bottom-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.mob-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2b2f3a;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  gap: 3px;
  padding: 4px 8px;
  border-radius: 8px;
  transition: transform 0.2s, color 0.2s;
}

.mob-tab-icon {
  font-size: 20px;
  line-height: 1;
}

.mob-tab.active,
.mob-tab:hover {
  color: #b38312;
}

/* Center Gold Action Button */
.mob-tab-cta {
  background: linear-gradient(135deg, #f5d061 0%, #d4af37 60%, #a8841a 100%);
  color: #0b0c10 !important;
  padding: 8px 14px;
  border-radius: 24px;
  font-weight: 800;
  font-size: 11.5px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.45);
  transform: translateY(-6px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.mob-tab-cta:hover {
  transform: translateY(-8px);
}

.mob-tab-wa {
  color: #0d7a3e;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .header-actions .btn-header { display: none; } /* Hide from top header on mobile */
  .header-actions { border-left: none; margin-left: 0; padding-left: 0; }
  .mobile-bottom-bar { display: block; }
  
  .top-bar-right { display: none; }
  .top-bar-inner { justify-content: center; text-align: center; }
  
  .header-inner { height: 74px; }
  .brand-logo img { height: 50px; }
  .brand-logo { margin-right: 0; }
  
  /* Give bottom padding to body so content isn't covered by bottom navbar */
  body { padding-bottom: 74px; }
  .floating-actions { bottom: 85px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 15px; }
  .hero-cta-group { flex-direction: column; }
  .cta-banner-card { padding: 30px 20px; }
  .contact-card-main { padding: 30px 18px; }
}


/* MOBILE PADDING & EDGE SPACING FIX */
@media (max-width: 992px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
  }

  .site-footer {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-top {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    padding: 0 !important;
  }

  .footer-col {
    padding: 0 !important;
    width: 100% !important;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    display: block;
    padding: 3px 0;
    font-size: 14.5px;
  }

  .footer-bottom-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Services Grid on mobile */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .service-card {
    margin: 0 auto;
    width: 100%;
  }

  .projects-grid {
    grid-template-columns: 1fr !important;
  }
}


/* AI ROOM DESIGN CONSULTANT WIDGET */
.ai-section {
  background: linear-gradient(180deg, #13161c 0%, #0d0f14 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ai-card-wrapper {
  background: rgba(24, 27, 35, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 900px) {
  .ai-grid { grid-template-columns: 1fr; }
  .ai-card-wrapper { padding: 24px 16px; }
}

.upload-dropzone {
  border: 2px dashed rgba(212, 175, 55, 0.5);
  border-radius: var(--radius-sm);
  padding: 32px 20px;
  text-align: center;
  background: rgba(14, 16, 20, 0.6);
  cursor: pointer;
  transition: var(--transition);
}

.upload-dropzone:hover,
.upload-dropzone.dragover {
  border-color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
}

.dropzone-icon {
  font-size: 42px;
  margin-bottom: 10px;
  display: block;
}

.preview-box {
  margin-top: 16px;
  display: none;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  max-height: 260px;
}

.preview-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.ai-result-panel {
  background: rgba(14, 16, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 24px;
  min-height: 380px;
}

.ai-loading-box {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.ai-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.palette-dots {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.palette-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-block;
}

.rec-item {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--gold-primary);
  padding: 12px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.rec-item h5 {
  color: var(--gold-light);
  margin-bottom: 4px;
  font-size: 14px;
}

.rec-item p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}


/* =========================================================================
   WORDPRESS STYLE FULLSCREEN LIGHTBOX SLIDER
   ========================================================================= */

.lightbox-trigger {
  cursor: pointer;
  position: relative;
}

.gallery-zoom-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.9);
  color: #0b0c10;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  user-select: none;
  touch-action: pan-y;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 12, 0.97);
  backdrop-filter: blur(18px);
  z-index: 1;
}

.lightbox-top-bar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: #fff;
}

.lightbox-counter {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.lightbox-caption {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  max-width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lightbox-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lightbox-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-btn:hover {
  background: var(--gold-primary);
  color: #000;
  transform: scale(1.08);
}

.lightbox-body {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  max-height: calc(100vh - 170px);
}

.lightbox-arrow {
  background: rgba(20, 24, 32, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #ffffff;
  font-size: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  z-index: 20;
}

.lightbox-arrow:hover {
  background: var(--gold-primary);
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.lightbox-image-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
}

.lightbox-main-img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: opacity 0.25s ease, transform 0.25s ease;
  animation: lightboxZoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightboxZoomIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-thumbnail-bar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  overflow-x: auto;
  scrollbar-width: thin;
}

.lightbox-thumb {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  opacity: 0.5;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.lightbox-thumb:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--gold-primary);
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

@media (max-width: 768px) {
  .lightbox-top-bar { padding: 12px 16px; }
  .lightbox-caption { font-size: 14px; max-width: 50%; }
  .lightbox-arrow { width: 42px; height: 42px; font-size: 20px; }
  .lightbox-main-img { max-height: 65vh; }
  .lightbox-thumb { width: 50px; height: 38px; }
}


/* MAGNIFIER & INTERACTIVE ZOOM LENS STYLING */
.lightbox-zoom-hint {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  background: rgba(14, 16, 20, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.lightbox-image-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  overflow: hidden;
  position: relative;
}

.lightbox-zoom-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 8px;
  cursor: crosshair;
  transition: box-shadow 0.3s ease;
}

.lightbox-zoom-wrapper:hover {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
}

.lightbox-main-img {
  max-width: 90vw;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: block;
  transform-origin: center center;
  transition: transform 0.12s ease-out, opacity 0.25s ease;
}

/* Active Zoom State */
.lightbox-zoom-wrapper.zoomed .lightbox-main-img {
  transform: scale(2.4);
  cursor: crosshair;
}

.lightbox-btn.active-zoom {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.7);
}


/* =========================================================================
   CONTACT PAGE LUXURY HERO BANNER & MODULAR BOX GRID
   ========================================================================= */

.contact-banner-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}

.contact-banner-bg {
  position: absolute;
  inset: 0;
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.1);
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 16, 20, 0.92) 0%, rgba(14, 16, 20, 0.65) 50%, rgba(14, 16, 20, 0.3) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 10;
  padding: 60px 24px;
}

.contact-page-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin: 10px 0 12px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

.contact-page-lead {
  font-size: 16px;
  color: #e2e8f0;
  max-width: 650px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* MODULAR 6-BOX GRID */
.contact-boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-box-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.contact-box-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-box-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.contact-box-card:hover::before {
  opacity: 1;
}

.contact-box-card.highlight-wa {
  border-color: rgba(37, 211, 102, 0.4);
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.06) 0%, var(--bg-card) 100%);
}

.c-box-icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}

.contact-box-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.c-box-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.c-box-val {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold-light);
  word-break: break-all;
}

.c-box-val.wa-text {
  color: var(--green-wa);
}

.c-box-address {
  font-size: 13.5px;
  color: #d1d5db;
  line-height: 1.5;
  margin-bottom: 10px;
}

.c-box-info {
  font-size: 12.5px;
  color: #cbd5e1;
  margin-bottom: 5px;
}

.c-box-info strong {
  color: var(--gold-light);
}

/* MAP & FORM DUAL LAYOUT */
.contact-main-dual {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.map-card-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.map-card-header {
  padding: 18px 24px;
  background: rgba(14, 16, 20, 0.8);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-card-header h3 {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
}

.map-tag {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.map-frame-container {
  flex: 1;
  min-height: 380px;
}

.map-card-footer {
  padding: 16px 24px;
  background: rgba(14, 16, 20, 0.9);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.form-card-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.form-card-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.form-card-header p {
  font-size: 13.5px;
  color: var(--text-secondary);
}

@media (max-width: 992px) {
  .contact-boxes-grid { grid-template-columns: 1fr; }
  .contact-main-dual { grid-template-columns: 1fr; }
  .contact-page-title { font-size: 28px; }
  .contact-hero-content { padding: 40px 20px; }
}


/* =========================================================================
   GLOBAL QUOTE & KEŞİF SECTION (EVERY PAGE BOTTOM)
   ========================================================================= */

.global-quote-section {
  padding: 60px 0 20px;
  position: relative;
  z-index: 10;
}

.global-quote-card {
  background: linear-gradient(135deg, rgba(28, 32, 42, 0.95) 0%, rgba(18, 20, 26, 0.98) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.global-quote-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.quote-card-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

.quote-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 12px 0 10px;
  line-height: 1.25;
}

.quote-lead {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.quote-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.q-feat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.q-feat-icon {
  font-size: 24px;
  line-height: 1;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
}

.q-feat-item strong {
  display: block;
  font-size: 14.5px;
  color: #ffffff;
  margin-bottom: 2px;
}

.q-feat-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.quote-direct-contact p {
  font-size: 13px;
  color: #a0aec0;
  margin-bottom: 8px;
  font-weight: 600;
}

.q-contact-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quote-form-side {
  background: rgba(14, 16, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.q-form-box h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

@media (max-width: 992px) {
  .quote-card-grid { grid-template-columns: 1fr; gap: 32px; }
  .global-quote-card { padding: 30px 20px; }
  .quote-title { font-size: 26px; }
}


/* =========================================================================
   GLOBAL QUOTE & KEŞİF SECTION (EVERY PAGE BOTTOM)
   ========================================================================= */

.global-quote-section {
  padding: 60px 0 20px;
  position: relative;
  z-index: 10;
}

.global-quote-card {
  background: linear-gradient(135deg, rgba(28, 32, 42, 0.95) 0%, rgba(18, 20, 26, 0.98) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.global-quote-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.quote-card-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

.quote-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 12px 0 10px;
  line-height: 1.25;
}

.quote-lead {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.quote-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.q-feat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.q-feat-icon {
  font-size: 24px;
  line-height: 1;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
}

.q-feat-item strong {
  display: block;
  font-size: 14.5px;
  color: #ffffff;
  margin-bottom: 2px;
}

.q-feat-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.quote-direct-contact p {
  font-size: 13px;
  color: #a0aec0;
  margin-bottom: 8px;
  font-weight: 600;
}

.q-contact-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quote-form-side {
  background: rgba(14, 16, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.q-form-box h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

@media (max-width: 992px) {
  .quote-card-grid { grid-template-columns: 1fr; gap: 32px; }
  .global-quote-card { padding: 30px 20px; }
  .quote-title { font-size: 26px; }
}


/* =========================================================================
   PAGE BANNER HERO (FULL-WIDTH LUXURY PANORAMA HEADERS)
   ========================================================================= */

.page-banner-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}

.page-banner-bg {
  position: absolute;
  inset: 0;
}

.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.1);
  transform: scale(1.02);
  transition: transform 1.2s ease;
}

.page-banner-hero:hover .page-hero-img {
  transform: scale(1.05);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 16, 20, 0.94) 0%, rgba(14, 16, 20, 0.7) 50%, rgba(14, 16, 20, 0.35) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  padding: 60px 24px;
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin: 12px 0 10px;
  line-height: 1.25;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

.page-banner-lead {
  font-size: 16.5px;
  color: #e2e8f0;
  max-width: 700px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

@media (max-width: 992px) {
  .page-banner-hero { min-height: 300px; }
  .page-banner-title { font-size: 28px; }
  .page-banner-lead { font-size: 15px; }
  .page-hero-content { padding: 40px 20px; }
}


/* CORPORATE EXTRA STYLING */
.tag-gold-pill {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: auto;
}

.corporate-info-list p {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 6px;
}

.corporate-info-list strong {
  color: #ffffff;
  display: inline-block;
  min-width: 140px;
}

.stats-boxes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box-item {
  background: rgba(14, 16, 20, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.stat-box-item .stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--gold-light);
  display: block;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-box-item .stat-lbl {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
}


/* ENHANCED LUXURY SPACING FOR CONTACT & CORPORATE CARDS */
.contact-cards-section,
.corporate-cards-section {
  padding-top: 70px !important;
  padding-bottom: 80px !important;
}

.contact-main-dual {
  margin-top: 68px !important;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.contact-boxes-grid {
  margin-bottom: 20px;
}


/* =========================================================================
   ULTRA LUXURY MOBILE DRAWER MENU (DARK & GOLD HIGH CONTRAST)
   ========================================================================= */

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 310px;
  height: 100vh;
  height: 100dvh;
  background: #0a0d14 !important;
  border-left: 1px solid var(--border-gold);
  z-index: 100000;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.8);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0 !important;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #111520;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.drawer-logo-img {
  height: 42px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}

.drawer-close {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  font-size: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.drawer-close:hover {
  background: var(--gold-primary);
  color: #000;
}

.drawer-body {
  padding: 16px 16px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.22s ease;
}

.drawer-link .d-icon {
  font-size: 18px;
  line-height: 1;
}

.drawer-link:hover {
  color: #000000 !important;
  background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-light) 100%) !important;
  border-color: var(--gold-primary);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.drawer-link.active {
  color: #000000 !important;
  background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-light) 100%) !important;
  font-weight: 800;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.drawer-footer {
  margin-top: 10px;
}

.drawer-contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.d-contact-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}

.d-contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.d-contact-label {
  color: var(--gold-light);
  font-weight: 700;
}

.d-contact-val {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
}

.d-contact-val:hover {
  color: #fff;
}


/* =========================================================================
   GENEROUS LUXURY VERTICAL SPACING FOR SUBPAGES (HERO & CONTENT GAP)
   ========================================================================= */

.page-section {
  padding: 75px 0 90px !important;
}

.page-banner-hero {
  border-bottom: 1px solid var(--border-gold);
}

.news-grid,
.services-grid,
.projects-grid,
.gallery-page-grid,
.detail-layout-grid,
.offer-grid {
  padding-top: 10px;
  gap: 32px;
}

@media (max-width: 768px) {
  .page-section {
    padding: 45px 0 60px !important;
  }
}


/* DETAIL FEATURED MEDIA LIGHTBOX TRIGGER & HINT */
.detail-featured-media {
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.detail-featured-media img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.detail-featured-media:hover img {
  transform: scale(1.02);
}

.detail-featured-media:hover {
  border-color: var(--border-gold);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}

.img-expand-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(14, 16, 20, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transition: all 0.25s ease;
}

.detail-featured-media:hover .img-expand-hint {
  background: var(--gold-primary);
  color: #000;
  transform: translateY(-2px);
}

.rich-text-body img {
  cursor: zoom-in;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rich-text-body img:hover {
  transform: scale(1.015);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}


/* UNIVERSAL ZOOM-IN HOVER FOR ALL MEDIA CARDS */
.service-card-media,
.project-media,
.news-media,
.gallery-item,
.gallery-card,
.detail-featured-media,
.rich-text-body img {
  cursor: zoom-in !important;
}

.service-card-media img,
.project-media img,
.news-media img,
.gallery-item img,
.gallery-card img {
  cursor: zoom-in !important;
}


/* SECTION HEAD & BUTTON SPACING TO GRIDS */
.section-head {
  margin-bottom: 48px !important;
}

.projects-section .projects-grid,
.services-section .services-grid,
.news-section .news-grid,
.gallery-section .gallery-grid {
  margin-top: 48px !important;
}

.flex-between {
  margin-bottom: 48px !important;
}


/* =========================================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS & TOUCH OPTIMIZATIONS (< 992px & < 768px)
   ========================================================================= */

/* Prevent any horizontal page drift */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  -webkit-overflow-scrolling: touch;
}

/* Base Container Mobile Safety Padding */
@media (max-width: 768px) {
  .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  body {
    padding-bottom: 75px !important; /* Space for mobile bottom bar */
  }

  /* TOPBAR MOBILE COMPACT */
  .topbar {
    padding: 6px 0 !important;
    font-size: 11.5px !important;
  }

  .topbar-content {
    flex-direction: row !important;
    justify-content: space-between !important;
    white-space: nowrap !important;
  }

  .topbar-left {
    display: none !important; /* Save space on small phones */
  }

  .topbar-right {
    width: 100% !important;
    justify-content: space-between !important;
    gap: 8px !important;
    font-size: 12px !important;
  }

  /* HEADER MOBILE */
  .site-header {
    height: 72px !important;
  }

  .header-content {
    height: 72px !important;
  }

  .brand-logo img {
    height: 48px !important;
    max-width: 210px !important;
  }

  .btn-header {
    display: none !important; /* Replaced by bottom bar */
  }

  .mobile-toggle {
    width: 44px !important;
    height: 44px !important;
    padding: 10px !important;
  }

  /* BANNER HERO ON MOBILE */
  .page-banner-hero,
  .contact-banner-hero {
    min-height: 240px !important;
    padding: 20px 0 !important;
  }

  .page-hero-content,
  .contact-hero-content {
    padding: 30px 16px !important;
  }

  .page-banner-title,
  .contact-page-title {
    font-size: 24px !important;
    line-height: 1.25 !important;
    margin: 8px 0 !important;
  }

  .page-banner-lead,
  .contact-page-lead {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  /* CONTACT PAGE BOXES GRID ON MOBILE */
  .contact-boxes-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .contact-box-card {
    padding: 22px 18px !important;
  }

  .c-box-val {
    font-size: 17px !important;
  }

  /* CONTACT DUAL MAP & FORM ON MOBILE */
  .contact-main-dual {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-top: 36px !important;
  }

  .map-frame-container {
    min-height: 260px !important;
    height: 260px !important;
  }

  .map-frame-container iframe {
    height: 260px !important;
  }

  .form-card-wrapper {
    padding: 24px 18px !important;
  }

  .form-row {
    flex-direction: column !important;
    gap: 0 !important;
  }

  .form-row .col {
    width: 100% !important;
  }

  /* PREVENT IOS ZOOM ON INPUT FOCUS */
  .form-control,
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  select,
  textarea {
    font-size: 16px !important;
    padding: 13px 14px !important;
    border-radius: 8px !important;
  }

  /* ALL CONTENT GRIDS ON MOBILE */
  .services-grid,
  .projects-grid,
  .news-grid,
  .gallery-page-grid,
  .gallery-grid,
  .features-grid,
  .stats-boxes-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .project-card {
    height: 260px !important;
  }

  .service-card-media {
    height: 210px !important;
  }

  /* GLOBAL QUOTE CARD ON MOBILE */
  .global-quote-card {
    padding: 26px 18px !important;
    border-radius: var(--radius-md) !important;
  }

  .quote-card-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .quote-title {
    font-size: 22px !important;
  }

  .q-feat-item {
    gap: 10px !important;
  }

  .q-feat-icon {
    font-size: 20px !important;
    padding: 6px !important;
  }

  .q-contact-btns {
    flex-direction: column !important;
    width: 100% !important;
  }

  .q-contact-btns .btn {
    width: 100% !important;
  }

  .quote-form-side {
    padding: 22px 16px !important;
  }

  /* FOOTER ON MOBILE */
  .footer-top {
    padding: 45px 0 25px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .footer-bottom-inner {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .floating-actions {
    bottom: 85px !important;
    right: 14px !important;
  }

  .float-btn {
    width: 48px !important;
    height: 48px !important;
  }

  /* DETAIL LAYOUTS ON MOBILE */
  .detail-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .page-section {
    padding: 40px 0 55px !important;
  }
}


/* =========================================================================
   HOMEPAGE NEWS & BLOG CAROUSEL SLIDER (4 VISIBLE ITEMS)
   ========================================================================= */

.slider-nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--gold-primary);
  color: #000;
  transform: scale(1.08);
}

.news-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0 20px;
}

.news-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px;
}

.news-slider-track::-webkit-scrollbar {
  display: none;
}

.news-slide-item {
  flex: 0 0 calc(25% - 18px); /* 4 items visible */
  min-width: 270px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.news-slide-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.news-slide-item .news-media {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.news-slide-item .news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-slide-item:hover .news-media img {
  transform: scale(1.06);
}

.news-date {
  font-size: 11.5px;
  color: var(--gold-light);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.news-slide-item .news-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-slide-item .news-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}

.news-slide-item .news-title a:hover {
  color: var(--gold-light);
}

.news-slide-item .news-summary {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-slide-item .news-more {
  color: var(--gold-light);
  font-size: 12.5px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .news-slide-item { flex: 0 0 calc(33.333% - 16px); } /* 3 items */
}

@media (max-width: 992px) {
  .news-slide-item { flex: 0 0 calc(50% - 12px); } /* 2 items */
}

@media (max-width: 600px) {
  .news-slide-item { flex: 0 0 85%; } /* 1 large card on mobile */
  .slider-nav-controls { gap: 6px; }
}


/* AI Custom Prompt Input & Chips */
.ai-custom-prompt-wrapper {
  margin-bottom: 20px;
}

.ai-prompt-label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.ai-custom-prompt-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.ai-custom-prompt-input:focus {
  border-color: #f59e0b;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.ai-custom-prompt-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.ai-prompt-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.chip-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.ai-chip-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.ai-chip-btn:hover {
  background: #f59e0b;
  color: #0f172a;
  border-color: #f59e0b;
}
