/* ========================================
   CSS RESET AND BASE STYLES
   ======================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background-color: #fefcf9;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ========================================
   SOFT PASTEL COLOR PALETTE
   ======================================== */

:root {
  /* Soft Pastel Primary Colors */
  --pastel-lavender: #e8d5f2;
  --pastel-peach: #f9dcc4;
  --pastel-mint: #d4f1e8;
  --pastel-rose: #f9d4e4;
  --pastel-cream: #fef9f3;
  --pastel-sky: #d9e9f7;
  
  /* Soft Accent Colors */
  --soft-coral: #f8c3b9;
  --soft-lilac: #d8bfd8;
  --soft-yellow: #fff4d9;
  --soft-blue: #c8dff5;
  
  /* Gentle Neutrals */
  --gentle-gray: #e8e4df;
  --soft-text: #6b5b5b;
  --soft-dark: #8a7373;
  --soft-white: #fffbf7;
  
  /* Gradients */
  --gradient-dreamy: linear-gradient(135deg, #e8d5f2 0%, #f9dcc4 50%, #d4f1e8 100%);
  --gradient-sunset: linear-gradient(135deg, #f9d4e4 0%, #f8c3b9 100%);
  --gradient-sky: linear-gradient(135deg, #d9e9f7 0%, #e8d5f2 100%);
  
  /* Shadows */
  --soft-shadow: 0 4px 20px rgba(232, 213, 242, 0.3);
  --dreamy-shadow: 0 8px 30px rgba(249, 220, 196, 0.4);
  --gentle-shadow: 0 2px 10px rgba(212, 241, 232, 0.3);
}

/* ========================================
   TYPOGRAPHY - SOFT & DREAMY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.3;
  color: var(--soft-dark);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  font-size: 16px;
  color: var(--soft-text);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ========================================
   CONTAINER AND LAYOUT
   ======================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   HEADER STYLES
   ======================================== */

header {
  background: var(--gradient-dreamy);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: var(--soft-shadow);
}

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

.logo img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--soft-dark);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: var(--pastel-rose);
  color: var(--soft-dark);
  transform: translateY(-2px);
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: var(--gradient-sunset);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--soft-white);
  cursor: pointer;
  box-shadow: var(--dreamy-shadow);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--gradient-dreamy);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 30px rgba(232, 213, 242, 0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pastel-rose);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--soft-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  background: var(--soft-coral);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: var(--soft-dark);
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  background: var(--soft-white);
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: var(--gentle-shadow);
}

.mobile-nav a:hover {
  background: var(--pastel-rose);
  transform: translateX(10px);
}

/* ========================================
   BUTTONS - SOFT & ROUNDED
   ======================================== */

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: var(--soft-shadow);
}

.btn-primary {
  background: var(--gradient-sunset);
  color: var(--soft-dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--dreamy-shadow);
}

.btn-secondary {
  background: var(--pastel-sky);
  color: var(--soft-dark);
}

.btn-secondary:hover {
  background: var(--soft-blue);
  transform: translateY(-3px);
}

.btn-link {
  color: var(--soft-dark);
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid var(--pastel-lavender);
  transition: all 0.3s ease;
}

.btn-link:hover {
  border-bottom-color: var(--pastel-rose);
  transform: translateX(5px);
}

/* ========================================
   HERO SECTION - DREAMY
   ======================================== */

.hero {
  background: var(--gradient-dreamy);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
  box-shadow: var(--dreamy-shadow);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: var(--soft-dark);
  margin-bottom: 24px;
  font-size: 56px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--soft-text);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  padding: 12px 24px;
  background: var(--soft-white);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--soft-dark);
  box-shadow: var(--gentle-shadow);
}

/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
  background: var(--gradient-sky);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
}

.breadcrumb {
  font-size: 14px;
  color: var(--soft-text);
  margin-bottom: 16px;
}

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

.breadcrumb a:hover {
  color: var(--soft-coral);
}

.last-updated {
  font-size: 14px;
  color: var(--soft-text);
  font-style: italic;
}

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

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--soft-text);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ========================================
   SERVICES GRID
   ======================================== */

.services-overview,
.services-detail {
  background: var(--pastel-cream);
  border-radius: 40px;
  padding: 60px 20px;
}

