/* ============================================
   DARKEN CREST - GEOMETRIC STRUCTURED DESIGN
   Luxury Real Estate Agency - Lisboa
   ============================================ */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  color: #1A3A52;
  background-color: #F4F1EA;
  line-height: 1.6;
  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;
}

/* TYPOGRAPHY - GEOMETRIC & STRUCTURED */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A3A52;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

/* CONTAINER & LAYOUT - STRUCTURED GRID */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* HEADER - GEOMETRIC STRUCTURE */
header {
  background-color: #1A3A52;
  border-bottom: 4px solid #C9A961;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(26, 58, 82, 0.15);
}

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

header img {
  height: 50px;
  width: auto;
}

/* MAIN NAVIGATION - ANGULAR DESIGN */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #F4F1EA;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #C9A961;
  border-bottom-color: #C9A961;
}

.cta-button {
  background-color: #C9A961;
  color: #1A3A52;
  padding: 12px 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  border: 2px solid #C9A961;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: all 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #1A3A52;
  color: #C9A961;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #C9A961;
  color: #1A3A52;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  box-shadow: 0 4px 12px rgba(26, 58, 82, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1A3A52;
  color: #C9A961;
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #1A3A52;
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #C9A961;
  border: 2px solid #C9A961;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #C9A961;
  color: #1A3A52;
}

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

.mobile-nav a {
  color: #F4F1EA;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 2px solid rgba(201, 169, 97, 0.3);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C9A961;
  padding-left: 8px;
  border-bottom-color: #C9A961;
}

