/* ===== CSS RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0f172a;
  --secondary: #6d1e36;
  --accent: #1e3a8a;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --success: #10b981;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --dark-glass: rgba(15, 23, 42, 0.9);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--slate-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hidden {
  display: none !important;
}

.fade-in {

}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Left to right animation for partners */
@keyframes marqueeLeftToRight {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(50%);
  }
}


@keyframes marqueeReverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

.animate-marquee-reverse {
  animation: marqueeReverse 30s linear infinite;
}

/* Modal Animations */
.animate-fade-in {
  animation: fadeInModal 0.3s ease-out;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-scale-in {
  animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-in {

}

.fade-in {

}

.slide-in-from-top-5 {
  animation: slideInFromTop 0.3s ease-out;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
}

header.scrolled,
header.not-home {
  background: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 0.5rem;
}

/* Page Spacing for Fixed Header */
.page {
  padding-top: 90px; /* Offset for fixed header */
}

#home-page {
  padding-top: 0; /* Home page handles its own spacing for transparent header */
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Playfair Display', serif;
}

header.scrolled .logo-text,
header.not-home .logo-text {
  color: var(--primary);
}

.logo-text .highlight {
  color: var(--secondary);
}

nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

nav button {
  font-size: 0.875rem;
  font-weight: 500;
  background: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Left to right animation for partners */
@keyframes marqueeLeftToRight {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(50%);
  }
}


@keyframes marqueeReverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

.animate-marquee-reverse {
  animation: marqueeReverse 30s linear infinite;
}

/* Modal Animations */
.animate-fade-in {
  animation: fadeInModal 0.3s ease-out;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-scale-in {
  animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-in {

}

.fade-in {

}

.slide-in-from-top-5 {
  animation: slideInFromTop 0.3s ease-out;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
}

header.scrolled,
header.not-home {
  background: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 0.5rem;
}

/* Page Spacing for Fixed Header */
.page {
  padding-top: 90px; /* Offset for fixed header */
}

#home-page {
  padding-top: 0; /* Home page handles its own spacing for transparent header */
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Playfair Display', serif;
}

header.scrolled .logo-text,
header.not-home .logo-text {
  color: var(--primary);
}

.logo-text .highlight {
  color: var(--secondary);
}

header nav button,
header nav a {
  background: none;
  border: none;
  color: var(--slate-100);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  text-decoration: none;
  display: inline-block;
}

header nav button::after,
header nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}

header nav button:hover::after,
header nav a:hover::after,
header nav button.active::after,
header nav a.active::after {
  width: 100%;
}

nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

nav button, nav a {
  font-size: 0.875rem;
  font-weight: 500;
  background: none;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}

header.scrolled nav button,
header.not-home nav button,
header.scrolled nav a,
header.not-home nav a {
  color: var(--slate-700);
}

nav button:hover,
nav button.active,
nav a:hover,
nav a.active {
  color: var(--secondary);
  font-weight: 700;
}

.cta-button {
  display: none;
  padding: 0.625rem 1.5rem;
  background: var(--secondary);
  color: var(--white);
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.3s;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background: #4a1425;
  transform: scale(1.05);
}

.mobile-menu-toggle {
  background: none;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

header.scrolled .mobile-menu-toggle svg,
header.not-home .mobile-menu-toggle svg {
  color: var(--primary);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--slate-100);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu button {
  padding: 0.75rem 0;
  text-align: left;
  font-weight: 500;
  border-bottom: 1px solid var(--slate-100);
  color: var(--slate-700);
  background: none;
}

.mobile-menu button:last-of-type {
  border-bottom: none;
}

.mobile-menu button:hover,
.mobile-menu button.active {
  color: var(--secondary);
}

.mobile-menu .cta-button {
  display: block;
  margin-top: 1rem;
  width: 100%;
  padding: 0.75rem;
  text-align: center;
  font-weight: 700;
  border-radius: 0.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
  z-index: 10;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 20;
  text-align: center;
  color: var(--white);
  margin-top: 8rem;
}

@media (min-width: 768px) {
  .hero-content {
    margin-top: 4rem;
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .highlight {
  color: var(--secondary);
}

.hero p {
  font-size: 1.125rem;
  color: var(--slate-200);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.search-bar {
  width: 100%;
  max-width: 56rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.25rem;
  padding: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  margin: 0 auto 2rem;
}

.search-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.search-field {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: transparent;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.search-field:hover {
  border-color: var(--slate-200);
}

.search-field svg {
  color: var(--secondary);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.search-field-content {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}

.search-field-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search-field select {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  border: none;
  outline: none;
  width: 100%;
  cursor: pointer;
  margin-top: 0.125rem;
  font-size: 1rem;
}

.search-field select option {
  background: white;
  color: #1e293b;
}

.search-button {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.search-button:hover {
  background: var(--slate-800);
}

.search-button:active {
  transform: scale(0.95);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-cta button {
  padding: 0.875rem 2rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.hero-cta .primary-btn {
  background: var(--secondary);
  color: var(--white);
}

.hero-cta .primary-btn:hover {
  background: #4a1425;
  box-shadow: 0 10px 15px rgba(109, 30, 54, 0.3);
}

.hero-cta .secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-cta .secondary-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== SECTIONS ===== */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--slate-500);
}

.section-badge {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* ===== PROPERTY CARDS ===== */
.property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.property-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.property-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-0.5rem);
}

.property-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.property-card:hover .property-image img {
  transform: scale(1.1);
}

.property-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--success);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 5;
}

.property-price {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  z-index: 5;
}

/* When grouped together */
.property-badges-container {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.property-badges-container .property-badge,
.property-badges-container .property-price {
  position: relative;
  bottom: auto;
  left: auto;
}

.property-info {
  padding: 1.5rem;
}

.property-type {
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.property-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.property-card:hover .property-title {
  color: var(--secondary);
}

.property-location {
  display: flex;
  align-items: center;
  color: var(--slate-500);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.property-location svg {
  margin-right: 0.25rem;
}

.property-features {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
  color: var(--slate-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.property-feature {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.property-button {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem;
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  color: var(--slate-700);
  font-weight: 700;
  background: var(--white);
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
}

.property-button:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== CATEGORY CARDS ===== */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 10rem;
  border-radius: 1rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  transition: all 0.3s;
  cursor: pointer;
}

.category-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  background: var(--white);
}

.category-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--slate-200);
  color: var(--slate-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.category-card:hover .category-icon {
  background: var(--secondary);
  color: var(--white);
}

.category-name {
  font-weight: 700;
  color: var(--slate-800);
  transition: color 0.3s;
}

.category-card:hover .category-name {
  color: var(--secondary);
}

.category-count {
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-top: 0.25rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: var(--white);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--slate-400);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-link:hover {
  background: var(--secondary);
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--slate-400);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--slate-400);
  margin-bottom: 1rem;
}

.contact-item svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.map-link {
  display: block;
  width: 100%;
  height: 10rem;
  background: var(--slate-800);
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}

.map-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.map-link:hover img {
  opacity: 0.75;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s;
}

.map-link:hover .map-badge {
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--slate-500);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.75rem;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

  .search-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card {
    width: 12rem;
    height: 12rem;
  }
}

@media (min-width: 768px) {
  .cta-button {
    display: block;
  }

  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  nav {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .search-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .property-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== BACKGROUND COLORS ===== */
.bg-slate-50 {
  background-color: var(--slate-50);
}

.bg-white {
  background-color: var(--white);
}

.bg-slate-900 {
  background-color: var(--slate-900);
}

.bg-primary {
  background-color: var(--primary);
}

/* ===== ADDITIONAL SECTIONS ===== */
.about-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.stats-badge {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  background: var(--secondary);
  color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.stats-badge p:first-child {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stats-badge p:last-child {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  text-align: center;
  padding: 1rem;
  background: var(--slate-50);
  border-radius: 0.75rem;
}

.stat-card p:first-child {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-card p:last-child {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--slate-100);
}

.feature-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.5rem);
  border-color: var(--secondary);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: var(--slate-50);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--secondary);
  color: var(--white);
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: var(--slate-50);
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  margin-top: 2rem;
  transition: all 0.3s;
  border: 1px solid var(--slate-100);
}

.testimonial-card:hover {
  background: var(--white);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--slate-200);
  width: 3rem;
  height: 3rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-author h4 {
  font-weight: 700;
  color: var(--slate-800);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 500;
  text-transform: uppercase;
}

.testimonial-text {
  color: var(--slate-600);
  font-style: italic;
  line-height: 1.8;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-top: 1.5rem;
  color: #fbbf24;
}

.faq-container {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--slate-50);
}

.faq-question span {
  font-weight: 700;
  color: var(--slate-800);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 10rem;
  padding: 0 1.5rem 1rem;
  opacity: 1;
}

.faq-answer p {
  color: var(--slate-600);
  line-height: 1.8;
}

.contact-section {
  background: var(--primary);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.contact-info {
  padding: 3rem;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.contact-info p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.contact-form-container {
  padding: 3rem;
  background: var(--white);
}

.contact-form-container h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-group textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border-radius: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-button:hover {
  background: var(--slate-800);
}

.gallery-section {
  overflow: hidden;
  position: relative;
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--slate-50);
}

/* Reduce spacing when gallery sections are consecutive */
.gallery-section+.gallery-section {
  padding-top: 2rem;
}

.gallery-title {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.gallery-title .divider {
  width: 6rem;
  height: 0.25rem;
  background: var(--secondary);
  margin: 1rem auto;
  border-radius: 9999px;
}

.gallery-title p {
  font-size: 1.125rem;
  color: var(--slate-500);
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  width: 6rem;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  padding: 0 1rem;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  height: 16rem;
  width: 24rem;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.marquee-item:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s;
}

.marquee-item:hover img {
  transform: scale(1.1);
}

.marquee-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.marquee-item:hover .marquee-overlay {
  opacity: 0.4;
}

.marquee-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: all 0.3s;
}

.marquee-item:hover .marquee-caption {
  opacity: 1;
  transform: translateY(0);
}

.marquee-caption span {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.partners-marquee .marquee-item {
  width: 15rem;
  height: 8rem;
  padding: 1.5rem;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: 1px solid var(--slate-100);
}

.partners-marquee .marquee-item:hover {
  transform: scale(1.05);
}

.partners-marquee .marquee-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Partners marquee moves left to right */


/* ===== STATIC PARTNERS SECTION ===== */
.partners-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.partners-header {
  text-align: center;
  margin-bottom: 4rem;
}

.partners-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--secondary), #d97706);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(109, 30, 54, 0.3);
}

.partners-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 1rem;
}

.partners-divider {
  width: 5rem;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--secondary), #d97706);
  margin: 1.5rem auto;
  border-radius: 9999px;
}

.partners-subtitle {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.8;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.partner-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), #d97706);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card:hover::before {
  transform: scaleX(1);
}

.partner-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(109, 30, 54, 0.3);
  background: rgba(255, 255, 255, 1);
}

.partner-logo-container {
  width: 100%;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: var(--white);
  border-radius: 1rem;
  border: 2px solid var(--slate-100);
  transition: all 0.3s;
}

.partner-card:hover .partner-logo-container {
  border-color: var(--secondary);
  box-shadow: 0 4px 12px rgba(109, 30, 54, 0.15);
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s;
}

.partner-card:hover .partner-logo {
  transform: scale(1.05);
}

.partner-info {
  text-align: center;
}

.partner-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.partner-card:hover .partner-info h4 {
  color: var(--secondary);
}

.partner-info p {
  font-size: 0.875rem;
  color: var(--slate-500);
  font-weight: 500;
}

.partners-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--slate-800));
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
  position: relative;
  overflow: hidden;
}

