/* ===================================
   PRISMATIC BURST - VIBRANT ENERGETIC DESIGN
   CSS Reset & Base Styles
   =================================== */

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

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - VIBRANT & BOLD
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2C5F8D;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2C5F8D 0%, #E67E22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  color: #2C5F8D;
}

h3 {
  font-size: 24px;
  color: #E67E22;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #333;
}

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

a:hover {
  color: #2C5F8D;
  transform: translateY(-2px);
}

ul {
  list-style: none;
}

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 700;
  color: #2C5F8D;
}

/* ===================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   =================================== */

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

/* ===================================
   HEADER & NAVIGATION - ELECTRIC COLORS
   =================================== */

header {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4060 100%);
  box-shadow: 0 4px 20px rgba(44, 95, 141, 0.3);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 0;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(5deg);
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #ffffff;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-menu a:hover::before {
  left: 0;
}

.nav-menu a:hover {
  transform: translateY(0);
  color: #ffffff;
}

/* ===================================
   MOBILE MENU - SLIDE IN ANIMATION
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #E67E22 0%, #d35400 100%);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F8D 0%, #1a4060 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #E67E22;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  background: #d35400;
}

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

.mobile-nav a {
  color: white;
  font-weight: 600;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: #E67E22;
  transform: translateX(10px);
  border-color: #ffffff;
}

/* ===================================
   HERO SECTION - HIGH ENERGY
   =================================== */

.hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #E67E22 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

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

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}

.hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: bounceIn 1s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #ffffff;
  opacity: 0.95;
}

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

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

.trust-indicators span {
  font-weight: 700;
  font-size: 18px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.trust-indicators span:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

/* ===================================
   BUTTONS - BOLD & ENERGETIC
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #E67E22 0%, #d35400 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(230, 126, 34, 0.6);
  color: white;
}

.btn-secondary {
  background: white;
  color: #2C5F8D;
  border-color: #2C5F8D;
  box-shadow: 0 4px 15px rgba(44, 95, 141, 0.2);
}

.btn-secondary:hover {
  background: #2C5F8D;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(44, 95, 141, 0.4);
}

/* ===================================
   SECTIONS - DYNAMIC SPACING
   =================================== */

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

.page-header {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4060 100%);
  padding: 60px 20px 40px;
  margin-bottom: 40px;
  color: white;
}

.breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  opacity: 0.9;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: underline;
}

.page-header h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

/* ===================================
   CARDS - VIBRANT & ELEVATED
   =================================== */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E67E22 0%, #2C5F8D 100%);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: #E67E22;
}

/* ===================================
   SERVICE CARDS - FLEXBOX GRID
   =================================== */

.services-overview {
  padding: 60px 20px;
  background: white;
  margin-bottom: 60px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-left: 5px solid #E67E22;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
  transition: all 0.4s ease;
}

.service-card:hover::after {
  top: -25%;
  right: -25%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(230, 126, 34, 0.2);
  border-left-color: #2C5F8D;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 16px;
}

.service-card .price {
  font-weight: 700;
  font-size: 20px;
  color: #E67E22;
  margin: 16px 0;
}

.service-card a {
  font-weight: 600;
  color: #2C5F8D;
  text-decoration: underline;
}

/* ===================================
   VALUE PROPOSITION - FLEXBOX
   =================================== */

.value-proposition {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4060 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  color: white;
}

.value-proposition h2 {
  text-align: center;
  color: white;
  margin-bottom: 48px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
  border-color: #E67E22;
}

.value-card h3 {
  color: #ffffff;
  margin-bottom: 16px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.95);
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   =================================== */

.testimonials {
  padding: 60px 20px;
  background: white;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.testimonial-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  border-left: 5px solid #E67E22;
  color: #1a1a1a;
}

.testimonial-card p {
  color: #333;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2C5F8D;
  font-style: normal;
  margin-top: 16px;
}

.rating {
  color: #E67E22;
  font-size: 20px;
  margin-top: 8px;
}

.trust-badge {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #2C5F8D;
}

/* ===================================
   PROPERTIES LISTING - FLEXBOX GRID
   =================================== */