/* HERO SECTION - GEOMETRIC BLOCKS */
.hero {
  background: linear-gradient(135deg, #1A3A52 0%, #2A4A62 100%);
  color: #F4F1EA;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background-color: rgba(201, 169, 97, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background-color: rgba(201, 169, 97, 0.08);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #F4F1EA;
  font-size: 48px;
  max-width: 800px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.breadcrumb {
  color: #C9A961;
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA BUTTONS - ANGULAR GEOMETRIC */
.cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #C9A961;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  display: inline-block;
}

.cta-primary {
  background-color: #C9A961;
  color: #1A3A52;
}

.cta-primary:hover,
.cta-primary:focus {
  background-color: transparent;
  color: #C9A961;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(201, 169, 97, 0.3);
}

.cta-secondary {
  background-color: transparent;
  color: #F4F1EA;
  border-color: #F4F1EA;
}

.cta-secondary:hover,
.cta-secondary:focus {
  background-color: #F4F1EA;
  color: #1A3A52;
  transform: translateY(-3px);
}

.trust-indicator {
  font-size: 14px;
  color: #C9A961;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stats {
  color: #C9A961;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* VALUE PROPOSITION - STRUCTURED GRID */
.value-proposition {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

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

.benefit-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #F4F1EA;
  padding: 32px;
  border: 3px solid #1A3A52;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background-color: #C9A961;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(26, 58, 82, 0.15);
  border-color: #C9A961;
}

.benefit-card:hover::before {
  width: 80px;
  height: 80px;
}

.benefit-card h3 {
  color: #1A3A52;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  color: #2A4A62;
  line-height: 1.8;
}

/* SERVICES OVERVIEW - GEOMETRIC LAYOUT */
.services-overview {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F4F1EA 0%, #FFFFFF 100%);
}

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

.services-overview > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #2A4A62;
}

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

.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-left: 6px solid #C9A961;
  box-shadow: 4px 4px 0 #1A3A52;
  transition: all 0.3s ease;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 40px;
  border-color: transparent transparent #C9A961 transparent;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 #1A3A52;
}

.service-card:hover::after {
  border-width: 0 0 60px 60px;
}

.service-card h3 {
  color: #1A3A52;
  margin-bottom: 16px;
}

.service-card p {
  color: #2A4A62;
  margin-bottom: 0;
}

.btn-link {
  display: inline-block;
  color: #C9A961;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border: 2px solid #C9A961;
  margin-top: 32px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: all 0.3s ease;
}

.btn-link:hover,
.btn-link:focus {
  background-color: #C9A961;
  color: #1A3A52;
  transform: translateX(4px);
}

.services-overview .btn-link {
  display: block;
  text-align: center;
  max-width: 300px;
  margin: 40px auto 0;
}

/* TESTIMONIALS - STRUCTURED CARDS */
.testimonials {
  padding: 60px 20px;
  background-color: #1A3A52;
  color: #F4F1EA;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  background-color: #F4F1EA;
  color: #1A3A52;
  padding: 32px;
  border-top: 6px solid #C9A961;
  border-bottom: 6px solid #C9A961;
  position: relative;
  clip-path: polygon(0 12px, 12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #C9A961;
  font-family: Georgia, serif;
  line-height: 1;
}

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

.testimonial-card .author {
  color: #2A4A62;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  text-align: right;
}

/* CTA BANNER - GEOMETRIC EMPHASIS */
.cta-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, #C9A961 0%, #B89951 100%);
  color: #1A3A52;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(26, 58, 82, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(15deg);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(26, 58, 82, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #1A3A52;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .cta-primary {
  background-color: #1A3A52;
  color: #F4F1EA;
  border-color: #1A3A52;
}

.cta-banner .cta-primary:hover {
  background-color: transparent;
  color: #1A3A52;
  border-color: #1A3A52;
}

.contact-info {
  font-size: 14px;
  margin-top: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* STORY SECTION */
.story {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.story h2 {
  margin-bottom: 32px;
}

.story p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 24px;
  max-width: 900px;
}

/* MISSION & VALUES - ANGULAR CARDS */
.mission-values {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F4F1EA 0%, #FFFFFF 100%);
}

.mission-card {
  background-color: #1A3A52;
  color: #F4F1EA;
  padding: 40px;
  margin-bottom: 40px;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  border: 4px solid #C9A961;
}

.mission-card h3 {
  color: #C9A961;
  margin-bottom: 16px;
}

.mission-card p {
  font-size: 18px;
  line-height: 1.8;
}

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.values-grid h3 {
  margin-bottom: 32px;
}

.value-item {
  background-color: #FFFFFF;
  padding: 24px;
  border-left: 6px solid #C9A961;
  box-shadow: 3px 3px 0 #1A3A52;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 #1A3A52;
}

.value-item h4 {
  color: #1A3A52;
  margin-bottom: 8px;
}

.value-item p {
  color: #2A4A62;
  margin-bottom: 0;
}

/* EXPERTISE SECTION */
.expertise {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

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

.expertise-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #F4F1EA;
  padding: 32px;
  border: 3px solid #1A3A52;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: all 0.3s ease;
  text-align: center;
}

.expertise-card:hover {
  border-color: #C9A961;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(26, 58, 82, 0.15);
}

.expertise-card h3 {
  color: #1A3A52;
  margin-bottom: 16px;
}

.expertise-card p {
  color: #2A4A62;
}

/* SERVICES DETAILED */
.services-detailed {
  padding: 60px 20px;
}

.service-block {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border-left: 8px solid #C9A961;
  box-shadow: 4px 4px 0 #1A3A52;
  position: relative;
}

.service-block::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 60px 60px 0;
  border-color: transparent #C9A961 transparent transparent;
}

.service-block h2 {
  margin-bottom: 8px;
}

.tagline {
  color: #C9A961;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.price {
  color: #1A3A52;
  font-weight: 700;
  font-size: 24px;
  margin: 24px 0;
  padding: 12px 20px;
  background-color: #F4F1EA;
  display: inline-block;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.service-block ul {
  list-style: none;
  margin: 24px 0;
}

.service-block li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid #F4F1EA;
}

.service-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #C9A961;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* FEATURED PROPERTIES */
.featured-properties {
  padding: 60px 20px;
  background-color: #F4F1EA;
}

.featured-properties h2 {
  text-align: center;
  margin-bottom: 16px;
}

.featured-properties > .container > p {
  text-align: center;
  margin-bottom: 48px;
  font-size: 18px;
  color: #2A4A62;
}

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

.property-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 0;
  overflow: hidden;
  border: 4px solid #1A3A52;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transition: all 0.3s ease;
  position: relative;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(26, 58, 82, 0.2);
  border-color: #C9A961;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #C9A961;
  color: #1A3A52;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

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

.location {
  padding: 0 24px;
  color: #C9A961;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.specs {
  padding: 0 24px;
  color: #2A4A62;
  font-size: 14px;
}

.property-card .price {
  margin: 16px 24px 24px;
  font-size: 28px;
  padding: 12px 20px;
}

/* LOCATIONS */
.locations {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

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

.location-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #1A3A52;
  color: #F4F1EA;
  padding: 32px;
  text-align: center;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  border: 3px solid #C9A961;
  transition: all 0.3s ease;
}

.location-card:hover {
  background-color: #C9A961;
  color: #1A3A52;
  transform: scale(1.03);
}

.location-card h3 {
  color: inherit;
  margin-bottom: 12px;
}

.location-card p {
  margin-bottom: 0;
}

/* INVESTMENT STRATEGIES */
.investment-strategies {
  padding: 60px 20px;
  background-color: #F4F1EA;
}

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

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

.strategy-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-top: 6px solid #C9A961;
  box-shadow: 4px 4px 0 #1A3A52;
  transition: all 0.3s ease;
}

