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

:root {
  /* Color Palette - Premium & Modern */
  --primary-color: #0F172A; /* Deep Slate Navy */
  --secondary-color: #C5A059; /* Elegant Gold */
  --secondary-hover: #B48E46;
  --accent-color: #F8FAFC;
  
  --text-main: #334155;
  --text-light: #64748B;
  --text-dark: #1E293B;
  
  --bg-main: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-cream: #F1F5F9; /* Cool light gray for modern look */
  --bg-gold-light: rgba(197, 160, 89, 0.05);
  
  --whatsapp-color: #25D366;
  --whatsapp-hover: #128C7E;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-gold: 0 10px 30px -10px rgba(197, 160, 89, 0.3);
  
  --container-width: 1280px;
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

ul {
  list-style: none;
}

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

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

/* Utilities */
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.bg-cream { background-color: var(--bg-cream); }
.bg-white { background-color: var(--bg-white); }
.bg-dark { background-color: var(--primary-color); color: var(--bg-white); }
.bg-dark h2, .bg-dark h3 { color: var(--bg-white); }

/* Stats Bar */
.stats-bar {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2118 100%);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  .stat-number { font-size: 2rem; }
}

/* Buttons */
/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.btn::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: 0.5s;
  z-index: -1;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: var(--bg-white);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--whatsapp-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: var(--transition-fast);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: var(--whatsapp-hover);
}

/* Header */
.top-bar {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--bg-white);
  margin-left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar a:hover {
  color: var(--secondary-color);
}

header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition-fast);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

header.scrolled .header-inner {
  height: 65px;
}

header.scrolled .header-logo {
  height: 40px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  gap: 15px;
}

.logo-container {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-container span {
  color: var(--secondary-color);
}

.header-logo {
  height: 55px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

nav ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

nav a {
  font-weight: 500;
  color: var(--primary-color);
  font-size: 0.95rem;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition-fast);
}

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

nav a.active {
  color: var(--secondary-color);
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--primary-color);
}

/* Hero Section - Home */
.hero-home {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-cream);
  overflow: hidden;
}

.hero-home .container {
  display: flex;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 40px;
  text-align: left;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 30px;
}

.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color);
}

.badge i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.hero-image-placeholder {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-color: #E2DBD5;
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center left;
  mask-image: linear-gradient(to right, transparent, black 15%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%);
}

/* Compact Hero for Inner Pages */
.hero-compact {
  padding: 60px 0;
  background-color: var(--bg-cream);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero-compact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-compact-content {
  flex: 1;
}

.hero-compact-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-compact-content p {
  font-size: 1.1rem;
}

.hero-compact-visual {
  flex: 1;
  max-width: 500px;
  height: 250px;
  border-radius: 8px;
  background-color: #E2DBD5;
  background-image: url('https://images.unsplash.com/photo-1519643381401-22c77e60520e?q=80&w=2073&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}

.hero-btns {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Breadcrumbs */
.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary-color);
  font-weight: 500;
}

.breadcrumb span {
  margin: 0 8px;
}

/* Services Grid */
.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--secondary-color);
}

.service-img {
  height: 220px;
  background-color: #E2DBD5;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  font-weight: 600;
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link i {
  transition: var(--transition-fast);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Standards Grid */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.standard-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  border-bottom: 4px solid transparent;
}

.standard-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--secondary-color);
}

.standard-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: block;
}

.standard-card h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.standard-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .standards-grid {
    grid-template-columns: 1fr;
  }
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.process-step {
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -50%;
  width: 100%;
  height: 2px;
  border-top: 2px dashed var(--secondary-color);
  opacity: 0.3;
  z-index: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--secondary-color);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Two Col Layouts (About, Content) */
.two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 70px;
  align-items: start;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-block h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.content-block ul {
  margin-top: 20px;
}

.content-block li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.content-block li i {
  color: var(--secondary-color);
  margin-top: 4px;
}

.image-block {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  background-color: #f0f0f0;
  background-size: cover;
  background-position: center;
}

/* Before / After Section */
.before-after-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.before-after-section .section-title h2 {
  color: var(--bg-white);
}

.before-after-section .section-title h2::after {
  background-color: var(--bg-white);
}

.before-after-section .section-title p {
  color: rgba(255,255,255,0.8);
}

.comparison-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  background-color: var(--bg-white);
  position: relative;
}

