/* REMAX Kuvars - Premium CSS Dosyası */
/* Modern & Kurumsal Tasarım - 2026 */

:root {
  /* Primary Colors */
  --remax-red: #DC2626;
  --remax-red-dark: #B91C1C;
  --remax-red-light: #FEE2E2;
  --remax-blue: #0F172A;
  --remax-blue-light: #1E293B;
  --remax-blue-accent: #3B82F6;
  
  /* Neutral Colors */
  --remax-page: #FAFBFC;
  --remax-white: #FFFFFF;
  --remax-gray-50: #F8FAFC;
  --remax-gray-100: #F1F5F9;
  --remax-gray-200: #E2E8F0;
  --remax-gray-300: #CBD5E1;
  --remax-gray-400: #94A3B8;
  --remax-gray-500: #64748B;
  --remax-gray-600: #475569;
  --remax-gray-700: #334155;
  --remax-gray-800: #1E293B;
  --remax-gray-900: #0F172A;
  
  /* Accent Colors */
  --gold: #D4A853;
  --gold-light: #F5E6C8;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-premium: 0 32px 64px -12px rgba(0, 0, 0, 0.14);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--remax-gray-700);
  line-height: 1.7;
  background-color: var(--remax-page);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.font-display {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--remax-red) 0%, var(--remax-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   COLOR UTILITIES
   ============================================ */

.bg-remax-red { background-color: var(--remax-red); }
.bg-remax-blue { background-color: var(--remax-blue); }
.bg-remax-page { background-color: var(--remax-page); }
.text-remax-red { color: var(--remax-red); }
.text-remax-blue { color: var(--remax-blue); }
.border-remax-red { border-color: var(--remax-red); }
.border-remax-blue { border-color: var(--remax-blue); }

.bg-remax-gradient {
  background: linear-gradient(135deg, var(--remax-blue) 0%, var(--remax-blue-light) 100%);
}

/* ============================================
   HERO SECTION - PREMIUM
   ============================================ */

.hero-premium {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--remax-blue) 0%, #1a1a2e 50%, var(--remax-blue-light) 100%);
}

.hero-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(212, 168, 83, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.hero-floating-shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--remax-red), transparent);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-floating-shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--remax-blue-accent), transparent);
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}

.hero-floating-shape-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--gold), transparent);
  top: 40%;
  right: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(5deg); }
  50% { transform: translate(0, -50px) rotate(0deg); }
  75% { transform: translate(-30px, -30px) rotate(-5deg); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--remax-red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title-accent {
  position: relative;
  display: inline-block;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, var(--remax-red), var(--gold));
  opacity: 0.4;
  border-radius: 4px;
  transform: skewX(-12deg);
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Hero Search Box */
.hero-search-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-2xl);
  max-width: 500px;
}

.hero-search-box-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--remax-blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-search-box-title i {
  color: var(--remax-red);
}

/* ============================================
   BUTTONS - PREMIUM
   ============================================ */

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--remax-red) 0%, var(--remax-red-dark) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--remax-blue);
  color: white;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.3);
}

.btn-dark:hover {
  background: var(--remax-blue-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.4);
}

.btn-outline-dark {
  background: transparent;
  color: var(--remax-blue);
  border: 2px solid var(--remax-blue);
}

.btn-outline-dark:hover {
  background: var(--remax-blue);
  color: white;
  transform: translateY(-3px);
}

/* Legacy button support */
.btn-remax {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-remax-primary {
  background-color: var(--remax-red);
  color: white;
}

.btn-remax-primary:hover {
  background-color: var(--remax-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-remax-outline {
  border: 2px solid var(--remax-red);
  color: var(--remax-red);
}

.btn-remax-outline:hover {
  background-color: var(--remax-red);
  color: white;
  transform: translateY(-2px);
}

/* ============================================
   STATS SECTION - PREMIUM
   ============================================ */

.stats-section {
  position: relative;
  background: white;
  margin-top: -80px;
  z-index: 20;
}

.stats-container {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-premium);
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .stats-container {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  width: 1px;
  background: var(--remax-gray-200);
}

@media (max-width: 1024px) {
  .stat-item::after {
    display: none;
  }
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--remax-red-light) 0%, white 100%);
  border-radius: 16px;
  color: var(--remax-red);
  font-size: 1.75rem;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--remax-blue);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--remax-gray-500);
  font-weight: 500;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--remax-red-light);
  color: var(--remax-red);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--remax-blue);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.125rem;
  color: var(--remax-gray-500);
  line-height: 1.8;
}

/* ============================================
   PROPERTY CARDS - PREMIUM
   ============================================ */

.property-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.property-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.property-card-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.property-badge {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.property-badge-category {
  background: var(--remax-red);
  color: white;
}

.property-badge-type {
  background: rgba(255, 255, 255, 0.95);
  color: var(--remax-blue);
  backdrop-filter: blur(10px);
}

.property-card-favorite {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--remax-gray-400);
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}