.partners-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(109, 30, 54, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.partners-cta p {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.partners-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--secondary);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 9999px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(109, 30, 54, 0.4);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.partners-cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d97706, var(--secondary));
  opacity: 0;
  transition: opacity 0.3s;
}

.partners-cta-button:hover::before {
  opacity: 1;
}

.partners-cta-button:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 15px 40px rgba(109, 30, 54, 0.5);
}

.partners-cta-button span {
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partners-header h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .partners-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ===== COMPANY VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4rem 0;
}

.value-card {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--secondary), #d97706);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(109, 30, 54, 0.3);
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--slate-600);
  line-height: 1.8;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
  position: relative;
}

.leadership-header {
  text-align: center;
  margin-bottom: 5rem;
}

.leadership-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--accent), #1e40af);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.leadership-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 1rem;
}

.leadership-divider {
  width: 5rem;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--accent), #1e40af);
  margin: 1.5rem auto;
  border-radius: 9999px;
}

.leadership-subtitle {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.8;
  font-style: italic;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.leader-card {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--slate-100);
}

.leader-card:hover {
  transform: translateY(-0.75rem);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.leader-image-container {
  position: relative;
  width: 100%;
  height: 24rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-100), var(--slate-200));
}

.leader-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.leader-card:hover .leader-image {
  transform: scale(1.1);
}