.comparison-container::before {
  content: 'ÖNCESİ';
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  z-index: 10;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}

.comparison-container::after {
  content: 'SONRASI';
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.2);
}

.comparison-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}/* Google Reviews Section */
.google-reviews-section {
  padding: 100px 0;
  background-color: #f8f9fa;
  overflow: hidden;
}

.reviews-scroller-wrap {
  width: 100%;
  padding: 40px 0;
  position: relative;
}

.reviews-scroller {
  display: flex;
  gap: 30px;
  animation: scrollReviews 40s linear infinite;
  width: max-content;
}

@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); }
}

.reviews-scroller:hover {
  animation-play-state: paused;
}

.google-review-card {
  background: white;
  width: 380px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  flex-shrink: 0;
}

.gr-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.gr-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.gr-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  font-size: 1.2rem;
}

.gr-avatar.color-1 { background-color: #ea4335; }
.gr-avatar.color-2 { background-color: #4285f4; }
.gr-avatar.color-3 { background-color: #34a853; }
.gr-avatar.color-4 { background-color: #fbbc05; }

.gr-name {
  font-weight: 600;
  color: #202124;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.gr-name i {
  color: #1a73e8;
  font-size: 0.85rem;
}

.gr-date {
  font-size: 0.8rem;
  color: #70757a;
}

.gr-google-icon {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path fill="%23EA4335" d="M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z"/><path fill="%234285F4" d="M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z"/><path fill="%23FBBC05" d="M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z"/><path fill="%2334A853" d="M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z"/><path fill="none" d="M0 0h48v48H0z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.gr-stars {
  color: #fbbc04;
  margin-bottom: 15px;
  font-size: 0.9rem;
  display: flex;
  gap: 2px;
}

.gr-text {
  color: #3c4043;
  line-height: 1.6;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Main Content Text Area (SEO Text) */
.seo-content {
  line-height: 1.8;
  color: var(--text-dark);
}

.seo-content h2 {
  font-size: 2.2rem;
  margin: 45px 0 25px;
  color: var(--primary-color);
  border-left: 5px solid var(--secondary-color);
  padding-left: 20px;
}

.seo-content h3 {
  font-size: 1.6rem;
  margin: 40px 0 20px;
  color: var(--primary-color);
}

.seo-content h4 {
  font-size: 1.2rem;
  margin: 30px 0 15px;
  font-weight: 700;
}

.seo-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.seo-content ul, .seo-content ol {
  margin-bottom: 30px;
  padding-left: 20px;
}

.seo-content li {
  margin-bottom: 12px;
}

.seo-content strong {
  color: var(--primary-color);
}

.seo-content blockquote {
  background: var(--bg-cream);
  border-left: 5px solid var(--secondary-color);
  padding: 30px;
  margin: 40px 0;
  font-style: italic;
  font-size: 1.15rem;
  border-radius: 0 12px 12px 0;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  color: var(--bg-cream);
  z-index: 1;
}

.testimonial-content {
  position: relative;
  z-index: 2;
}

.stars {
  color: #FFC107;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-color);
}

.faq-question i {
  transition: var(--transition-fast);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* CTA Section Bottom */
.cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.cta-section h2 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--bg-cream);
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-top: 5px;
}

.contact-item h4 {
  margin-bottom: 5px;
  font-family: var(--font-body);
}

.contact-form {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

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

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 50px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

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

.service-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--bg-cream);
}

.sidebar-img {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.sidebar-content {
  padding: 25px;
}

.sidebar-content h4 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.sidebar-cta-card {
  background: var(--primary-color);
  color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.sidebar-cta-card h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.sidebar-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.sidebar-features li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-features i {
  color: var(--secondary-color);
}

.blog-img {
  height: 220px;
  background-color: #f0f0f0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--secondary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: #ccc;
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--bg-white);
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo span {
  color: var(--secondary-color);
}

.footer-about {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 460px;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--bg-cream);
}

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

.dropdown li {
  width: 100%;
}

.dropdown a {
  display: block;
  padding: 8px 15px;
  color: var(--text-main);
  font-size: 0.85rem;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.dropdown a::after {
  display: none;
}

.dropdown a:hover {
  background-color: var(--bg-cream);
  color: var(--secondary-color);
  padding-left: 25px;
}

/* Premium Price List Styles */
.price-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2118 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.price-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.price-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.price-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: -30px auto 50px;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}

.price-tab-btn {
    padding: 15px 30px;
    background: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.price-tab-btn.active {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(166, 124, 82, 0.3);
}

.price-grid-container {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    animation: fadeIn 0.5s ease;
}

.price-grid-container.active {
    display: grid;
}

.price-card-premium {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.price-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    border-color: var(--secondary-color);
}

.price-card-header {
    padding: 30px;
    background: var(--bg-cream);
    text-align: center;
    position: relative;
}

.price-card-header i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.price-card-header h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-card-body {
    padding: 30px;
    flex-grow: 1;
}

.price-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.price-feature-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-feature-list li i {
    color: #27ae60;
}

.price-card-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.price-amount span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.price-cta-btn {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.price-cta-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.02);
}

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

.price-info-banner {
    background: var(--bg-gold-light);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid rgba(166, 124, 82, 0.2);
}

.price-info-banner i {
    font-size: 4rem;
    color: var(--secondary-color);
}

.price-info-text h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-info-text p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .price-info-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .price-hero h1 {
        font-size: 2.5rem;
    }
}

/* Hover Effects & Animations */
.service-card, .blog-card {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover, .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.image-block, .hero-compact-visual {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-block:hover, .hero-compact-visual:hover {
  transform: scale(1.03);
}

.process-step {
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-step:hover .step-icon {
  background-color: var(--secondary-color);
  color: var(--bg-white);
}

.step-icon {
  transition: all 0.3s ease;
}

/* Button Effects */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: -1;
  border-radius: 4px;
}

.btn:hover::after {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-home h1 { font-size: 3rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-step:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .header-cta { display: none; }
  .mobile-menu-btn { display: block; }
  
  nav {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: var(--bg-white);
    padding: 40px 20px;
    transition: var(--transition-fast);
    flex-direction: column;
    overflow-y: auto;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-home {
    min-height: auto;
    padding: 120px 0 60px 0;
  }
  
  .hero-home .container {
    flex-direction: column;
  }
  
  .hero-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    text-align: center;
  }
  
  .hero-btns {
    justify-content: center;
  }

  .hero-content .hero-badges {
    justify-content: center;
  }
  
  .hero-image-placeholder {
    position: relative;
    width: calc(100% - 40px);
    margin: 40px 20px 0 20px;
    left: 0;
    right: auto;
    height: 300px;
    mask-image: none;
    -webkit-mask-image: none;
    border-radius: 12px;
    box-sizing: border-box;
  }
  
  .two-col, .hero-compact-inner, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-compact-visual {
    height: 200px;
  }
  
  .process-step::after { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; }

  /* Mobile dropdown */
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: auto;
    padding: 0 0 0 20px;
    display: none;
  }
  .has-dropdown.open .dropdown {
    display: flex;
  }
  .dropdown a { padding: 8px 10px; font-size: 0.9rem; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-sidebar {
    position: static;
  }
}

/* WhatsApp Pulse Animation */
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.floating-whatsapp { animation: whatsapp-pulse 2s infinite; }

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.165,0.84,0.44,1), transform 0.8s cubic-bezier(0.165,0.84,0.44,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient CTA */
.cta-section {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2118 50%, #3E2B1A 100%);
}

/* Card accent line */
.service-card { border-bottom: 3px solid transparent; }
.service-card:hover { border-bottom-color: var(--secondary-color); }
.blog-card { border-bottom: 3px solid transparent; }
.blog-card:hover { border-bottom-color: var(--secondary-color); }

/* FAQ hover */
.faq-item { transition: box-shadow 0.3s ease; }
.faq-item:hover { box-shadow: var(--shadow-md); }

/* Section title underline */
.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Hero gradient overlay */
.hero-compact {
  background: linear-gradient(135deg, #F5F2EE 0%, #EDE8E3 100%);
}

.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

@media (max-width: 576px) {
  .neighborhood-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Premium Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-premium {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  border: 1px solid rgba(0,0,0,0.03);
}

.contact-card-premium:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.contact-card-premium .card-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-gold-light);
  color: var(--secondary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card-premium h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-card-premium p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.card-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-highlight {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  margin-top: 5px;
}

/* Glass Form */
.glass-form-container {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.premium-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.premium-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.premium-form input, 
.premium-form select, 
.premium-form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.premium-form input:focus, 
.premium-form select:focus, 
.premium-form textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px var(--bg-gold-light);
}

.premium-form textarea {
  height: 120px;
  resize: vertical;
}

/* Map Section */
.map-section-premium {
  padding: 0;
  margin-top: 60px;
}

.map-wrapper {
  position: relative;
  height: 450px;
  width: 100%;
}

.map-overlay-card {
  position: absolute;
  top: 40px;
  left: 40px;
  background: var(--bg-white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  max-width: 280px;
}

.map-overlay-card h4 {
  margin-bottom: 10px;
}

.map-overlay-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .map-overlay-card {
    position: static;
    max-width: 100%;
    margin: 20px;
    border-radius: 16px;
  }
  
  .premium-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Blog Post Premium Styles */
.blog-post-wrap {
  padding: 80px 0;
  background: var(--bg-white);
}

.blog-post-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.article-content {
  background: var(--bg-white);
}

.article-body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-main);
}

.article-body h2 {
  font-size: 2.2rem;
  margin: 40px 0 20px;
  color: var(--primary-color);
  line-height: 1.3;
}

.article-body h3 {
  font-size: 1.6rem;
  margin: 35px 0 15px;
  color: var(--primary-color);
}

.article-body h4 {
  font-size: 1.3rem;
  margin: 25px 0 10px;
  color: var(--secondary-color);
}

.article-body p {
  margin-bottom: 25px;
}

.article-body ul, .article-body ol {
  margin-bottom: 30px;
  padding-left: 20px;
}

.article-body li {
  margin-bottom: 12px;
}

.article-body blockquote {
  border-left: 5px solid var(--secondary-color);
  padding: 30px;
  margin: 40px 0;
  background: var(--bg-cream);
  font-style: italic;
  font-size: 1.25rem;
  border-radius: 0 15px 15px 0;
  color: var(--primary-color);
}

.article-body table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
}

.article-body th {
  background: var(--primary-color);
  color: white;
  padding: 15px 20px;
  text-align: left;
}

.article-body td {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.article-body tr:last-child td {
  border-bottom: none;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.blog-sidebar-widget {
  background: var(--bg-cream);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.blog-sidebar-widget h4 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary-color);
  display: inline-block;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.recent-post-item:hover {
  color: var(--secondary-color);
}

.recent-post-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.recent-post-info h5 {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-post-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

@media (max-width: 992px) {
  .blog-post-container {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
  }
}

/* Compact & Semantic Pricing Table Styles */
.pricing-list-wrapper {
  margin-bottom: 50px;
}
.pricing-section-title {
  text-align: center;
  color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 800;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.pricing-table-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-table-header {
  background: var(--bg-cream);
  color: var(--primary-color);
  padding: 12px 18px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 2px solid var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-table-header i {
  color: var(--secondary-color);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.pricing-table thead th {
  background-color: #f8fafc;
  padding: 10px 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}
.pricing-table thead th:last-child {
  text-align: right;
}
.pricing-table tbody tr {
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f1f5f9;
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}
.pricing-table tbody tr:hover {
  background-color: #f8fafc;
}
.pricing-table td, .pricing-table th[scope="row"] {
  padding: 12px 15px;
  vertical-align: middle;
  color: var(--text-main);
  text-align: left;
}
.pricing-table th[scope="row"] {
  font-weight: 600;
  color: var(--primary-color);
  width: 30%;
  background: transparent;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: normal;
  border-bottom: none;
}
.pricing-table td:nth-child(2) {
  width: 40%;
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.4;
}
.pricing-table td:nth-child(3) {
  width: 10%;
  text-align: center;
}
.pricing-table thead th:nth-child(3) {
  text-align: center;
}
.pricing-table td:last-child {
  width: 20%;
  text-align: right;
  font-weight: 700;
  color: var(--primary-color);
}
.price-badge {
  color: var(--secondary-hover);
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
}
.table-note {
  background: #fefce8;
  color: #a16207;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  border-top: 1px solid #fef08a;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 12px 15px;
  }
  .pricing-table td, .pricing-table th[scope="row"] {
    padding: 6px 0;
    width: 100% !important;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .pricing-table td:not(:last-child), .pricing-table th[scope="row"] {
    border-bottom: 1px dashed #e2e8f0;
  }
  .pricing-table td::before, .pricing-table th[scope="row"]::before {
    content: attr(data-label);
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 600;
  }
  .price-badge {
    align-self: flex-start;
  }
}