.property-card-favorite:hover {
  background: var(--remax-red);
  color: white;
}

.property-card-content {
  padding: 24px;
}

.property-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--remax-gray-500);
  margin-bottom: 10px;
}

.property-card-location i {
  color: var(--remax-red);
}

.property-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--remax-blue);
  margin-bottom: 16px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-card-features {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--remax-gray-100);
  margin-bottom: 16px;
}

.property-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--remax-gray-600);
}

.property-feature i {
  color: var(--remax-gray-400);
}

.property-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-price {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--remax-red);
}

.property-price-label {
  font-size: 0.75rem;
  color: var(--remax-gray-400);
  font-weight: 400;
}

.property-card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--remax-blue);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.property-card-link:hover {
  color: var(--remax-red);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--remax-red), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--remax-gray-50) 0%, var(--remax-gray-100) 100%);
  border-radius: 20px;
  font-size: 2rem;
  color: var(--remax-red);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--remax-red) 0%, var(--remax-red-dark) 100%);
  color: white;
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--remax-blue);
  margin-bottom: 12px;
}

.feature-description {
  font-size: 0.9375rem;
  color: var(--remax-gray-500);
  line-height: 1.7;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--remax-blue) 0%, #1a1a2e 100%);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 0% 100%, rgba(220, 38, 38, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 10;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 4rem;
  color: var(--remax-gray-100);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content {
  font-size: 1.0625rem;
  color: var(--remax-gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--remax-gray-100);
}

.testimonial-name {
  font-weight: 600;
  color: var(--remax-blue);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--remax-gray-500);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--remax-gray-700);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--remax-gray-200);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--remax-gray-700);
  background: white;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--remax-red);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-input::placeholder {
  color: var(--remax-gray-400);
}

/* ============================================
   CARDS & HOVER EFFECTS
   ============================================ */

.card-hover {
  transition: all var(--transition-base);
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.hover-scale {
  transition: transform var(--transition-slow);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-lift {
  transition: all var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   SWIPER / SLIDER STYLES
   ============================================ */

.swiper-button-next,
.swiper-button-prev {
  color: var(--remax-red) !important;
  background: rgba(255, 255, 255, 0.95);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-fast);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--remax-red);
  color: white !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: white !important;
  opacity: 0.5 !important;
  width: 12px !important;
  height: 12px !important;
}

.swiper-pagination-bullet-active {
  background: var(--remax-red) !important;
  opacity: 1 !important;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */

.navbar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  background-color: white;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.footer-link {
  color: var(--remax-gray-300);
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-link:hover {
  color: white;
  transform: translateX(4px);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.125rem;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--remax-red);
  transform: translateY(-4px);
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-premium {
    min-height: auto;
    padding: 140px 0 180px;
  }
  
  .stats-section {
    margin-top: -60px;
  }
}

@media (min-width: 1024px) {
  .hero-premium {
    min-height: 100vh;
    padding: 160px 0 140px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

/* AOS Animasyon Ayarları */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* ============================================
   GLASSMORPHISM EFFECTS
   ============================================ */

.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   GALLERY STYLES
   ============================================ */

.gallery-container {
  position: relative;
}

.mainSwiper {
  height: 400px;
  margin-bottom: 10px;
}

.mainSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.thumbsSwiper {
  height: 100px;
  box-sizing: border-box;
  padding: 10px 0;
}

.thumbsSwiper .swiper-slide {
  height: 100%;
  opacity: 0.4;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all var(--transition-fast);
  cursor: pointer;
  overflow: hidden;
}

.thumbsSwiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--remax-red);
}

.thumbsSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   DESCRIPTION CONTENT
   ============================================ */

.description-content {
  line-height: 1.8;
}

.description-content p {
  margin-bottom: 1rem;
}

.description-content ul,
.description-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.description-content ul {
  list-style-type: disc;
}

.description-content ol {
  list-style-type: decimal;
}

.description-content li {
  margin-bottom: 0.5rem;
}

.description-content h2,
.description-content h3,
.description-content h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--remax-blue);
}

.description-content a {
  color: var(--remax-red);
  text-decoration: underline;
}

.description-content a:hover {
  color: var(--remax-blue);
}

/* ============================================
   MISC & UTILITIES
   ============================================ */

.bg-pattern {
  background-image: url('../img/pattern.png');
  background-repeat: repeat;
  background-size: 200px;
}

.dropdown-menu {
  display: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.icon-container i {
  display: inline-block !important;
  font-size: 3.5rem !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--remax-gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--remax-gray-300);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--remax-gray-400);
}

/* Selection Color */
::selection {
  background: var(--remax-red);
  color: white;
}

::-moz-selection {
  background: var(--remax-red);
  color: white;
}