.leader-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
}

.leader-card:hover .leader-overlay {
  opacity: 1;
}

.leader-social {
  display: flex;
  gap: 1rem;
  transform: translateY(1rem);
  transition: transform 0.4s;
}

.leader-card:hover .leader-social {
  transform: translateY(0);
}

.leader-social-link {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.leader-social-link:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-0.25rem);
}

.leader-info {
  padding: 2.5rem;
}

.leader-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.leader-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.leader-bio {
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.leader-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-100);
}

.leader-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ===== ACHIEVEMENTS ===== */
.achievements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.achievement-card {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--slate-50), var(--white));
  border-radius: 1.5rem;
  border: 2px solid var(--slate-100);
  transition: all 0.3s;
}

.achievement-card:hover {
  border-color: var(--secondary);
  transform: translateY(-0.5rem);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.achievement-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--secondary), #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.achievement-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.achievement-card p {
  color: var(--slate-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Responsive */
@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .leadership-header h2 {
    font-size: 3rem;
  }

  .achievements-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


.project-card {
  background: var(--slate-800);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--slate-700);
  transition: all 0.3s;
}

.project-card:hover {
  border-color: var(--secondary);
}

.project-image {
  position: relative;
  height: 15rem;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.project-card:hover .project-image img {
  opacity: 1;
}

.project-details {
  padding: 2rem;
  color: var(--white);
}

.project-details h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.project-location {
  display: flex;
  align-items: center;
  color: var(--slate-400);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.project-location svg {
  margin-right: 0.25rem;
  color: var(--secondary);
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.project-info-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--slate-700);
}

.project-info-row span:first-child {
  color: var(--slate-400);
}

.project-info-row span:last-child {
  font-weight: 700;
}

.project-info-row .price {
  color: var(--secondary);
}

.project-info-row .rera {
  font-family: monospace;
  font-size: 0.75rem;
  background: var(--slate-700);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.project-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.amenity-tag {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--slate-700);
  color: var(--slate-300);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.project-button {
  width: 100%;
  padding: 0.75rem;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  border-radius: 0.75rem;
  transition: all 0.3s;
}

.project-button:hover {
  background: var(--secondary);
  color: var(--white);
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .about-section {
    flex-direction: row;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-section {
    flex-direction: row;
  }

  .contact-info,
  .contact-form-container {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero */
.contact-hero {
  padding: 2.5rem 0 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--slate-900) 100%);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(109, 30, 54, 0.15) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

.contact-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
}

.contact-badge {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background: rgba(109, 30, 54, 0.2);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.contact-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Contact Cards */
.contact-cards-section {
  padding: 4rem 0;
  background: var(--slate-50);
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 1px solid var(--slate-100);
}

.contact-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary);
}

.contact-card-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--secondary), #d97706);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(109, 30, 54, 0.3);
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.contact-card-label {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 0.75rem;
}

.contact-card-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.contact-card-link:hover {
  color: var(--secondary);
}

.contact-card-address {
  color: var(--slate-700);
  line-height: 1.8;
  margin-top: 0.5rem;
}

.contact-card-time {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-800);
}