.services-grid,
.articles-grid,
.properties-grid,
.categories-grid,
.features-grid,
.values-grid,
.certifications-grid,
.downloads-grid,
.insights-grid,
.methods-grid,
.faq-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card,
.article-card,
.property-card,
.category-card,
.feature,
.value-card,
.cert-item,
.download-card,
.insight-card,
.method-card,
.faq-item,
.action-card {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 25px;
  box-shadow: var(--soft-shadow);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover,
.article-card:hover,
.property-card:hover,
.category-card:hover,
.feature:hover,
.value-card:hover,
.download-card:hover,
.action-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--dreamy-shadow);
}

.service-card img,
.feature img,
.cert-item img,
.download-card img,
.method-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.service-card h3,
.article-card h3,
.property-card h3,
.category-card h3,
.feature h3,
.value-card h3,
.download-card h3,
.action-card h3 {
  color: var(--soft-dark);
  font-size: 22px;
}

.service-card p,
.article-card p,
.category-card p,
.feature p,
.value-card p,
.download-card p,
.action-card p {
  color: var(--soft-text);
  font-size: 15px;
  line-height: 1.6;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--soft-coral);
  margin-top: auto;
}

/* ========================================
   SERVICE DETAIL CARDS
   ======================================== */

.service-detail-card {
  background: var(--soft-white);
  padding: 40px;
  border-radius: 30px;
  margin-bottom: 32px;
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-icon {
  width: 80px;
  height: 80px;
}

.service-includes {
  background: var(--pastel-cream);
  padding: 24px;
  border-radius: 20px;
  margin: 16px 0;
}

.service-includes h3 {
  margin-bottom: 16px;
  color: var(--soft-dark);
}

.service-includes ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-includes li {
  padding-left: 24px;
  position: relative;
  color: var(--soft-text);
}

.service-includes li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--soft-coral);
  font-weight: bold;
}

/* ========================================
   PROPERTY CARDS
   ======================================== */

.property-image-placeholder {
  width: 100%;
  height: 200px;
  background: var(--gradient-sky);
  border-radius: 20px;
  margin-bottom: 16px;
}

.property-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--pastel-rose);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--soft-dark);
  box-shadow: var(--gentle-shadow);
}

.property-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.property-location {
  color: var(--soft-text);
  font-size: 14px;
}

.property-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--soft-coral);
}

.property-details {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 8px 0;
}

.property-details span {
  padding: 6px 12px;
  background: var(--pastel-mint);
  border-radius: 15px;
  font-size: 13px;
  color: var(--soft-dark);
}

.property-description {
  font-size: 14px;
  color: var(--soft-text);
  line-height: 1.6;
}

/* ========================================
   ARTICLE CARDS
   ======================================== */

.article-category {
  display: inline-block;
  padding: 6px 16px;
  background: var(--pastel-lavender);
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  color: var(--soft-dark);
  margin-bottom: 12px;
}

.article-excerpt {
  color: var(--soft-text);
  font-size: 15px;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--soft-text);
  margin-top: auto;
}

/* ========================================
   FEATURED ARTICLE
   ======================================== */

.featured-article {
  background: var(--soft-white);
  padding: 48px;
  border-radius: 30px;
  box-shadow: var(--dreamy-shadow);
  position: relative;
  margin-bottom: 40px;
}

.featured-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--pastel-rose);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--soft-dark);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */

.why-choose-us {
  background: var(--pastel-mint);
  border-radius: 40px;
  padding: 60px 20px;
}

/* ========================================
   TESTIMONIALS - SOFT & READABLE
   ======================================== */

.testimonials {
  background: var(--gradient-sky);
  border-radius: 40px;
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 25px;
  box-shadow: var(--soft-shadow);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rating {
  color: #ffd700;
  font-size: 20px;
  margin-bottom: 8px;
}

.testimonial-card p {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.7;
}

.customer-name {
  font-weight: 700;
  color: var(--soft-dark);
  margin-top: auto;
}

.customer-detail {
  font-size: 13px;
  color: var(--soft-text);
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badges span {
  padding: 12px 24px;
  background: var(--soft-white);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--soft-dark);
  box-shadow: var(--gentle-shadow);
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
  background: var(--gradient-sunset);
  border-radius: 40px;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--soft-dark);
  margin-bottom: 24px;
}