.strategy-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 #1A3A52;
}

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

.roi {
  color: #C9A961;
  font-weight: 700;
  font-size: 18px;
  margin-top: 16px;
  padding: 8px 16px;
  background-color: #F4F1EA;
  display: inline-block;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

/* GOLDEN VISA */
.golden-visa {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A3A52 0%, #2A4A62 100%);
  color: #F4F1EA;
}

.golden-visa h2 {
  color: #F4F1EA;
  text-align: center;
  margin-bottom: 16px;
}

.subtitle {
  text-align: center;
  font-size: 18px;
  margin-bottom: 48px;
  color: #C9A961;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: space-between;
}

.benefit-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background-color: rgba(244, 241, 234, 0.1);
  padding: 24px;
  border: 2px solid #C9A961;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefit-item::before {
  content: '▸';
  color: #C9A961;
  font-size: 24px;
  font-weight: 700;
}

.benefit-item h3 {
  color: #F4F1EA;
  font-size: 16px;
  margin-bottom: 0;
}

.requirement {
  text-align: center;
  font-weight: 700;
  color: #C9A961;
  margin: 32px 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.golden-visa .btn-link {
  display: block;
  max-width: 400px;
  margin: 32px auto 0;
  text-align: center;
  background-color: #C9A961;
  color: #1A3A52;
  border-color: #C9A961;
}

.golden-visa .btn-link:hover {
  background-color: transparent;
  color: #C9A961;
}

/* CASE STUDIES */
.case-studies {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.cases-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.case-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  background-color: #F4F1EA;
  padding: 32px;
  border: 4px solid #1A3A52;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: all 0.3s ease;
}

.case-card:hover {
  border-color: #C9A961;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(26, 58, 82, 0.15);
}

.case-card h3 {
  color: #1A3A52;
  margin-bottom: 16px;
}

.case-card p {
  color: #2A4A62;
  margin-bottom: 12px;
}

/* CONTACT SECTIONS */
.contact-methods {
  padding: 60px 20px;
  background-color: #F4F1EA;
}

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

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

.method-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 400px;
  background-color: #FFFFFF;
  padding: 40px;
  text-align: center;
  border: 4px solid #1A3A52;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: #C9A961;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(26, 58, 82, 0.15);
}

.method-card h3 {
  color: #1A3A52;
  margin-bottom: 16px;
}

.method-card p {
  color: #2A4A62;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > .container > p {
  text-align: center;
  margin-bottom: 48px;
  font-size: 18px;
  color: #2A4A62;
}

.form-note {
  max-width: 700px;
  margin: 0 auto;
  background-color: #F4F1EA;
  padding: 40px;
  border-left: 6px solid #C9A961;
  box-shadow: 4px 4px 0 #1A3A52;
}

.form-note p {
  color: #1A3A52;
  font-weight: 600;
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
}

.form-note p::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C9A961;
}

.form-note a {
  color: #C9A961;
  text-decoration: underline;
}

.form-note .btn-link {
  margin-top: 32px;
  display: block;
  text-align: center;
}

/* OFFICE LOCATION */
.office-location {
  padding: 60px 20px;
  background-color: #F4F1EA;
  text-align: center;
}

.office-location h2 {
  margin-bottom: 32px;
}

.address {
  font-size: 20px;
  font-weight: 700;
  color: #1A3A52;
  margin-bottom: 24px;
}

.office-location p {
  color: #2A4A62;
  font-size: 16px;
}

/* BUSINESS HOURS */
.business-hours {
  padding: 60px 20px;
  background-color: #1A3A52;
  color: #F4F1EA;
  text-align: center;
}

.business-hours h2 {
  color: #F4F1EA;
  margin-bottom: 32px;
}

.business-hours p {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #1A3A52;
  border-bottom: 3px solid #C9A961;
  padding-bottom: 12px;
}

.content-wrapper ul {
  list-style: none;
  margin: 24px 0;
}

.content-wrapper li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid #F4F1EA;
}

.content-wrapper li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #C9A961;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.content-wrapper strong {
  color: #1A3A52;
  font-weight: 700;
}

/* THANK YOU PAGE */
.hero.thank-you {
  text-align: center;
}

.checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  background-color: #C9A961;
  color: #1A3A52;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  font-weight: 700;
}

.confirmation-details {
  padding: 60px 20px;
  background-color: #F4F1EA;
}

.confirmation-message {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #C9A961;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.confirmation-details ul {
  list-style: none;
  max-width: 600px;
  margin: 32px auto 0;
}

.confirmation-details li {
  padding: 16px 0 16px 40px;
  position: relative;
  font-size: 16px;
  color: #2A4A62;
  border-bottom: 2px solid #FFFFFF;
}