/* Contact Form Section */
.contact-form-section {
  padding: 6rem 0;
  background: var(--white);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form-wrapper {
  background: var(--slate-50);
  padding: 3rem;
  border-radius: 1.5rem;
  border: 1px solid var(--slate-100);
}

.contact-form-header {
  margin-bottom: 2.5rem;
}

.contact-form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.contact-form-header p {
  color: var(--slate-600);
  font-size: 1rem;
}

.enhanced-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.enhanced-contact-form .form-group {
  margin-bottom: 0;
}

.enhanced-contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 0.5rem;
}

.enhanced-contact-form input,
.enhanced-contact-form select,
.enhanced-contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  color: var(--slate-800);
}

.enhanced-contact-form input:focus,
.enhanced-contact-form select:focus,
.enhanced-contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(109, 30, 54, 0.1);
}

.enhanced-contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.form-checkbox input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.6;
  cursor: pointer;
}

.enhanced-submit-button {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, var(--secondary), #d97706);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(109, 30, 54, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.enhanced-submit-button:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 15px 40px rgba(109, 30, 54, 0.5);
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--slate-100);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 1.5rem;
}

.contact-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--slate-700);
  font-size: 0.9375rem;
}

.contact-benefits li span:first-child {
  color: var(--secondary);
  flex-shrink: 0;
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--slate-50);
  border-radius: 0.75rem;
  color: var(--slate-700);
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid var(--slate-100);
}