.cta-content p {
  color: var(--soft-text);
  font-size: 18px;
  margin-bottom: 32px;
}

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

.office-hours {
  margin-top: 20px;
  font-size: 14px;
  color: var(--soft-text);
}

/* ========================================
   COMPANY STORY
   ======================================== */

.text-section {
  margin-bottom: 40px;
}

.text-section h2 {
  color: var(--soft-dark);
  margin-bottom: 24px;
}

.text-section p {
  color: var(--soft-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.text-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.text-section li {
  color: var(--soft-text);
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.text-section li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--soft-coral);
}

.text-section a {
  color: var(--soft-dark);
  font-weight: 600;
  border-bottom: 2px solid var(--pastel-lavender);
}

.text-section a:hover {
  border-bottom-color: var(--pastel-rose);
}

/* ========================================
   MILESTONES
   ======================================== */

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.milestone {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 25px;
  text-align: center;
  box-shadow: var(--soft-shadow);
  flex: 1 1 200px;
  max-width: 250px;
}

.milestone h3 {
  font-size: 32px;
  color: var(--soft-coral);
  margin-bottom: 8px;
}

.milestone p {
  color: var(--soft-text);
  font-size: 14px;
}

/* ========================================
   MISSION & VISION
   ======================================== */

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}

.mission-box,
.vision-box {
  background: var(--soft-white);
  padding: 40px;
  border-radius: 25px;
  box-shadow: var(--soft-shadow);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.mission-box {
  background: var(--pastel-rose);
}

.vision-box {
  background: var(--pastel-sky);
}

/* ========================================
   CONTACT METHODS
   ======================================== */

.method-card {
  text-align: center;
  min-width: 220px;
}

.method-content {
  font-size: 18px;
  font-weight: 700;
  color: var(--soft-dark);
  margin: 8px 0;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--soft-white);
  padding: 48px;
  border-radius: 30px;
  box-shadow: var(--dreamy-shadow);
}

.form-subtitle {
  text-align: center;
  color: var(--soft-text);
  margin-bottom: 32px;
}

.form-note {
  background: var(--pastel-cream);
  padding: 24px;
  border-radius: 20px;
  margin-top: 24px;
}

.form-note p {
  color: var(--soft-text);
  font-size: 14px;
  margin-bottom: 16px;
}

.form-note ul {
  margin-left: 20px;
  margin-top: 12px;
}

.form-note li {
  color: var(--soft-text);
  font-size: 14px;
  margin-bottom: 8px;
}

/* ========================================
   OFFICE INFO
   ======================================== */

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.office-text {
  flex: 1 1 400px;
}

.office-text h3 {
  color: var(--soft-dark);
  margin-bottom: 24px;
}

.office-text p {
  color: var(--soft-text);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ========================================
   FAQ
   ======================================== */

.faq-item {
  background: var(--soft-white);
  padding: 24px;
  min-width: 100%;
  max-width: 100%;
}

.faq-item h3 {
  color: var(--soft-dark);
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--soft-text);
  font-size: 15px;
}

/* ========================================
   MARKET INSIGHTS
   ======================================== */

.insights-grid {
  margin-bottom: 32px;
}

.insight-card {
  text-align: center;
  min-width: 200px;
}

.insight-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--soft-coral);
  margin-top: 8px;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-hero {
  background: var(--gradient-dreamy);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--pastel-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--soft-white);
  margin: 0 auto 24px;
  box-shadow: var(--dreamy-shadow);
}

.steps-grid {
  margin-bottom: 32px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--pastel-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--soft-dark);
  margin: 0 auto 16px;
}

.response-time {
  text-align: center;
  margin-top: 32px;
  color: var(--soft-text);
}

/* ========================================
   URGENT CONTACT
   ======================================== */

.urgent-box {
  background: var(--soft-white);
  padding: 48px;
  border-radius: 30px;
  box-shadow: var(--dreamy-shadow);
  text-align: center;
}

.urgent-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  min-width: 250px;
}

.contact-item img {
  width: 50px;
  height: 50px;
}

