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

:root {
  --bg-primary: #faf8f5;
  --bg-secondary: #f3f0e8;
  --bg-dark: #0f0f10;
  --bg-dark-card: rgba(22, 22, 24, 0.75);
  --text-dark: #161616;
  --text-light: #ffffff;
  --text-muted: #6e6d6a;
  --accent-green: #b82326;
  --accent-green-hover: #91181a;
  --accent-green-light: rgba(184, 35, 38, 0.06);
  --accent-gold: #C89B3C; /* Apple Luxury Gold */
  --accent-gold-gradient: linear-gradient(135deg, #EAD096 0%, #C89B3C 50%, #A0741E 100%);
  --glass-bg-light: rgba(255, 255, 255, 0.75);
  --glass-bg-card: rgba(255, 255, 255, 0.85);
  --glass-border-light: 1px solid rgba(255, 255, 255, 0.8);
  --glass-border-gold: 1px solid rgba(200, 155, 60, 0.3);
  --glass-shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --glass-shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 30px rgba(200, 155, 60, 0.18);
  --border-light: rgba(22, 22, 22, 0.08);
  --border-dark: rgba(250, 249, 248, 0.12);
  --font-serif: 'Outfit', 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-sans: 'Outfit', 'Plus Jakarta Sans', 'Inter', sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-normal: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-fast: all 0.18s ease;
  --container-width: 1320px;
  --radius-card: 28px;
  --radius-pill: 50px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

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

ul {
  list-style: none;
}

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

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 40px 0;
  position: relative;
}

#about {
  padding-top: 20px;
  padding-bottom: 10px;
}

#projects, #upcoming-projects, #dlf-projects {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-grey {
  background-color: var(--bg-secondary);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--accent-green);
  margin-bottom: 16px;
}

.section-label svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.section-title .serif-italic {
  font-family: var(--font-sans);
  font-style: normal;
  color: var(--accent-green);

  font-weight: 700;}

.section-dark .section-label {
  color: var(--accent-gold);
}

.section-dark .section-title .serif-italic {
  color: var(--accent-gold);
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #91181a;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(145, 24, 26, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
  z-index: 2;
}

.btn-premium .btn-text-wrapper {
  position: relative;
  display: block;
  height: 20px;
  overflow: hidden;
  z-index: 3;
}

