/* Dumanet Service - Style CSS v1
   Royal blue #1e40af | Gold #d4a853 | Luxury hospitality */

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: #1e40af;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #d4a853;
}

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1e40af;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: #374151;
}

.lead {
  font-size: 1.2rem;
  color: #4b5563;
  line-height: 1.8;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 7rem 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ============================================
   COLORS & BACKGROUNDS
   ============================================ */
.bg-white { background: #ffffff; }
.bg-light { background: #f8f9fc; }
.bg-blue { background: #1e40af; }
.bg-blue-dark { background: #1e3a8a; }
.bg-gold { background: #d4a853; }

.text-white { color: #ffffff !important; }
.text-gold { color: #d4a853 !important; }
.text-blue { color: #1e40af !important; }
.text-muted { color: #6b7280; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30, 64, 175, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(30, 58, 138, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-img {
  height: 56px;
  width: auto;

}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu a {
  color: #e2e8f0;
  font-family: 'Georgia', serif;
  font-size: 0.92rem;
  font-weight: 400;
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #d4a853;
  background: rgba(212, 168, 83, 0.12);
}

.nav-cta {
  background: #d4a853 !important;
  color: #1e40af !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: #b8922f !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.4) !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #e2e8f0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/images/hero-conciergerie.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.88) 0%,
    rgba(30, 58, 138, 0.92) 50%,
    rgba(15, 30, 80, 0.90) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 860px;
  padding: 2rem 1.5rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 168, 83, 0.2);
  border: 1px solid rgba(212, 168, 83, 0.6);
  color: #d4a853;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  line-height: 1.15;
}

.hero h1 span {
  color: #d4a853;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: #d4a853;
  color: #1e3a8a;
  border-color: #d4a853;
}

.btn-primary:hover {
  background: #b8922f;
  border-color: #b8922f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.7);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-blue {
  background: #1e40af;
  color: #ffffff;
  border-color: #1e40af;
}

.btn-blue:hover {
  background: #1e3a8a;
  border-color: #1e3a8a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.btn-outline-blue {
  background: transparent;
  color: #1e40af;
  border-color: #1e40af;
}

.btn-outline-blue:hover {
  background: #1e40af;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  color: #d4a853;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4a853, #f0c878);
  margin: 1rem auto 1.5rem;
  border-radius: 3px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

.card-body {
  padding: 1.75rem;
}

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1e40af, #3b5fd4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke: #d4a853;
  fill: none;
  stroke-width: 1.5;
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-top: 3px solid #d4a853;
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 45px rgba(30, 64, 175, 0.12);
  border-top-color: #1e40af;
}

/* ============================================
   TRUST BADGES / STATS
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  padding: 4rem 0;
}

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

.stat-item {
  color: #ffffff;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #d4a853;
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: 'Georgia', serif;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}

/* ============================================
   TWO-COLUMN SECTIONS (image + content)
   ============================================ */
.split-section {
  padding: 5rem 0;
}

.split-section .split-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.split-section .split-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.split-content {
  padding: 1rem 0;
}

.split-content .section-label {
  text-align: left;
}

.split-content h2 {
  text-align: left;
  margin-bottom: 1.25rem;
}

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

.feature-list {
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: #374151;
}

.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a853' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}

/* ============================================
   BANNER SECTION (vue-nice.jpg)
   ============================================ */
.banner-section {
  position: relative;
  padding: 6rem 0;
  background-image: url('/images/vue-nice.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.88) 0%,
    rgba(30, 58, 138, 0.90) 100%
  );
}

.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}

.banner-content h2 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.banner-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 2rem;
}

/* ============================================
   CTA SPLIT SECTION (menage-pro.jpg)
   ============================================ */
.cta-split {
  background: #f8f9fc;
  padding: 5rem 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: #f8f9fc;
  padding: 5rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
  border-left: 4px solid #d4a853;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1e40af;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #d4a853;
}

.faq-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  transition: transform 0.3s ease;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: #4b5563;
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: #1e40af;
  padding: 5rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.stars {
  color: #d4a853;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #d4a853, #f0c878);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1e3a8a;
  font-size: 1rem;
}

.author-info {
  font-size: 0.88rem;
}

.author-name {
  font-weight: 700;
  color: #d4a853;
}

.author-location {
  color: rgba(255,255,255,0.65);
}

/* ============================================
   BLOG / ARTICLES
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.13);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  background: rgba(30, 64, 175, 0.1);
  color: #1e40af;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.blog-card h3 a {
  color: #1e40af;
}

.blog-card h3 a:hover {
  color: #d4a853;
}

.blog-meta {
  font-size: 0.82rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

/* ============================================
   BLOG ARTICLE PAGE
   ============================================ */
.article-hero {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  padding: 7rem 0 4rem;
  color: #ffffff;
}

.article-hero h1 {
  color: #ffffff;
  max-width: 800px;
  margin-bottom: 1rem;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.article-meta-bar span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.article-body h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.article-body h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-body p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.article-body ul,
.article-body ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  color: #374151;
  line-height: 1.7;
}

.article-body strong {
  color: #1e40af;
}

.article-body blockquote {
  border-left: 4px solid #d4a853;
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: #f8f9fc;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #4b5563;
}

.article-cta-box {
  background: linear-gradient(135deg, #1e40af, #1e3a8a);
  color: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
}

.article-cta-box h3 {
  color: #d4a853;
  margin-bottom: 0.75rem;
}

.article-cta-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  background: #f8f9fc;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #6b7280;
}

.breadcrumb-list li a {
  color: #1e40af;
}

.breadcrumb-list li::after {
  content: '›';
  color: #9ca3af;
}

.breadcrumb-list li:last-child::after {
  display: none;
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.contact-section {
  padding: 5rem 0;
  background: #f8f9fc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, #1e40af, #3b5fd4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  stroke: #d4a853;
  fill: none;
  stroke-width: 1.5;
}

.contact-detail h4 {
  color: #1e40af;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-detail p {
  color: #4b5563;
  margin: 0;
  font-size: 0.95rem;
}

/* Form Styles */
.contact-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1a1a2e;
  background: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0f1e50;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-img {
  height: 46px;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}

.footer-title {
  color: #d4a853;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4a853;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}

.footer-bottom a:hover {
  color: #d4a853;
}

.footer-client-link {
  color: rgba(255,255,255,0.45) !important;
  font-size: 0.82rem !important;
}

.footer-client-link:hover {
  color: #d4a853 !important;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  padding: 7rem 0 4rem;
  text-align: center;
  color: #ffffff;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SERVICE PAGE SPECIFIC
   ============================================ */
.process-steps {
  counter-reset: steps;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  counter-increment: steps;
}

.step-number {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, #1e40af, #3b5fd4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a853;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Georgia', serif;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid #e5e7eb;
}

.pricing-card.featured {
  border-color: #d4a853;
  transform: scale(1.03);
}

.pricing-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.pricing-card.featured:hover {
  transform: translateY(-5px) scale(1.04);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4a853;
  color: #1e3a8a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 20px;
}

.pricing-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e40af;
  font-family: 'Georgia', serif;
  line-height: 1;
  margin: 1rem 0 0.25rem;
}

.pricing-price span {
  font-size: 1rem;
  color: #6b7280;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-features li::before {
  content: '✓';
  color: #d4a853;
  font-weight: 700;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: #d4a853;
  line-height: 1;
  opacity: 0.4;
  font-family: 'Georgia', serif;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1e3a8a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    z-index: 999;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .grid-2,
  .grid-3,
  .blog-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .split-section .split-image img {
    height: 280px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .article-meta-bar {
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4.5rem 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .site-header, .site-footer, .hero-scroll { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
}