.contact-label {
  font-size: 12px;
  color: var(--soft-text);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--soft-dark);
  margin-bottom: 4px;
}

.contact-hours {
  font-size: 12px;
  color: var(--soft-text);
}

.contact-simple {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 25px;
  box-shadow: var(--soft-shadow);
  max-width: 600px;
  margin: 0 auto;
}

.contact-simple p {
  margin-bottom: 16px;
  color: var(--soft-text);
}

.testimonial-single {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
}

/* ========================================
   COOKIE SETTINGS
   ======================================== */

.cookie-settings {
  background: var(--pastel-cream);
  border-radius: 40px;
  padding: 60px 20px;
}

.cookie-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.cookie-category {
  background: var(--soft-white);
  padding: 24px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 400px;
  box-shadow: var(--gentle-shadow);
}

.cookie-category h3 {
  color: var(--soft-dark);
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-category p {
  color: var(--soft-text);
  font-size: 14px;
}

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

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

footer {
  background: var(--gradient-dreamy);
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-radius: 40px 40px 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-section h3,
.footer-section h4 {
  color: var(--soft-dark);
  margin-bottom: 16px;
}

.footer-section p {
  color: var(--soft-text);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: var(--soft-text);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--soft-dark);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid var(--pastel-lavender);
}

.footer-bottom p {
  color: var(--soft-text);
  font-size: 14px;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--soft-white);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(232, 213, 242, 0.5);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: 30px 30px 0 0;
}

.cookie-consent-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner-text {
  flex: 1 1 400px;
  color: var(--soft-text);
  font-size: 14px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept-all {
  background: var(--pastel-rose);
  color: var(--soft-dark);
}

.cookie-accept-all:hover {
  background: var(--soft-coral);
  transform: translateY(-2px);
}

.cookie-reject-all {
  background: var(--gentle-gray);
  color: var(--soft-dark);
}

.cookie-reject-all:hover {
  background: var(--pastel-lavender);
}

.cookie-settings-btn {
  background: var(--pastel-sky);
  color: var(--soft-dark);
}

.cookie-settings-btn:hover {
  background: var(--soft-blue);
}

/* ========================================
   COOKIE MODAL
   ======================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: var(--soft-white);
  padding: 40px;
  border-radius: 30px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--dreamy-shadow);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-close {
  background: var(--pastel-rose);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--soft-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  background: var(--soft-coral);
}

.cookie-preference {
  background: var(--pastel-cream);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.cookie-preference-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-preference h4 {
  color: var(--soft-dark);
  font-size: 16px;
}

.cookie-preference p {
  color: var(--soft-text);
  font-size: 13px;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: var(--gentle-gray);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--pastel-rose);
}

.cookie-toggle:before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--soft-white);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.cookie-toggle.active:before {
  transform: translateX(24px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide main navigation on mobile */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Cards */
  .service-card,
  .article-card,
  .property-card,
  .category-card,
  .feature,
  .value-card,
  .cert-item,
  .download-card,
  .insight-card,
  .method-card,
  .action-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 24px;
  }
  
  /* Hero CTA buttons */
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Trust indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-indicators span {
    width: 100%;
    text-align: center;
  }
  
  /* Testimonials */
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Mission & Vision */
  .mission-box,
  .vision-box {
    flex: 1 1 100%;
    padding: 24px;
  }
  
  /* Featured article */
  .featured-article {
    padding: 32px 24px;
  }
  
  .featured-badge {
    top: 16px;
    right: 16px;
  }
  
  /* Service detail cards */
  .service-detail-card {
    padding: 24px;
  }
  
  /* Form wrapper */
  .form-wrapper {
    padding: 32px 24px;
  }
  
  /* Office details */
  .office-details {
    flex-direction: column;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
    width: 95%;
  }
  
  /* Footer */
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Urgent contact */
  .urgent-box {
    padding: 32px 24px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
  
  /* Steps */
  .step-card {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .article-card,
  .property-card,
  .category-card,
  .feature,
  .value-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 32px);
  }
}

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

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Apply gentle animations */
.hero-content,
.page-hero {
  animation: fadeIn 0.8s ease;
}

.service-card,
.feature,
.testimonial-card {
  animation: fadeIn 0.6s ease;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
  }
}