.btn-premium .btn-text-relative {
  display: block;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-premium .btn-text-absolute {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-premium .btn-arrow-icon {
  margin-left: 12px;
  width: 14px;
  height: 10px;
  fill: currentColor;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-premium:hover {
  background: #b82326;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 28px rgba(184, 35, 38, 0.5), 0 0 20px rgba(184, 35, 38, 0.3);
  transform: translateY(-2px) scale(1.02);
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-premium:hover .btn-text-relative {
  transform: translateY(-100%);
}

.btn-premium:hover .btn-text-absolute {
  transform: translateY(-100%);
}

.btn-premium:hover .btn-arrow-icon {
  transform: translateX(6px);
}

.btn-premium.btn-white {
  background-color: var(--text-light);
  color: var(--text-dark);
}

.btn-premium.btn-white:hover {
  background-color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.master-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  transform: none;
  height: 64px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.master-nav.scrolled {
  top: 0;
  height: 56px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(200, 155, 60, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.master-nav .nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
}

.logo-wrapper svg {
  height: 38px !important;
  width: auto;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.master-nav.scrolled .logo-wrapper svg {
  height: 34px !important;
}

.nav-links {
  display: flex;
  gap: 40px;
  transition: opacity 0.3s ease;
}

.nav-links:hover a:not(:hover) {
  opacity: 0.4;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-green);
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: #91181a;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(145, 24, 26, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.nav-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.nav-phone:hover {
  background: #b82326;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 22px rgba(184, 35, 38, 0.5), 0 0 15px rgba(184, 35, 38, 0.3);
  transform: translateY(-2px) scale(1.02);
}

.nav-phone:hover::before {
  left: 100%;
}

.nav-phone svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
  transition: transform 0.3s ease;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.hero-slider-section {
  height: 100vh;
  width: 100%;
  position: relative;
  background-color: var(--bg-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.3, 1);
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0.5) 0%, rgba(18, 18, 18, 0.7) 100%);
  z-index: 3;
}

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  color: var(--text-light);
  margin-top: 60px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 24px;
  animation: fadeInUp 1s ease forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-title .serif-italic {
  font-family: var(--font-sans);
  font-style: normal;
  color: var(--accent-gold);

  font-weight: 700;}

.hero-desc {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 650px;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero-btn-wrap {
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.hero-highlights {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 30px;
  animation: fadeInUp 1s ease 0.8s forwards;
  opacity: 0;
  max-width: 720px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.highlight-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.highlight-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.hero-floating-card {
  position: absolute;
  bottom: 60px;
  right: 40px;
  z-index: 10;
  background: rgba(18, 18, 20, 0.75);
  border: 1px solid rgba(200, 155, 60, 0.35);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 24px;
  border-radius: 28px;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: fadeInRight 1.2s cubic-bezier(0.25, 1, 0.3, 1) 0.6s forwards;
  opacity: 0;
}

.hero-floating-card .card-tag {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #f5e6c8;
  background-color: rgba(200, 155, 60, 0.18);
  border: 1px solid rgba(200, 155, 60, 0.3);
  padding: 5px 12px;
  border-radius: 40px;
  align-self: flex-start;
}

.hero-floating-card .card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #ffffff;
  font-weight: 700;
}

.hero-floating-card .card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-floating-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.hero-floating-card .card-price {
  font-weight: 700;
  font-size: 15px;
  color: var(--accent-gold);
}

.hero-floating-card .card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-floating-card .card-link svg {
  width: 10px;
  height: 8px;
  fill: currentColor;
  transition: var(--transition-fast);
}

.hero-floating-card .card-link:hover svg {
  transform: translateX(3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 60px;
  left: 40px;
  z-index: 10;
  color: var(--text-light);
  opacity: 0.7;
  font-size: 14px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background-color: var(--text-light);
  position: relative;
}

.hero-dots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-normal);
}

.hero-dot.active {
  background-color: var(--text-light);
  transform: scale(1.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  padding-right: 20px;
}

.about-desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.about-sub-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-features {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.about-feature-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-feature-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-green);
  fill: currentColor;
}

.about-feature-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.about-image-frame {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.about-image-wrapper {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1.35 / 1;
  position: relative;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: skewX(-22deg);
  pointer-events: none;
  z-index: 3;
  transition: left 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image-frame:hover .about-image-wrapper::before {
  left: 140%;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-image-frame:hover .about-image-wrapper img {
  transform: scale(1.05);
}

.about-image-caption {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: normal;
}

.tabs-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
}

.tabs-menu {
  display: flex;
  gap: 40px;
}

.tab-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  padding-bottom: 20px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.tab-link::after {
  content: '';
  position: absolute;
  bottom: -21px; 
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-green);
  transition: var(--transition-smooth);
}

.tab-link.active {
  color: var(--text-dark);
}

.tab-link.active::after {
  width: 100%;
}

.tab-content {
  display: none;
  animation: fadeIn 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
to { opacity: 1; transform: translateY(0); }
}

.tabs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tab-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tab-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
}

.tab-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.tab-image-wrapper {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 1.4 / 1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
}

.tab-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: skewX(-22deg);
  pointer-events: none;
  z-index: 3;
  transition: left 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tab-content:hover .tab-image-wrapper::before,
.tab-image-wrapper:hover::before {
  left: 140%;
}

.tab-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trusted-section {
  padding: 90px 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(200, 155, 60, 0.15);
  border-bottom: 1px solid rgba(200, 155, 60, 0.15);
  position: relative;
  overflow: hidden;
}

.trusted-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.trusted-main-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 12px 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gold-text {
  color: var(--accent-gold);
}

.red-text {
  color: var(--accent-green);
}

.trusted-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.brands-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.brand-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 155, 60, 0.22);
  border-radius: 24px;
  padding: 24px 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: rgba(200, 155, 60, 0.55);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 25px rgba(200, 155, 60, 0.15);
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.brand-card-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  background: rgba(200, 155, 60, 0.1);
  padding: 5px 12px;
  border-radius: 30px;
  margin-bottom: 16px;
  border: 1px solid rgba(200, 155, 60, 0.25);
}

.brand-card-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.brand-card-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.brand-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-green);
  border-top: 1px dashed rgba(22, 22, 22, 0.1);
  padding-top: 14px;
}

.brand-arrow-icon {
  width: 14px;
  height: 10px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.brand-card:hover .brand-arrow-icon {
  transform: translateX(4px);
}

.projects-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.projects-filter-menu {
  display: flex;
  gap: 12px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.filter-btn.active,
.filter-btn:hover {
  background: #91181a;
  color: var(--text-light);
  border-color: #91181a;
  box-shadow: 0 8px 22px rgba(145, 24, 26, 0.38);
  transform: translateY(-1px);
}



.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.project-card-link-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.project-card-wrap {
  width: 100%;
  min-width: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  position: relative;
  cursor: pointer;
}

.project-card-wrap a.project-card-btn::after,
.project-card-wrap .project-card-action a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}

.project-card-wrap:hover {
  transform: translateY(-8px) scale(1.01);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.12), 0 0 24px rgba(145, 24, 26, 0.18);
  border-color: rgba(145, 24, 26, 0.4);
}

.project-card-image {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  position: relative;
  background-color: #111111;
}

.project-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: skewX(-22deg);
  pointer-events: none;
  z-index: 3;
  transition: left 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card-wrap:hover .project-card-image::before {
  left: 140%;
}

.project-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.08) 50%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
}