.quick-link:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transform: translateX(0.25rem);
}

.quick-link span:first-child {
  color: inherit;
}

.social-links-contact {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link-contact {
  width: 3rem;
  height: 3rem;
  background: var(--slate-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-600);
  transition: all 0.3s;
  border: 1px solid var(--slate-200);
}

.social-link-contact:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transform: translateY(-0.25rem);
}

/* Map Section */
.map-section {
  padding: 6rem 0;
  background: var(--slate-50);
}

.map-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--slate-800);
}

.map-container {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  overflow: hidden;
}

/* Responsive */
@media (min-width: 640px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .enhanced-contact-form .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-hero h1 {
    font-size: 3.5rem;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-form-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* ===== MODAL STYLES ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease-out;
}

.modal-container {
  background: var(--white);
  width: 100%;
  max-width: 850px;
  max-height: 85vh;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-800);
  z-index: 10;
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
  background: var(--slate-100);
  transform: rotate(90deg);
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .modal-content {
    grid-template-columns: 1fr 1fr;
  }
}

.modal-image {
  height: 300px;
}

@media (min-width: 768px) {
  .modal-image {
    height: 100%;
  }
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .modal-details {
    padding: 2rem;
  }
}

.modal-details h2 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 0.25rem 0 0.5rem;
}

.modal-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-500);
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

.modal-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.modal-stat {
  background: var(--slate-50);
  padding: 0.75rem;
  border-radius: 0.75rem;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate-400);
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-800);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.modal-tags span {
  background: rgba(109, 30, 54, 0.1);
  color: var(--secondary);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 600;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
}

.modal-actions button {
  flex: 1;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.938rem;
  transition: all 0.3s;
}

/* New Compact Details Styles */
.modal-highlight-tag {
  background: #fef3c7;
  color: #92400e;
  padding: 0.2rem 0.5rem;
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 700;
  border: 1px solid #fcd34d;
}

.modal-description-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--slate-600);
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  border-left: 3px solid var(--secondary);
}

.modal-actions .primary-btn {
  background: var(--primary);
  color: var(--white);
}