.properties-listing {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.filter-section {
  background: white;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.filter-group {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-weight: 600;
  color: #2C5F8D;
  margin-bottom: 8px;
}

.filter-group input[type="checkbox"] {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.filter-group select {
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.filter-group select:focus {
  border-color: #E67E22;
  outline: none;
}

.properties-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.property-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid #E67E22;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(230, 126, 34, 0.2);
}

.property-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #E67E22;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.property-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.property-card .location {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

.property-card .price {
  font-weight: 700;
  font-size: 24px;
  color: #E67E22;
  margin: 12px 0;
}

.property-card .specs {
  color: #888;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ===================================
   FAQ SECTION - FLEXBOX
   =================================== */

.faq-categories {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.category-card {
  background: linear-gradient(135deg, #E67E22 0%, #d35400 100%);
  color: white;
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 200px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.category-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
}

.category-card h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 8px;
}

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

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2C5F8D;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-color: #E67E22;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

/* ===================================
   CONTACT FORMS - FLEXBOX LAYOUT
   =================================== */

.contact-methods {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.method-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #E67E22;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(44, 95, 141, 0.2);
}

.contact-form-section {
  padding: 60px 20px;
  background: white;
  margin-bottom: 60px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-wrapper p {
  margin-bottom: 12px;
}

.form-wrapper strong {
  display: block;
  margin-bottom: 8px;
  color: #2C5F8D;
}

.form-wrapper input[type="checkbox"] {
  margin-right: 8px;
  width: 18px;
  height: 18px;
}

.form-note {
  font-size: 14px;
  color: #666;
  margin-top: 16px;
}

/* ===================================
   CTA SECTIONS - BOLD & VIBRANT
   =================================== */

.cta-banner {
  background: linear-gradient(135deg, #E67E22 0%, #d35400 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

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

.cta-banner h2 {
  color: white;
  margin-bottom: 24px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-section {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4060 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  color: white;
}

.cta-section h2 {
  color: white;
  margin-bottom: 24px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
}

/* ===================================
   LOCATION & CITY INFO - FLEXBOX
   =================================== */

.location-benefits {
  padding: 60px 20px;
  background: white;
  margin-bottom: 60px;
}

.location-benefits h2 {
  text-align: center;
  margin-bottom: 32px;
}

.location-benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.location-benefits li {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4060 100%);
  color: white;
  padding: 16px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.location-benefits li:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.4);
}

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

.district-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #E67E22;
  transition: all 0.3s ease;
}

.district-card:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(230, 126, 34, 0.2);
}

/* ===================================
   TEAM & ABOUT SECTIONS - FLEXBOX
   =================================== */

.team {
  padding: 60px 20px;
  background: white;
  margin-bottom: 60px;
}

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

.team-member {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #2C5F8D;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(44, 95, 141, 0.2);
  border-top-color: #E67E22;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.stats span {
  background: white;
  padding: 20px 32px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 18px;
  color: #2C5F8D;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stats span:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

/* ===================================
   THANK YOU PAGE - CELEBRATION
   =================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #E67E22 100%);
  padding: 100px 20px;
  text-align: center;
  color: white;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: white;
  color: #2C5F8D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.step {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #E67E22;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateX(10px);
  border-left-color: #2C5F8D;
}

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

.suggestion-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(230, 126, 34, 0.2);
}

/* ===================================
   FOOTER - VIBRANT & ORGANIZED
   =================================== */

footer {
  background: linear-gradient(135deg, #1a4060 0%, #0d2436 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: #E67E22;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-section a:hover {
  color: #E67E22;
  transform: translateX(5px);
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER - FIXED BOTTOM
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4060 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

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

.cookie-banner button {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
}

.cookie-accept {
  background: #E67E22;
  color: white;
}

.cookie-accept:hover {
  background: #d35400;
  transform: scale(1.05);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cookie-settings {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-settings:hover {
  background: white;
  color: #2C5F8D;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #E67E22;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  background: #d35400;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #2C5F8D;
}

.cookie-category h3 {
  margin-bottom: 12px;
  color: #2C5F8D;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  cursor: pointer;
}

/* ===================================
   LEGAL CONTENT - READABLE
   =================================== */

.legal-content {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #2C5F8D;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  list-style: disc;
  margin-bottom: 8px;
  color: #333;
}

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

@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Cards and grids */
  .services-grid,
  .values-grid,
  .properties-grid,
  .team-grid,
  .methods-grid {
    flex-direction: column;
  }
  
  .service-card,
  .value-card,
  .property-card,
  .team-member,
  .method-card {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner button {
    width: 100%;
  }
  
  /* Timeline */
  .timeline {
    gap: 16px;
  }
  
  /* Suggestions */
  .suggestions-grid {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .property-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .value-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .team-member {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ===================================
   UTILITY CLASSES - SPACING & ALIGNMENT
   =================================== */

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

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

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

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .hero {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}