.project-card-wrap:hover .project-card-image img {
  transform: scale(1.08);
  filter: brightness(1.04);
}

.project-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(12, 12, 14, 0.85);
  color: #f5e6c8;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: 5px 12px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 40px;
  border: 1px solid rgba(200, 155, 60, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.project-card-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

.project-card-details {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: transparent;
}

.project-card-loc {
  font-size: 10px;
  color: #787670;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.project-card-title {
  font-family: var(--font-serif);
  font-size: 17.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.project-card-wrap:hover .project-card-title {
  color: #91181a;
}

.project-card-specs {
  display: flex;
  justify-content: space-between;
  background: rgba(245, 242, 235, 0.8);
  border: 1px solid rgba(200, 155, 60, 0.22);
  border-radius: 14px;
  padding: 8px 12px;
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-label {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #787670;
  font-weight: 700;
}

.spec-val {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-dark);
}

.project-card-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.project-card-price {
  font-weight: 800;
  font-size: 14.5px;
  color: #91181a;
  letter-spacing: -0.01em;
}

.project-card-btn {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  background: #91181a;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(145, 24, 26, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.project-card-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.project-card-btn svg {
  width: 12px;
  height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card-btn:hover,
.project-card-wrap:hover .project-card-btn {
  background: #b82326;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 22px rgba(184, 35, 38, 0.5), 0 0 15px rgba(184, 35, 38, 0.3);
  transform: translateY(-2px) scale(1.02);
}

.project-card-btn:hover::before,
.project-card-wrap:hover .project-card-btn::before {
  left: 100%;
}

.project-card-btn:hover svg,
.project-card-wrap:hover .project-card-btn svg {
  transform: translateX(5px);
}

.scroll-track-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 20px auto 0;
  padding: 0 40px;
  display: flex;
  justify-content: flex-end;
}

.scroll-track {
  width: 200px;
  height: 2px;
  background-color: var(--border-light);
  position: relative;
  border-radius: 2px;
}

.scroll-thumb {
  width: 40px;
  height: 100%;
  background-color: var(--accent-green);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 2px;
  transition: left 0.1s ease-out;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.testimonial-nav {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.nav-circle-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  transition: var(--transition-normal);
}

.nav-circle-btn svg {
  width: 18px;
  height: 14px;
  fill: var(--text-dark);
  transition: var(--transition-fast);
}

.nav-circle-btn.btn-prev svg {
  transform: rotate(180deg);
}

.nav-circle-btn:hover {
  background-color: var(--accent-green);
  border-color: var(--accent-green);
}

.nav-circle-btn:hover svg {
  fill: var(--text-light);
}

.testimonial-carousel-wrap {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.testimonial-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-item.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  position: relative;
}

.rating-stars {
  display: flex;
  gap: 4px;
  color: var(--accent-gold);
}

.rating-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.55;
  color: var(--text-dark);
  font-weight: 600;
}

.testimonial-author-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.author-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* Articles/Blog Section (Compact Glassmorphic Cards) */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto 35px;
}

.article-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.article-card:hover {
  transform: translateY(-6px) scale(1.005);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(200, 155, 60, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 22px rgba(200, 155, 60, 0.18);
}

.article-image-wrap {
  aspect-ratio: 1.85 / 1;
  overflow: hidden;
  background-color: #ddd;
  position: relative;
}

.article-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: skewX(-22deg);
  pointer-events: none;
  z-index: 3;
  transition: left 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.article-card:hover .article-image-wrap::before {
  left: 140%;
}

.article-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.article-card:hover .article-image-wrap img {
  transform: scale(1.04);
}

.article-card-details {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

.article-tag {
  font-weight: 600;
  color: var(--accent-gold);
}

.article-card-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.article-card-btn {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  background: #91181a;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(145, 24, 26, 0.35);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  align-self: flex-start;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.article-card-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.article-card-btn svg {
  width: 12px;
  height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.article-card:hover .article-card-btn,
.article-card-btn:hover {
  background: #b82326;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 20px rgba(184, 35, 38, 0.5);
  transform: translateY(-2px);
}

.article-card:hover .article-card-btn::before,
.article-card-btn:hover::before {
  left: 100%;
}

.article-card:hover .article-card-btn svg,
.article-card-btn:hover svg {
  transform: translateX(5px);
}

.articles-action-wrap {
  display: flex;
  justify-content: center;
}

/* FAQ Accordions Section */
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: flex-start;
}

.faq-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border-light);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.faq-item:hover .faq-question {
  color: var(--accent-green);
}

.faq-icon-wrap {
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon-line {
  background-color: var(--text-dark);
  position: absolute;
  transition: var(--transition-normal);
}

.faq-icon-line.horizontal {
  width: 16px;
  height: 2px;
}

.faq-icon-line.vertical {
  width: 2px;
  height: 16px;
}

.faq-item.active .faq-icon-line.vertical {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-icon-line.horizontal {
  background-color: var(--accent-green);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.3, 1);
}

.faq-body-inner {
  padding-top: 16px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Callback Form & Footer Section */
.footer-contact-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 35px;
}

.footer-contact-title {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
  max-width: 800px;
  margin-bottom: 16px;
}

.footer-contact-title .serif-italic {
  font-family: var(--font-sans);
  font-style: normal;
  color: var(--accent-green);
  font-weight: 700;
}

/* Minimalist Form Inputs */
/* Highlighted Luxury Glassmorphic Contact Form */
.footer-form-wrapper {
  max-width: 940px;
  margin: 0 auto 40px;
  background: linear-gradient(145deg, rgba(26, 26, 32, 0.9) 0%, rgba(15, 15, 18, 0.96) 100%);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-radius: 32px;
  padding: 44px 48px;
  border: 1.5px solid rgba(200, 155, 60, 0.45);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(200, 155, 60, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: visible;
}

.footer-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C89B3C, #91181a, #C89B3C, transparent);
  border-radius: 32px 32px 0 0;
}

.callback-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px 24px;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-control {
  width: 100%;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-control::placeholder {
  color: rgba(250, 249, 248, 0.45);
  transition: var(--transition-normal);
}

.form-control:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 20px rgba(200, 155, 60, 0.35);
  outline: none;
}

.form-control:focus::placeholder {
  opacity: 0.5;
}

/* Custom Dropdown Component */
.custom-select-wrapper {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-select-trigger:focus,
.custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 20px rgba(200, 155, 60, 0.35);
}

.custom-select-text {
  color: rgba(250, 249, 248, 0.45);
  transition: color 0.2s ease;
}

.custom-select-text.has-value {
  color: var(--text-light);
  font-weight: 500;
}

.select-arrow-icon {
  width: 12px;
  height: 8px;
  color: rgba(250, 249, 248, 0.6);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.custom-select-wrapper.open .select-arrow-icon {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

/* Custom Dropdown Menu (Opens directly DOWNWARDS below the field) */
.custom-select-dropdown {
  position: absolute;
  top: 100%;
  bottom: auto;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: #141418;
  border: 1px solid rgba(200, 155, 60, 0.45);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.85);
  z-index: 9999;
  max-height: 260px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 155, 60, 0.4) transparent;
}

.custom-select-wrapper.open .custom-select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
  padding: 13px 18px;
  font-size: 14px;
  color: rgba(250, 249, 248, 0.85);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-option:last-child {
  border-bottom: none;
}

.custom-option:hover,
.custom-option.selected {
  background-color: rgba(200, 155, 60, 0.18);
  color: var(--accent-gold);
  font-weight: 600;
}

.form-submit-wrap {
  grid-column: span 3;
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

/* Footer Bottom Layout */
/* Footer Bottom Ultra-Luxury Layout */
.footer-main-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 50px;
  padding: 50px 0;
  border-top: 1px solid rgba(200, 155, 60, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 38px;
  width: auto;
  align-self: flex-start;
}

.footer-brand-tagline {
  font-size: 14px;
  color: rgba(250, 249, 248, 0.65);
  max-width: 340px;
  line-height: 1.65;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--accent-gold);
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-list a {
  font-size: 14.5px;
  color: rgba(250, 249, 248, 0.7);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.footer-link-list a::before {
  content: '›';
  color: var(--accent-gold);
  font-size: 16px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.footer-link-list a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-link-list a:hover::before {
  transform: translateX(2px);
  opacity: 1;
}

.footer-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(200, 155, 60, 0.4);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
}

.footer-back-to-top svg {
  width: 10px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.footer-back-to-top:hover {
  background: #91181a;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(145, 24, 26, 0.45);
  transform: translateY(-2px);
}

.footer-back-to-top:hover svg {
  transform: translateY(-3px);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 155, 60, 0.35);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: left;
  width: 100%;
  max-width: 320px;
}

.footer-phone {
  text-decoration: none;
}

.footer-phone.primary-phone {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.footer-phone.primary-phone:hover {
  color: var(--accent-gold);
}

.footer-phone.secondary-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-gold);
  transition: opacity 0.3s ease;
}

.footer-phone.secondary-phone:hover {
  opacity: 0.8;
}

/* Footer RERA Disclaimer & Copyright */
.footer-disclaimer-wrap {
  padding-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-disclaimer-text {
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(250, 249, 248, 0.45);
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

.footer-copyright-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(250, 249, 248, 0.5);
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: var(--text-light);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 24px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(100px) scale(0.9);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.4s ease;
}

.toast-notification.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.toast-notification.success {
  border-left: 4px solid var(--accent-green);
}

.toast-notification.error {
  border-left: 4px solid #cc4e4e;
}

.toast-icon {
  font-size: 18px;
}

.toast-message {
  font-size: 14px;
  font-weight: 500;
}

/* Bottom Sticky Middle Action Bar (Apple Glassmorphism) */
.sticky-action-bar {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 14px 40px;
  border-radius: 60px;
  border: 1.5px solid rgba(200, 155, 60, 0.9);
  box-shadow: 0 0 30px rgba(200, 155, 60, 0.4), 0 16px 45px rgba(0, 0, 0, 0.7);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  white-space: nowrap;
}



.sticky-action-bar:hover {
  border-color: rgba(229, 195, 120, 1);
  box-shadow: 0 0 38px rgba(200, 155, 60, 0.6), 0 20px 50px rgba(0, 0, 0, 0.8);
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  padding: 4px 8px;
}

.action-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.action-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  overflow: visible;
}

.icon-gold {
  fill: var(--accent-gold);
}

.icon-whatsapp {
  fill: #25d366;
}

.action-divider {
  display: inline-block;
  height: 26px;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 22px;
}

/* Giant background typography effect (Kanzo footer) */
.footer-bg-text-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  user-select: none;
  pointer-events: none;
}

.footer-bg-text {
  font-family: var(--font-serif);
  font-size: 13.5vw;
  font-weight: 700;
  color: rgba(250, 249, 248, 0.02);
  text-align: center;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* ---------------- MEDIA QUERIES ---------------- */

/* Tablets & Small Laptops (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .master-nav {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
    height: 80px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
  }

.master-nav.scrolled {
    top: 0;
    height: 72px;
    width: 100%;
    border-radius: 0;
  }

.master-nav .nav-container {
    padding: 0 24px;
  }

.section {
    padding: 80px 0;
  }
  
.section-title {
    font-size: 34px;
    line-height: 1.2;
  }
  
.about-grid, .tabs-grid, .testimonials-grid, .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  


.projects-header-wrap {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
  }

.projects-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 8px;
    margin-top: 28px;
    margin-left: -24px;
    margin-right: -24px;
    padding: 10px 24px 24px 24px;
    width: calc(100% + 48px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
  }

.projects-grid.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
  }

.projects-grid::-webkit-scrollbar {
    display: none;
  }

.project-card-link-wrapper {
    display: block;
    flex: 0 0 320px;
    max-width: 320px;
    scroll-snap-align: start;
    box-sizing: border-box;
  }

.project-card-wrap {
    width: 100%;
  }

.brands-grid-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
.about-content, .about-image-frame {
    padding: 0;
  }
  
.hero-title {
    font-size: 56px;
  }
  
.hero-floating-card {
    position: relative;
    top: auto;
    bottom: auto;
    left: 0;
    right: auto;
    margin-top: 30px;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    animation: fadeInUp 1s ease forwards;
  }
  
.footer-main-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
.footer-links-col {
    align-items: flex-start;
  }

.footer-info-col {
    align-items: flex-start;
    text-align: left;
  }
}

/* Mobile Side Drawer Modal & Backdrop (Desktop Hidden) */
.mobile-menu-backdrop,
.mobile-menu-modal {
  display: none;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Devices (max-width: 768px) */
@media screen and (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .master-nav {
    height: 60px;
  }
  
  .nav-links {
    display: none; /* Hide default nav links */
  }
  
  .nav-phone {
    display: none; /* Hide top phone number */
  }
  
  .menu-toggle {
    display: block; /* Show hamburger button */
  }

  /* Larger logo on mobile */
  .logo-wrapper svg {
    height: 52px !important;
    width: auto !important;
  }

  /* Mobile Hero Section Optimization */
  .hero-slider-section {
    height: auto;
    min-height: 100vh;
    padding-top: 62px;
    padding-bottom: 40px;
    overflow: visible;
    align-items: flex-start;
  }

  .hero-container {
    padding-top: 0;
  }

  .hero-content {
    margin-top: 40px;
  }

  .hero-label {
    font-size: 11px;
    margin-bottom: 12px;
    padding: 6px 14px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: 34px !important;
    line-height: 1.22 !important;
    margin-bottom: 16px;
    max-width: 100%;
    text-align: center;
  }

  .hero-desc {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 100%;
    text-align: center;
  }

  .hero-btn-wrap {
    display: none;
  }

  .hero-highlights {
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    max-width: 100%;
    justify-content: space-between;
  }

  .highlight-num {
    font-size: 26px;
  }

  .highlight-label {
    font-size: 9.5px;
  }

  .hero-floating-card {
    position: relative;
    top: auto;
    bottom: auto;
    left: 0;
    right: auto;
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    padding: 18px 20px;
    border-radius: 20px;
    box-sizing: border-box;
    animation: fadeInUp 1s ease forwards;
  }

  .hero-floating-card .card-title {
    font-size: 18px;
  }

  .hero-floating-card .card-desc {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .scroll-indicator {
    display: none;
  }

  .mobile-menu-backdrop {
    display: block;
  }

  /* Mobile side drawer modal */
  .mobile-menu-modal {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 1050;
    padding: 24px 20px;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    border-left: 1px solid var(--border-light);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .mobile-menu-modal.open {
    transform: translateX(0);
  }
  
  .mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
  }

  .mobile-brand-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    letter-spacing: 0.05em;
  }

  .mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-close svg {
    width: 22px;
    height: 22px;
    stroke: var(--text-dark);
  }

  .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 20px 0;
    padding: 0;
  }

  .mobile-nav-links li {
    width: 100%;
  }

  .mobile-nav-links a {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  .mobile-nav-links a::after {
    content: '›';
    font-size: 18px;
    color: var(--accent-green);
    font-weight: 700;
    transition: transform 0.2s ease;
  }

  .mobile-nav-links a:hover {
    color: var(--accent-green);
    padding-left: 4px;
  }

  .mobile-nav-links a:hover::after {
    transform: translateX(3px);
  }

  .mobile-drawer-footer {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border-light);
  }

  .mobile-footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .mobile-footer-btn.btn-call {
    background: var(--bg-secondary);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
  }

  .mobile-footer-btn.btn-enquire {
    background: var(--accent-green);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(184, 35, 38, 0.25);
  }
  
.section-title {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

.section-label {
    font-size: 11px;
    margin-bottom: 6px;
  }

.projects-header-wrap {
    margin-bottom: 16px;
  }

.projects-grid {
    gap: 6px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 10px 16px 20px 16px;
    width: calc(100% + 32px);
  }

#categories {
    display: none !important;
  }

.project-card-link-wrapper {
    flex: 0 0 260px;
    max-width: 260px;
    scroll-snap-align: start;
    box-sizing: border-box;
  }

.project-card-wrap {
    width: 100%;
    border-radius: 20px;
  }
  
.project-card-details {
    padding: 14px;
  }
  
.project-card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
.project-card-loc {
    font-size: 10px;
    margin-bottom: 6px;
  }
  
.project-card-tag {
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 10px;
  }
  
.project-card-specs {
    padding: 8px 12px;
    margin-bottom: 14px;
  }
  
.spec-label {
    font-size: 9px;
  }
  
.spec-val {
    font-size: 12px;
  }
  
.project-card-price {
    font-size: 13px;
  }
  
.project-card-btn {
    font-size: 12px;
    padding: 6px 14px;
  }
  
.project-card-link-wrapper {
    flex: 0 0 78vw;
    max-width: 270px;
  }

.section-title {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

.footer-contact-title {
    font-size: 20px;
    line-height: 1.25;
  }

.footer-form-wrapper {
    padding: 14px 12px;
    border-radius: 16px;
  }

.form-control {
    padding: 9px 12px;
    font-size: 12.5px;
    border-radius: 10px;
  }



.articles-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 10px 0 18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    max-width: unset;
    cursor: grab;
  }

  .articles-grid::-webkit-scrollbar {
    display: none;
  }

  .article-card {
    flex: 0 0 78vw;
    max-width: 300px;
    scroll-snap-align: start;
  }

  .article-card-title {
    font-size: 15px;
  }
  
.footer-contact-title {
    font-size: 24px;
    line-height: 1.25;
  }
  
.footer-form-wrapper {
    padding: 18px 16px;
    margin-bottom: 24px;
    border-radius: 20px;
  }

.callback-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

.form-control {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 12px;
  }

.footer-form-wrapper .btn-premium {
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
  
#contact.section {
    padding: 30px 0 20px 0;
  }
  
.form-group.full-width, .form-submit-wrap {
    grid-column: span 1;
  }
  
.footer-links-col {
    align-items: flex-start;
  }
  
.footer-copyright-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .trusted-section {
    padding: 60px 0;
  }

  .trusted-main-title {
    font-size: 28px;
  }

  .brands-grid-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    gap: 16px;
    -webkit-overflow-scrolling: touch;
  }

  .brand-card {
    min-width: 265px;
    scroll-snap-align: center;
  }
  
  .projects-scroll-inner {
    gap: 16px;
    padding: 12px 20px 16px;
  }
}

@media screen and (max-width: 576px) {
  .sticky-action-bar {
    bottom: 20px;
    padding: 10px 20px;
    border-radius: 50px;
    max-width: 94vw;
  }

  .action-btn {
    font-size: 12px;
    gap: 8px;
    letter-spacing: 0.06em;
  }

  .action-icon {
    width: 17px;
    height: 17px;
  }

  .action-divider {
    height: 20px;
    margin: 0 12px;
  }

  .project-card-wrap {
    width: 100%;
  }
}

/* ==========================================================================
   ENQUIRY POPUP MODAL STYLES
   ========================================================================== */
.enquiry-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.enquiry-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.enquiry-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.96);
  width: 90%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 26px 28px;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.enquiry-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.enquiry-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2f2f2;
  border: 1px solid #e0e0e0;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.enquiry-modal-close:hover {
  background: #e5e5e5;
  color: #000000;
}

.enquiry-modal-header {
  margin-bottom: 20px;
  text-align: center;
}

.enquiry-modal-title {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.enquiry-modal-subtitle {
  font-size: 13.5px;
  color: #666666;
  line-height: 1.45;
}

.enquiry-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-form-group {
  display: flex;
  flex-direction: column;
}

.modal-form-input {
  width: 100%;
  padding: 13px 16px;
  background: #f8f8f8;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  color: #111111;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.modal-form-input::placeholder {
  color: #888888;
}

.modal-form-input:focus {
  background: #ffffff;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(184, 35, 38, 0.1);
}

.modal-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23666666' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.modal-form-select option {
  background: #ffffff;
  color: #111111;
  padding: 10px;
}

.btn-modal-submit {
  width: 100%;
  padding: 14px 20px;
  background: var(--accent-green);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 4px;
}

.btn-modal-submit:hover {
  background: var(--accent-green-hover);
}

@media screen and (max-width: 576px) {
  .enquiry-modal {
    padding: 26px 20px 22px;
    border-radius: 16px;
    width: 92%;
  }
  
  .enquiry-modal-title {
    font-size: 21px;
  }
}

/* ==========================================================================
   Article Modal Styles
   ========================================================================== */
.article-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.article-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.article-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  width: 90%;
  max-width: 680px;
  max-height: 85vh;
  background: #0f0f12;
  border: 1px solid rgba(200, 155, 60, 0.3);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  -webkit-overflow-scrolling: touch;
  color: #faf8f5;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.article-modal::-webkit-scrollbar,
.enquiry-modal::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.article-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.article-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.article-modal-close:hover {
  background: var(--accent-gold);
  color: #000000;
}

.article-modal-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(250, 248, 245, 0.6);
}