.modal-actions .primary-btn:hover {
  background: var(--slate-800);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.modal-actions .secondary-btn {
  background: var(--white);
  border: 2px solid var(--slate-100);
  color: var(--slate-700);
}

.modal-actions .secondary-btn:hover {
  background: var(--slate-50);
  border-color: var(--slate-200);
}

/* ===== SCHEDULE VISIT MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
}

.schedule-modal-container {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 42rem;
  max-height: 90vh;
  overflow-y: auto;
  animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.schedule-modal-header {
  position: sticky;
  top: 0;
  background: var(--secondary);
  padding: 1.5rem;
  border-radius: 1rem 1rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.schedule-modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.schedule-modal-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.modal-close-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  flex-shrink: 0;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-close-btn svg {
  color: var(--white);
}

.schedule-modal-form {
  padding: 1.5rem;
}

.schedule-modal-form .form-group {
  margin-bottom: 1.25rem;
}

.schedule-modal-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 0.5rem;
}

.schedule-modal-form .required {
  color: #ef4444;
}

.schedule-modal-form input,
.schedule-modal-form select,
.schedule-modal-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s;
}

.schedule-modal-form input:focus,
.schedule-modal-form select:focus,
.schedule-modal-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(109, 30, 54, 0.1);
}

.schedule-modal-form .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.schedule-modal-form .input-with-icon {
  position: relative;
}

.schedule-modal-form .input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-modal-form .input-with-icon input {
  padding-left: 2.75rem;
}

.schedule-modal-form textarea {
  resize: none;
  font-family: inherit;
}

.schedule-modal-form .submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border-radius: 0.5rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.schedule-modal-form .submit-button:hover {
  background: var(--slate-800);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}

.schedule-modal-form .submit-button:active {
  transform: scale(0.98);
}

.schedule-modal-form .form-note {
  font-size: 0.75rem;
  color: var(--slate-500);
  text-align: center;
  margin-top: 1rem;
}

/* Responsive */
@media (min-width: 768px) {
  .schedule-modal-header h2 {
    font-size: 1.875rem;
  }

  .schedule-modal-form {
    padding: 2rem;
  }

  .schedule-modal-form .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Z-Index and Positioning Utilities for Modals */
.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.z-\[9999\] {
  z-index: 9999;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}


/* ===== VISUAL PROPERTY FILTERING ===== */
.property-card-dimmed {
  opacity: 0.35 !important;
  filter: grayscale(60%);
  pointer-events: none;
  transition: all 0.4s ease;
}

.property-card-dimmed:hover {
  transform: none !important;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1) !important;
}

.property-card-highlighted {
  box-shadow: 0 0 0 3px rgba(109, 30, 54, 0.3), 0 25px 50px rgba(0, 0, 0, 0.15) !important;
  transform: scale(1.02);
  transition: all 0.4s ease;
}

.property-card-highlighted:hover {
  box-shadow: 0 0 0 3px rgba(109, 30, 54, 0.5), 0 30px 60px rgba(0, 0, 0, 0.2) !important;
}

.scroll-mt-20 {
  scroll-margin-top: 5rem;
}

/* ===== BLOG SECTION ===== */
.blog-hero {
  background: var(--slate-50);
  padding: 5rem 0;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.blog-card {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--slate-100);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  backdrop-filter: blur(4px);
}

.blog-card-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 1rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: var(--primary);
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.875rem;
  border-top: 1px solid var(--slate-50);
  padding-top: 1rem;
}

.blog-read-more:hover {
  gap: 0.75rem;
}
/* =========================================
   BLOG MODAL — PROFESSIONAL EDITORIAL DESIGN
   ========================================= */

@keyframes blogModalIn {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.blog-modal-container {
  background: #fff;
  width: 95%;
  max-width: 780px;
  max-height: 88vh;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: auto;
  animation: blogModalIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
}

/* ── Hero image ── */
.blog-modal-hero {
  position: relative;
  width: 100%;
  height: 140px;
  flex-shrink: 0;
  overflow: hidden;
  background: #1e293b;
}

.blog-modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  display: block;
}

/* Gradient from bottom up so text is readable */
.blog-modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 28, 0.92) 0%,
    rgba(10, 15, 28, 0.5)  55%,
    transparent            100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.75rem 1.5rem 0.75rem;
  gap: 0.5rem;
}

