/* ================================
   STARLIT PROPERTIES - VIBRANT ENERGETIC STYLE
   Complete CSS with Mobile Menu & Cookie Banner
   ================================ */

/* CSS Reset & 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.7;
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffffff 0%, #fff5e6 100%);
  overflow-x: hidden;
}

/* Typography - Vibrant Energetic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1B4B6B;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.1);
}

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

h2 {
  font-size: 36px;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37 0%, #f5d975 100%);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

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

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #2a2a2a;
}

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

a:hover {
  color: #D4AF37;
  transform: translateX(3px);
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons - Vibrant & Energetic */
.btn-primary,
.btn-secondary,
.btn-text {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #f5d975 100%);
  color: #1B4B6B;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
  color: #1B4B6B;
}

.btn-primary::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-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-secondary {
  background: transparent;
  color: #1B4B6B;
  border: 3px solid #D4AF37;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #f5d975 100%);
  color: #1B4B6B;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-text {
  background: none;
  padding: 8px 0;
  color: #1B4B6B;
  font-weight: 700;
  border-radius: 0;
  border-bottom: 3px solid #D4AF37;
  text-transform: none;
}

.btn-text:hover {
  color: #D4AF37;
  border-bottom-color: #1B4B6B;
  transform: translateX(5px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: linear-gradient(135deg, #D4AF37 0%, #f5d975 100%);
  color: #1B4B6B;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #1B4B6B 0%, #2d6a94 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #D4AF37;
  color: #1B4B6B;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

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

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

.mobile-nav a {
  color: #F5F5F0;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(212, 175, 55, 0.3);
  border-left-color: #D4AF37;
  transform: translateX(8px);
  color: #D4AF37;
}

/* Header - Vibrant Energy */
header {
  background: linear-gradient(135deg, #1B4B6B 0%, #2d6a94 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(27, 75, 107, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 4px solid #D4AF37;
}

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

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05) rotate(-2deg);
}

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

.main-nav a {
  color: #F5F5F0;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37 0%, #f5d975 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #D4AF37;
  transform: translateY(-2px);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Section - Dynamic & Vibrant */
.hero {
  background: linear-gradient(135deg, #1B4B6B 0%, #2d6a94 50%, #D4AF37 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 217, 117, 0.2) 0%, transparent 70%);
  animation: pulse 5s ease-in-out infinite reverse;
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #F5F5F0;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.8s ease-out;
  background: linear-gradient(135deg, #F5F5F0 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero p {
  color: #F5F5F0;
  font-size: 20px;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeIn 1s ease-out 0.6s both;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
  animation: fadeIn 1s ease-out 0.9s both;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(245, 245, 240, 0.15);
  padding: 24px 32px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(245, 245, 240, 0.25);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  border-color: #D4AF37;
}

.badge strong {
  font-size: 36px;
  color: #D4AF37;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.badge span {
  color: #F5F5F0;
  font-size: 14px;
  font-weight: 600;
}

/* Hero Page */
.hero-page {
  background: linear-gradient(135deg, #1B4B6B 0%, #2d6a94 100%);
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 5px solid #D4AF37;
}

.hero-page h1 {
  color: #F5F5F0;
  font-size: 48px;
  background: linear-gradient(135deg, #F5F5F0 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-page p {
  color: #F5F5F0;
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(245, 245, 240, 0.8);
}

.breadcrumb a {
  color: #D4AF37;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: #f5d975;
}

/* Sections - Energetic Spacing */
.section,
section {
  padding: 80px 20px;
  margin-bottom: 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(135deg, #fff 0%, #fffaf0 100%);
}

.section h2,
section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 18px;
  color: #444;
}

/* Property Grid - Flexbox Layout */
.property-grid,
.services-grid,
.benefits-grid,
.testimonials-grid,
.team-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

/* Property Card - Vibrant Design */
.property-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 380px;
  position: relative;
  border: 3px solid transparent;
}

.property-card:hover {
  transform: translateY(-12px) rotate(1deg);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
  border-color: #D4AF37;
}

.property-image {
  height: 250px;
  background: linear-gradient(135deg, #1B4B6B 0%, #2d6a94 50%, #D4AF37 100%);
  position: relative;
  overflow: hidden;
}

.property-image::before {
  content: '🏠';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  opacity: 0.3;
}

.property-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #D4AF37 0%, #f5d975 100%);
  color: #1B4B6B;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
  z-index: 1;
}

.property-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.property-details h3 {
  font-size: 22px;
  color: #1B4B6B;
  margin-bottom: 8px;
}

.property-price {
  font-size: 28px;
  font-weight: 700;
  color: #D4AF37;
  text-shadow: 1px 1px 2px rgba(212, 175, 55, 0.2);
}

.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.property-features li {
  background: linear-gradient(135deg, #f5f5f0 0%, #fff 100%);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #1B4B6B;
  font-weight: 600;
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.property-features li:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #f5d975 100%);
  transform: scale(1.05);
  border-color: #D4AF37;
}

/* Service Card - High Energy */
.service-card,
.service-detail-card {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.service-card:hover,
.service-detail-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
  border-color: #D4AF37;
  background: linear-gradient(135deg, #fff 0%, #fffef8 100%);
}

.service-card img,
.service-detail-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.3));
  transition: transform 0.3s ease;
}

.service-card:hover img,
.service-detail-card:hover img {
  transform: scale(1.15) rotate(5deg);
}

.service-card h3,
.service-detail-card h3 {
  font-size: 22px;
  color: #1B4B6B;
  margin-bottom: 12px;
}

.service-card p,
.service-detail-card p {
  color: #444;
  line-height: 1.7;
}

.service-price {
  font-weight: 700;
  color: #D4AF37;
  font-size: 18px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #f5f5f0 0%, #fff 100%);
  border-radius: 25px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  margin-top: 8px;
}

.service-benefits {
  text-align: left;
  margin: 20px 0;
}

.service-benefits li {
  padding: 8px 0;
  color: #444;
  position: relative;
  padding-left: 28px;
}

.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 18px;
}

/* Benefit Card */
.benefit-card {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.benefit-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
  border-color: #D4AF37;
}

.benefit-card img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
  transition: transform 0.3s ease;
}

.benefit-card:hover img {
  transform: scale(1.2) rotate(10deg);
}

/* Testimonial Card - Readable with Contrast */
.testimonial-card {
  background: linear-gradient(135deg, #fff 0%, #fffef8 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  border-left: 5px solid #D4AF37;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
  border-left-width: 8px;
}

.stars {
  color: #D4AF37;
  font-size: 20px;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(212, 175, 55, 0.3);
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  padding-top: 16px;
  margin-top: 8px;
}

.testimonial-author strong {
  color: #1B4B6B;
  font-size: 18px;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

.testimonial-author .date {
  color: #999;
  font-size: 13px;
}

/* Stats Banner */
.stats-banner,
.stats-section {
  background: linear-gradient(135deg, #1B4B6B 0%, #2d6a94 100%);
  padding: 60px 20px;
  border-top: 4px solid #D4AF37;
  border-bottom: 4px solid #D4AF37;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.stat,
.stat-card,
.metric-card {
  text-align: center;
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(245, 245, 240, 0.1);
  padding: 32px 24px;
  border-radius: 20px;
  border: 3px solid rgba(212, 175, 55, 0.3);
  transition: all 0.4s ease;
}

.stat:hover,
.stat-card:hover,
.metric-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(245, 245, 240, 0.2);
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.stat strong,
.stat-card strong,
.metric-card strong {
  font-size: 42px;
  color: #D4AF37;
  font-weight: 700;
  display: block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat span,
.stat-card span,
.metric-card span {
  color: #F5F5F0;
  font-size: 16px;
  font-weight: 600;
}

/* Team Member Card */
.team-member {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  text-align: center;
  border: 3px solid transparent;
}

.team-member:hover {
  transform: translateY(-12px) rotate(-1deg);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
  border-color: #D4AF37;
}

.member-photo {
  height: 280px;
  background: linear-gradient(135deg, #1B4B6B 0%, #2d6a94 50%, #D4AF37 100%);
  position: relative;
}

.member-photo::before {
  content: '👤';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  opacity: 0.3;
}

.team-member h3 {
  padding: 20px 20px 0;
  font-size: 22px;
}

.member-role {
  color: #D4AF37;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0 20px;
}

.team-member p {
  padding: 16px 20px 24px;
  color: #444;
  font-size: 14px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 50px;
}

.step {
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, #fff 0%, #fffef8 100%);
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.15);
  border: 3px solid transparent;
  transition: all 0.4s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.step::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #D4AF37;
  font-weight: 700;
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D4AF37 0%, #f5d975 100%);
  color: #1B4B6B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: #444;
}

/* Contact Cards */
.contact-cards,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.contact-card,
.action-card {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  border: 3px solid transparent;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-card:hover,
.action-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
  border-color: #D4AF37;
}

.contact-card img,
.action-card img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
}

.contact-card h3,
.action-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* Form Styles */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
  border: 3px solid rgba(212, 175, 55, 0.3);
}

.form-note {
  background: linear-gradient(135deg, #f5f5f0 0%, #fff 100%);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 32px;
  border-left: 4px solid #D4AF37;
}

.form-note p {
  color: #444;
  margin: 0;
}

.field-group {
  margin-bottom: 24px;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  color: #1B4B6B;
  font-weight: 600;
  font-size: 16px;
}

.input-placeholder,
.textarea-placeholder {
  width: 100%;
  padding: 16px;
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #fff 0%, #fffef8 100%);
}

.input-placeholder {
  height: 50px;
}

.textarea-placeholder {
  height: 150px;
}

.input-placeholder:hover,
.textarea-placeholder:hover {
  border-color: #D4AF37;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form-actions {
  margin-top: 32px;
}

.form-actions button {
  width: 100%;
}

/* Map Placeholder */
.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #1B4B6B 0%, #2d6a94 50%, #D4AF37 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5F5F0;
  font-size: 18px;
  text-align: center;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
  border: 4px solid #D4AF37;
}

.directions-info {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  border-left: 5px solid #D4AF37;
}

.directions-info h3 {
  margin-bottom: 20px;
}

.directions-info p {
  margin-bottom: 12px;
  color: #444;
}

/* CTA Sections */
.cta-section,
.final-cta {
  background: linear-gradient(135deg, #1B4B6B 0%, #2d6a94 100%);
  padding: 80px 20px;
  text-align: center;
  border-top: 4px solid #D4AF37;
  border-bottom: 4px solid #D4AF37;
}

.cta-section h2,
.final-cta h2 {
  color: #F5F5F0;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #F5F5F0 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section p,
.final-cta p {
  color: #F5F5F0;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.section-cta {
  text-align: center;
  margin-top: 50px;
}

.contact-info {
  margin-top: 32px;
}

.contact-info p {
  color: #F5F5F0;
  font-size: 16px;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
  border-left: 6px solid #D4AF37;
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.content-wrapper h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.content-wrapper ul {
  padding-left: 24px;
  margin: 16px 0;
}

.content-wrapper ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: #444;
  padding-left: 8px;
}

.content-wrapper p {
  margin-bottom: 16px;
  color: #444;
  line-height: 1.8;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #1B4B6B 0%, #2d6a94 100%);
  padding: 100px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #D4AF37 0%, #f5d975 100%);
  color: #1B4B6B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 32px;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thank-you-content h1 {
  color: #F5F5F0;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #F5F5F0 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thank-you-content p {
  color: #F5F5F0;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.step-card,
.suggestion-card {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  border: 3px solid transparent;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-card:hover,
.suggestion-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
  border-color: #D4AF37;
}

.suggestion-card img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
}

.rating-summary {
  margin-top: 40px;
}

.overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(245, 245, 240, 0.2);
  padding: 32px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.rating-number {
  font-size: 56px;
  font-weight: 700;
  color: #D4AF37;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.overall-rating .stars {
  font-size: 28px;
}

.overall-rating p {
  color: #F5F5F0;
  margin: 0;
}

/* Mission & Vision Cards */
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 60px;
}

.mission-card {
  background: linear-gradient(135deg, #fff 0%, #fffef8 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  border-left: 6px solid #D4AF37;
  transition: all 0.4s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
  border-left-width: 10px;
}

.values-section {
  margin-top: 60px;
}

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

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.15);
  border: 3px solid transparent;
  transition: all 0.4s ease;
}

.value-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
  border-color: #D4AF37;
}

.value-item img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
}

.value-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 14px;
  color: #444;
}

/* Neighborhoods */
.neighborhoods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.neighborhood-card {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  border: 3px solid transparent;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.neighborhood-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
  border-color: #D4AF37;
}

.neighborhood-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.neighborhood-card p {
  color: #444;
  font-size: 15px;
}

.price-info {
  font-weight: 700;
  color: #D4AF37;
  font-size: 18px;
  margin-top: 8px;
}

/* Investment Opportunities */
.opportunities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.opportunity-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 380px;
  position: relative;
  border: 3px solid transparent;
}

.opportunity-card:hover {
  transform: translateY(-12px) rotate(-1deg);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
  border-color: #D4AF37;
}

.opportunity-image {
  height: 200px;
  background: linear-gradient(135deg, #1B4B6B 0%, #2d6a94 50%, #D4AF37 100%);
  position: relative;
}

.opportunity-image::before {
  content: '💰';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  opacity: 0.3;
}

.opportunity-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #D4AF37 0%, #f5d975 100%);
  color: #1B4B6B;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
  z-index: 1;
}

.opportunity-card h3 {
  padding: 20px 20px 0;
  font-size: 20px;
}

.opportunity-price {
  padding: 0 20px;
  font-size: 26px;
  font-weight: 700;
  color: #D4AF37;
}

.opportunity-metrics {
  padding: 12px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.opportunity-metrics span {
  background: linear-gradient(135deg, #f5f5f0 0%, #fff 100%);
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 600;
  color: #1B4B6B;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.opportunity-type {
  padding: 0 20px 24px;
  color: #666;
  font-size: 14px;
  font-style: italic;
}

/* Types Grid */
.types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.type-card {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  border-left: 6px solid #D4AF37;
  transition: all 0.4s ease;
}

.type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
  border-left-width: 10px;
}

.type-card h3 {
  margin-bottom: 16px;
}

.type-card p {
  margin-bottom: 20px;
  color: #444;
}

.type-card ul {
  padding-left: 20px;
}

.type-card ul li {
  list-style: none;
  padding: 6px 0;
  color: #444;
  position: relative;
  padding-left: 24px;
}

.type-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 20px;
  font-weight: 700;
}

/* Golden Visa Section */
.golden-visa {
  background: linear-gradient(135deg, #f5f5f0 0%, #fff 100%);
}

.benefits-list {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.15);
  margin: 32px 0;
  border-left: 6px solid #D4AF37;
}

.benefits-list h3 {
  margin-bottom: 20px;
}

.benefits-list ul {
  padding-left: 24px;
}

.benefits-list ul li {
  list-style: none;
  padding: 10px 0;
  color: #444;
  position: relative;
  padding-left: 32px;
}

.benefits-list ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 20px;
}

/* Alternative Contact */
.urgent-contact {
  background: rgba(245, 245, 240, 0.2);
  padding: 32px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.urgent-contact p {
  color: #F5F5F0;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Properties Header */
.properties-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.results-count {
  color: #666;
  font-size: 16px;
  font-weight: 600;
}

/* Footer - Vibrant */
footer {
  background: linear-gradient(135deg, #1B4B6B 0%, #0d2638 100%);
  color: #F5F5F0;
  padding: 60px 20px 20px;
  border-top: 5px solid #D4AF37;
}

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

.footer-column {
  flex: 1 1 calc(20% - 40px);
  min-width: 200px;
}

.footer-logo {
  height: 45px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.footer-column h4 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.footer-column ul li a {
  color: #F5F5F0;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-column ul li a:hover {
  color: #D4AF37;
  transform: translateX(5px);
}

.footer-column p {
  color: #F5F5F0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-bottom p {
  color: rgba(245, 245, 240, 0.8);
  font-size: 14px;
  margin: 0;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1B4B6B 0%, #2d6a94 100%);
  padding: 24px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 999;
  border-top: 4px solid #D4AF37;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cookie-content {
  flex: 1;
  min-width: 300px;
}

.cookie-content p {
  color: #F5F5F0;
  margin-bottom: 8px;
  font-size: 15px;
}

.cookie-content a {
  color: #D4AF37;
  text-decoration: underline;
  font-weight: 600;
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, #D4AF37 0%, #f5d975 100%);
  color: #1B4B6B;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.cookie-reject {
  background: transparent;
  color: #F5F5F0;
  border: 2px solid #F5F5F0;
}

.cookie-reject:hover {
  background: rgba(245, 245, 240, 0.1);
  border-color: #D4AF37;
  color: #D4AF37;
}

.cookie-settings {
  background: rgba(245, 245, 240, 0.1);
  color: #F5F5F0;
  border: 2px solid rgba(245, 245, 240, 0.3);
}

.cookie-settings:hover {
  background: rgba(245, 245, 240, 0.2);
  border-color: #D4AF37;
}

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

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

.cookie-modal-content {
  background: #fff;
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
  border: 4px solid #D4AF37;
}

.cookie-modal-content h2 {
  color: #1B4B6B;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f5f5f0 0%, #fff 100%);
  border-radius: 12px;
  border-left: 4px solid #D4AF37;
}

.cookie-category h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #D4AF37;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

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

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: #666;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
  text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  
  .property-card,
  .service-card,
  .opportunity-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .benefit-card,
  .team-member,
  .stat,
  .neighborhood-card {
    flex: 1 1 calc(33.333% - 32px);
  }
}

@media (max-width: 768px) {
  /* Show Mobile Menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide Desktop Navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography Adjustments */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 18px; }
  
  /* Hero Adjustments */
  .hero {
    padding: 80px 20px;
  }
  
  .trust-badges {
    gap: 20px;
  }
  
  .badge {
    flex: 1 1 calc(50% - 20px);
    min-width: 140px;
  }
  
  /* Sections */
  section {
    padding: 60px 20px;
  }
  
  /* Cards - Full Width */
  .property-card,
  .service-card,
  .service-detail-card,
  .testimonial-card,
  .opportunity-card,
  .type-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .benefit-card,
  .team-member,
  .stat,
  .stat-card,
  .metric-card,
  .neighborhood-card,
  .contact-card,
  .action-card,
  .step-card,
  .suggestion-card,
  .value-item {
    flex: 1 1 calc(50% - 32px);
    min-width: 150px;
  }
  
  .mission-card,
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Process Steps */
  .step {
    flex: 1 1 100%;
  }
  
  .step::after {
    display: none;
  }
  
  /* Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  /* Footer */
  footer {
    padding: 40px 20px 20px;
  }
  
  .footer-content {
    gap: 32px;
  }
  
  /* Form */
  .form-wrapper {
    padding: 24px;
  }
  
  /* Map */
  .map-placeholder {
    height: 300px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .badge strong { font-size: 28px; }
  .badge span { font-size: 12px; }
  
  .property-price,
  .opportunity-price {
    font-size: 24px;
  }
  
  .stat strong,
  .stat-card strong,
  .metric-card strong,
  .rating-number {
    font-size: 36px;
  }
  
  .benefit-card,
  .team-member,
  .stat,
  .stat-card,
  .metric-card,
  .neighborhood-card,
  .contact-card,
  .action-card,
  .value-item,
  .step-card,
  .suggestion-card {
    flex: 1 1 100%;
  }
  
  .content-wrapper {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .btn-primary,
  .btn-secondary,
  .hero-cta,
  .cta-section,
  .section-cta {
    display: none !important;
  }
  
  body {
    background: #fff;
  }
  
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
}