.article-modal-dot {
  color: var(--accent-gold);
}

.article-modal-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 20px;
  padding-right: 32px;
}

.article-modal-img-wrap {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.article-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-modal-body p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(250, 248, 245, 0.85);
  margin-bottom: 16px;
}

.article-modal-body p:last-child {
  margin-bottom: 0;
}

/* Tablet Article Modal Responsiveness */
@media screen and (max-width: 1024px) {
  .article-modal {
    width: 90%;
    max-width: 620px;
    max-height: 86vh;
    padding: 28px 24px;
    border-radius: 20px;
  }
  .article-modal-title {
    font-size: 23px;
    padding-right: 36px;
  }
  .article-modal-img-wrap {
    height: 210px;
    border-radius: 14px;
    margin-bottom: 20px;
  }
}

/* Mobile Article Modal Responsiveness */
@media screen and (max-width: 768px) {
  .article-modal {
    width: 92%;
    max-width: 100%;
    max-height: 88vh;
    padding: 24px 18px;
    border-radius: 18px;
  }
  .article-modal-title {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 16px;
    padding-right: 36px;
  }
  .article-modal-img-wrap {
    height: 180px;
    border-radius: 12px;
    margin-bottom: 18px;
  }
  .article-modal-close {
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
  }
  .article-modal-body p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 480px) {
  .article-modal {
    width: 94%;
    padding: 20px 14px;
    border-radius: 16px;
    max-height: 90vh;
  }
  .article-modal-title {
    font-size: 18px;
    padding-right: 32px;
  }
  .article-modal-img-wrap {
    height: 150px;
    margin-bottom: 14px;
  }
  .article-modal-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }
  .article-modal-meta {
    font-size: 11px;
    margin-bottom: 10px;
  }
}

/* Guarantee Hide Floating Widgets on Desktop Screens */
@media screen and (min-width: 769px) {
  .floating-right-widget {
    display: none !important;
  }
}