.confirmation-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: #C9A961;
  color: #1A3A52;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* NEXT ACTIONS */
.next-actions {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.action-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  background-color: #F4F1EA;
  padding: 32px;
  text-align: center;
  border: 3px solid #1A3A52;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: all 0.3s ease;
}

.action-card:hover {
  border-color: #C9A961;
  transform: translateY(-5px);
}

.action-card h3 {
  margin-bottom: 24px;
}

.action-card .btn-link {
  margin-top: 0;
}

/* ALTERNATIVE CONTACT */
.alternative-contact {
  padding: 60px 20px;
  background-color: #1A3A52;
  color: #F4F1EA;
  text-align: center;
}

.alternative-contact h2 {
  color: #F4F1EA;
  margin-bottom: 24px;
}

.alternative-contact p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* FOOTER - STRUCTURED LAYOUT */
footer {
  background-color: #1A3A52;
  color: #F4F1EA;
  padding: 60px 20px 24px;
  border-top: 6px solid #C9A961;
}

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

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

.footer-section img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #C9A961;
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-section a {
  display: block;
  font-size: 14px;
  padding: 8px 0;
  color: #F4F1EA;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
}

.footer-section a:hover {
  color: #C9A961;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #C9A961;
  padding-top: 24px;
  border-top: 2px solid rgba(201, 169, 97, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A3A52;
  color: #F4F1EA;
  padding: 24px;
  z-index: 1500;
  border-top: 4px solid #C9A961;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  flex: 1 1 400px;
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #C9A961;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  font-family: 'Open Sans', sans-serif;
}

.accept-all {
  background-color: #C9A961;
  color: #1A3A52;
}

.accept-all:hover {
  background-color: transparent;
  color: #C9A961;
}

.reject-all,
.cookie-settings {
  background-color: transparent;
  color: #F4F1EA;
  border-color: #F4F1EA;
}

.reject-all:hover,
.cookie-settings:hover {
  background-color: #F4F1EA;
  color: #1A3A52;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 58, 82, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background-color: #F4F1EA;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  border: 4px solid #C9A961;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  color: #1A3A52;
  border: 2px solid #1A3A52;
  padding: 8px 16px;
  font-size: 20px;
  cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: #1A3A52;
  color: #C9A961;
}

.modal-content h3 {
  color: #1A3A52;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #FFFFFF;
  border-left: 4px solid #C9A961;
}

.cookie-category h4 {
  margin-bottom: 8px;
  color: #1A3A52;
}

.cookie-category p {
  font-size: 14px;
  color: #2A4A62;
  margin-bottom: 12px;
}

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

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

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

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

.modal-buttons button {
  flex: 1 1 calc(50% - 12px);
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #1A3A52;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  font-family: 'Open Sans', sans-serif;
}

.save-preferences {
  background-color: #C9A961;
  color: #1A3A52;
  border-color: #C9A961;
}

.save-preferences:hover {
  background-color: transparent;
  color: #C9A961;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header mobile */
  header .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
  }
  
  .main-nav {
    display: none;
  }
  
  header .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero mobile */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  /* CTA buttons mobile */
  .cta-group {
    flex-direction: column;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Grid layouts mobile */
  .benefits-grid,
  .services-grid,
  .properties-grid,
  .locations-grid,
  .strategies-grid,
  .expertise-grid,
  .methods-grid,
  .cases-grid,
  .actions-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .property-card,
  .location-card,
  .strategy-card,
  .expertise-card,
  .method-card,
  .case-card,
  .action-card {
    flex: 1 1 100%;
  }
  
  /* Testimonials mobile */
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Footer mobile */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner mobile */
  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Modal mobile */
  .modal-content {
    padding: 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons button {
    flex: 1 1 100%;
  }
  
  /* Service block mobile */
  .service-block {
    padding: 24px;
  }
  
  .price {
    font-size: 20px;
  }
  
  /* Values grid mobile */
  .values-grid {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 32px;
  }
  
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .benefit-card,
  .service-card,
  .strategy-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .property-card,
  .expertise-card {
    flex: 1 1 calc(50% - 32px);
  }
}

/* PRINT STYLES */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cta-banner,
  footer,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 3px solid #C9A961;
  outline-offset: 2px;
}

/* SMOOTH SCROLLING */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  .benefit-card,
  .service-card,
  .property-card {
    border-width: 4px;
  }
}

/* SELECTION STYLING */
::selection {
  background-color: #C9A961;
  color: #1A3A52;
}

::-moz-selection {
  background-color: #C9A961;
  color: #1A3A52;
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: #F4F1EA;
}

::-webkit-scrollbar-thumb {
  background-color: #C9A961;
  border: 2px solid #F4F1EA;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #1A3A52;
}