.blog-modal-badge {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: var(--secondary, #6d1e36);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 99px;
  width: fit-content;
}

.blog-modal-title {
  font-size: 1.45rem;
  color: #fff;
  line-height: 1.28;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.blog-modal-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 500;
}

.blog-modal-meta svg { vertical-align: middle; }
.blog-modal-dot { opacity: 0.5; font-size: 1.1rem; line-height: 1; }

/* Close button — floating on hero */
.blog-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.45);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.blog-modal-close:hover { background: rgba(0,0,0,0.75); }
.blog-modal-close svg  { width: 16px; height: 16px; }

/* ── Scrollable Article Body ── */
.blog-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.75rem 0;
  display: flex;
  flex-direction: column;
}

/* Article typography */
.blog-article-content {
  flex: 1;
  font-size: 1rem;
  line-height: 1.85;
  color: #3c4861;
}

.blog-article-content p {
  margin: 0 0 1.25rem;
}

.blog-article-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 1.75rem 0 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid #f1f5f9;
}

.blog-article-content ul {
  margin: 0 0 1.25rem;
  padding-left: 1.4rem;
}

.blog-article-content li {
  margin-bottom: 0.45rem;
  color: #475569;
}

.blog-article-content strong { color: #1e293b; }

/* ── Footer buttons ── */
.blog-modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 0 1.5rem;
  border-top: 1px solid #f1f5f9;
  margin-top: 1.5rem;
  position: sticky;
  bottom: 0;
  background: #fff;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .blog-modal-container {
    width: 100%;
    max-height: 100dvh;
    border-radius: 1.25rem 1.25rem 0 0;
    margin-top: auto;
  }
  .blog-modal-hero { height: 200px; }
  .blog-modal-hero-overlay { padding: 1.25rem 1.25rem 1rem; }
  .blog-modal-title { font-size: 1.15rem; }
  .blog-modal-body { padding: 1.5rem 1.25rem 0; }
  .blog-modal-footer { flex-direction: column; }
  .blog-modal-footer button { width: 100%; }
}

/* ===== FOOTER SEO SECTION ===== */
.footer-seo {
  padding: 3rem 0;
  border-top: 1px solid var(--slate-100);
  background: var(--white);
}

.footer-seo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 2rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.footer-seo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.seo-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--slate-50);
  color: var(--slate-600);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 99px;
  border: 1px solid var(--slate-200);
  transition: all 0.3s ease;
  text-decoration: none;
}

.seo-tag:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(109, 30, 54, 0.15);
}

@media (max-width: 768px) {
  .footer-seo {
    padding: 2rem 0;
  }
  .seo-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.reviews-section {
  padding: 80px 0;
  background-color: #fafafb;
  border-top: 1px solid var(--slate-100);
}

.reviews-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-600);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid var(--slate-100);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: var(--secondary);
}

.review-stars {
  color: #fbbf24;
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.review-content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate-600);
  margin-bottom: 2rem;
  font-style: italic;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--slate-50);
  padding-top: 1.5rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-800);
  margin: 0;
}

.review-date {
  font-size: 0.75rem;
  color: var(--slate-400);
}

.reviews-cta {
  text-align: center;
}

.google-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: var(--slate-800);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--slate-200);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.google-btn:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

@media (max-width: 640px) {
  .reviews-section {
    padding: 60px 0;
  }
  .review-card {
    padding: 2rem;
  }
}


/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  background-color: #128c7e;
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  .whatsapp-fab svg {
    width: 28px;
    height: 28px;
  }
}

/* ===== MORE PROPERTIES CARD ===== */
.more-properties-card {
  background: linear-gradient(135deg, var(--secondary) 0%, #a02c4a 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 1rem;
  height: 100%;
  min-height: 400px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(109, 30, 54, 0.2);
}

.more-properties-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(109, 30, 54, 0.3);
}

.more-properties-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.more-properties-card:hover::before {
  opacity: 1;
}

.more-card-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.more-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.more-card-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.more-card-btn {
  background: white;
  color: var(--secondary);
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.more-properties-card:hover .more-card-btn {
  padding: 0.875rem 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  padding: 4rem 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--slate-100);
}

.legal-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 2.5rem 0 1rem;
}

.legal-card h3:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-info-minimal {
  background: var(--slate-50);
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

.contact-info-minimal p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-info-minimal a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 1.5rem;
  }
  
  .legal-card h3 {
    font-size: 1.25rem;
  }
}

.about-hero {
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=2070') center/cover no-repeat !important;
}

/* ===== PROPERTY PAGE COMPONENTS ===== */
.premium-hero {
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--primary);
  overflow: hidden;
  color: var(--white);
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.05);
  transition: transform 10s ease-out;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, var(--primary), transparent);
  z-index: 2;
}

.hero-content-box {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to bottom, #fff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--secondary);
  color: var(--white);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.property-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.spec-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  border: 1px solid var(--slate-100);
  transition: all 0.3s ease;
  text-align: center;
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.spec-icon {
  width: 60px;
  height: 60px;
  background: var(--slate-50);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--secondary);
  font-size: 1.5rem;
}

.property-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--slate-50);
  border-radius: 1rem;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.amenity-item:hover {
  background: var(--white);
  border-color: var(--slate-200);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.amenity-icon {
  color: var(--secondary);
  flex-shrink: 0;
}

.amenity-text h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.amenity-text p {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.sticky-contact-sidebar {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 100px;
  z-index: 10;
}

.sidebar-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sidebar-subtitle {
  color: var(--slate-400);
  margin-bottom: 2.5rem;
}

.input-field {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 1.25rem;
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
  font-family: inherit;
}

.input-field:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary);
  outline: none;
}

.input-field::placeholder {
  color: var(--slate-500);
}

.gallery-section {
  margin-top: 5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.g-large { grid-column: span 8; height: 500px; }
.g-small { grid-column: span 4; height: 240px; }

@media (max-width: 1024px) {
  .g-large, .g-small { grid-column: span 12; height: 350px; }
}

.section-badge-left {
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.highlight-text {
  color: var(--secondary);
}


/* ===== CAREER PAGE STYLES ===== */

.job-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--slate-100);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

.job-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
}

.job-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--slate-500);
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-card p {
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.job-card .primary-btn {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
  justify-content: center;
}

#career-form-section .contact-section {
  padding-top: 2rem;
}

.career-success-msg {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* ===== EVENTS GALLERY PAGE ===== */
.events-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.events-gallery-item {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.events-gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.18);
}

.events-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.events-gallery-item:hover img {
  transform: scale(1.08);
}

.events-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: opacity 0.4s ease;
}

.events-gallery-item:hover .events-gallery-overlay {
  opacity: 1;
}

.events-gallery-info h3 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 0 0 0.4rem 0;
  transform: translateY(16px);
  transition: transform 0.35s ease;
}

.events-gallery-item:hover .events-gallery-info h3 {
  transform: translateY(0);
}

.events-gallery-info p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  margin: 0;
  transform: translateY(16px);
  transition: transform 0.35s ease 0.05s;
}

.events-gallery-item:hover .events-gallery-info p {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .events-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Featured Event Layout */
.event-gallery-grid-fixed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.event-img-card {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16 / 10;
  background: var(--slate-50);
  transition: all 0.4s ease;
}

.event-img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-img-card:hover img {
  transform: scale(1.08);
}

@media (max-width: 1024px) {
  .event-gallery-grid-fixed {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .event-gallery-grid-fixed {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* Pagination Styles */
.pagination-container { display: flex; justify-content: center; align-items: center; gap: 0.5rem; margin-top: 3rem; padding-bottom: 2rem; }
.pagination-btn { width: 3rem; height: 3rem; display: flex; justify-content: center; align-items: center; border-radius: 0.75rem; background: var(--white); border: 1px solid var(--slate-200); color: var(--slate-600); font-weight: 600; cursor: pointer; transition: all 0.3s; }
.pagination-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.pagination-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); box-shadow: 0 10px 20px rgba(10, 25, 47, 0.2); }
.pagination-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Glassmorphic Features Grid */
.features-grid-glass {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.feature-item-glass {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.feature-item-glass:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary);
}

.feature-icon-glass {
  width: 3.5rem;
  height: 3.5rem;
  background: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.feature-item-glass h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.feature-item-glass p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 640px) {
  .features-grid-glass {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

