/* ===================================
   STROMBEN & PARTNER - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern Aesthetic
   =================================== */

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

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

body {
  font-family: 'Lato', 'Arial', sans-serif;
  line-height: 1.6;
  color: #2A2A2A;
  background-color: #0F0F0F;
  overflow-x: hidden;
}

/* INDUSTRIAL MODERN TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #E8DCC8;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-left: 6px solid #C9A961;
  padding-left: 20px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  color: #C9A961;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 32px;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #C9A961 0%, #808080 100%);
}

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

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #B8B8B8;
}

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

a:hover {
  color: #E8DCC8;
}

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

/* HEADER - INDUSTRIAL STYLE */
header {
  background: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 2px solid #2A2A2A;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

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

header img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(201, 169, 97, 0.3));
}

header nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

header nav a {
  color: #B8B8B8;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #C9A961;
  transition: width 0.3s ease;
}

header nav a:hover {
  color: #C9A961;
}

header nav a:hover::after {
  width: 100%;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #1A3B5C;
  color: #E8DCC8;
  border: 2px solid #C9A961;
  font-size: 28px;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 100%);
  z-index: 1050;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 3px solid #C9A961;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #C9A961;
  border: 2px solid #C9A961;
  font-size: 28px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #C9A961;
  color: #0F0F0F;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #B8B8B8;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 0;
  border-bottom: 1px solid #2A2A2A;
  transition: all 0.3s ease;
}

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

/* HERO SECTION - INDUSTRIAL IMPACT */
.hero {
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #2A2A2A 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #C9A961;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(201, 169, 97, 0.03) 2px, rgba(201, 169, 97, 0.03) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201, 169, 97, 0.03) 2px, rgba(201, 169, 97, 0.03) 4px);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  color: #E8DCC8;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  border-left: none;
  padding-left: 0;
}

.hero p {
  font-size: 20px;
  color: #B8B8B8;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* CTA GROUP */
.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* BUTTONS - INDUSTRIAL STYLE */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #C9A961;
  color: #0F0F0F;
  border-color: #C9A961;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
  background: #E8DCC8;
  color: #0F0F0F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #C9A961;
  border-color: #C9A961;
}

.btn-secondary:hover {
  background: #C9A961;
  color: #0F0F0F;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

/* TRUST INDICATORS */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #2A2A2A;
}

.trust-indicators span {
  color: #C9A961;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-indicators span::before {
  content: '■';
  color: #808080;
  font-size: 12px;
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.value-proposition,
.services-overview,
.testimonials {
  background: #1A1A1A;
  padding: 80px 20px;
  position: relative;
}

.value-proposition::before,
.services-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #C9A961 50%, transparent 100%);
}

/* VALUE GRID - FLEXBOX */
.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 280px;
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  padding: 32px;
  border: 1px solid #2A2A2A;
  border-left: 4px solid #C9A961;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(201, 169, 97, 0.05);
  transition: width 0.3s ease;
  z-index: 0;
}

.value-card:hover::before {
  width: 100%;
}

.value-card:hover {
  transform: translateX(5px);
  border-left-width: 8px;
  box-shadow: -5px 5px 20px rgba(201, 169, 97, 0.2);
}

.value-card h3,
.value-card p {
  position: relative;
  z-index: 1;
}

.value-card h3 {
  color: #C9A961;
  margin-bottom: 16px;
  font-size: 22px;
}

.value-card p {
  color: #B8B8B8;
  line-height: 1.7;
}

/* SERVICES GRID - FLEXBOX */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #0F0F0F;
  padding: 32px;
  border: 2px solid #2A2A2A;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 97, 0.1) 100%);
  transition: height 0.3s ease;
}

.service-card:hover {
  border-color: #C9A961;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.service-card:hover::after {
  height: 100%;
}

.service-card h3 {
  color: #E8DCC8;
  margin-bottom: 12px;
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: #C9A961;
  font-weight: 700;
  font-size: 18px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* TESTIMONIALS - READABLE CONTRAST */
.testimonials {
  background: #2A2A2A;
}

.testimonial-card {
  background: #E8DCC8;
  padding: 40px;
  border-left: 6px solid #C9A961;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  color: #1A1A1A;
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 0;
}

.testimonial-card cite {
  color: #1A3B5C;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  text-align: right;
}

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

.service-detail {
  background: #0F0F0F;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid #2A2A2A;
  border-left: 5px solid #C9A961;
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(10px);
  box-shadow: -8px 8px 25px rgba(201, 169, 97, 0.2);
  border-left-width: 10px;
}

.service-detail h2 {
  color: #C9A961;
  font-size: 28px;
  margin-bottom: 20px;
}

.service-detail p {
  color: #B8B8B8;
  margin-bottom: 16px;
}

.service-detail .price {
  color: #E8DCC8;
  font-weight: 700;
  font-size: 18px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #2A2A2A;
}

/* INSIGHTS */
.insights-featured {
  background: #1A1A1A;
  padding: 60px 20px;
}

.insight-card {
  background: #0F0F0F;
  padding: 32px;
  margin-bottom: 30px;
  border: 2px solid #2A2A2A;
  border-top: 4px solid #C9A961;
  transition: all 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-top-width: 8px;
}

.insight-card h3 {
  color: #E8DCC8;
  margin-bottom: 16px;
  font-size: 24px;
}

.insight-card p {
  color: #B8B8B8;
  margin-bottom: 16px;
}

.insight-card .category {
  display: inline-block;
  background: #C9A961;
  color: #0F0F0F;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
}

/* MARKET DATA & STATS - FLEXBOX */
.market-data,
.portfolio-stats {
  background: #2A2A2A;
  padding: 80px 20px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}

.stat-item {
  flex: 1 1 calc(25% - 23px);
  min-width: 200px;
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  padding: 40px 24px;
  text-align: center;
  border: 2px solid #2A2A2A;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: #C9A961;
  transition: width 0.3s ease;
}

.stat-item:hover::before {
  width: 100%;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.stat-item h3 {
  color: #C9A961;
  font-size: 42px;
  margin-bottom: 12px;
  font-weight: 700;
}

.stat-item p {
  color: #B8B8B8;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.case-study {
  background: #0F0F0F;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid #2A2A2A;
  border-left: 6px solid #808080;
  transition: all 0.3s ease;
}

.case-study:hover {
  border-left-color: #C9A961;
  border-left-width: 10px;
  transform: translateX(8px);
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.5);
}

.case-study h3 {
  color: #C9A961;
  margin-bottom: 16px;
  font-size: 26px;
}

.case-study p {
  color: #B8B8B8;
  margin-bottom: 20px;
}

.case-study blockquote {
  background: rgba(201, 169, 97, 0.1);
  border-left: 4px solid #C9A961;
  padding: 20px;
  margin: 20px 0;
  font-style: italic;
  color: #E8DCC8;
}

/* CONTACT SECTIONS */
.contact-options,
.office-info,
.team-contact {
  background: #1A1A1A;
  padding: 60px 20px;
}

.contact-grid,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.contact-option,
.team-member {
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
  background: #0F0F0F;
  padding: 32px;
  border: 2px solid #2A2A2A;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-option:hover,
.team-member:hover {
  border-color: #C9A961;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.contact-option h3,
.team-member h3 {
  color: #C9A961;
  margin-bottom: 16px;
  font-size: 22px;
}

.contact-option p,
.team-member p {
  color: #B8B8B8;
  margin-bottom: 8px;
}

.office-details {
  background: #0F0F0F;
  padding: 40px;
  border: 2px solid #2A2A2A;
  border-left: 6px solid #C9A961;
  margin-top: 30px;
}

.office-details p {
  color: #B8B8B8;
  margin-bottom: 20px;
  line-height: 1.8;
}

.office-details strong {
  color: #C9A961;
}

/* STORY SECTION */
.story {
  background: #1A1A1A;
  padding: 60px 20px;
}

.story p {
  color: #B8B8B8;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.story blockquote {
  background: #0F0F0F;
  border-left: 6px solid #C9A961;
  padding: 30px;
  margin: 40px 0;
  font-size: 20px;
  font-style: italic;
  color: #E8DCC8;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #1A3B5C 0%, #0F0F0F 100%);
  padding: 80px 20px;
  text-align: center;
  border-top: 3px solid #C9A961;
  border-bottom: 3px solid #C9A961;
}

.cta-section h2 {
  color: #E8DCC8;
  margin-bottom: 32px;
  font-size: 38px;
}

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

/* THANK YOU / CONFIRMATION PAGES */
.confirmation-details,
.next-steps,
.contact-alternative {
  background: #1A1A1A;
  padding: 60px 20px;
}

.steps,
.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step,
.suggestion {
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
  background: #0F0F0F;
  padding: 32px;
  border: 2px solid #2A2A2A;
  border-top: 4px solid #808080;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step:hover,
.suggestion:hover {
  border-top-color: #C9A961;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.step h3,
.suggestion p {
  color: #C9A961;
  margin-bottom: 16px;
}

.step p {
  color: #B8B8B8;
}

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

.legal-content h1 {
  color: #C9A961;
  font-size: 42px;
  margin-bottom: 32px;
  border-left: 6px solid #C9A961;
  padding-left: 20px;
}

.legal-content h2 {
  color: #E8DCC8;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content p {
  color: #B8B8B8;
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content a {
  color: #C9A961;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #E8DCC8;
}

/* FOOTER - INDUSTRIAL STYLE */
footer {
  background: linear-gradient(180deg, #0F0F0F 0%, #000000 100%);
  padding: 60px 20px 30px;
  border-top: 3px solid #2A2A2A;
  color: #B8B8B8;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2A2A2A;
}

.footer-info {
  flex: 1 1 300px;
}

.footer-info img {
  height: 50px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(201, 169, 97, 0.3));
}

.footer-info p {
  color: #808080;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-links {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #808080;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding-left: 0;
}

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

footer > .container > p {
  text-align: center;
  color: #606060;
  font-size: 13px;
  margin-top: 20px;
}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 100%);
  border-top: 3px solid #C9A961;
  padding: 24px 20px;
  z-index: 1000;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

#cookie-banner.show {
  display: flex;
}

#cookie-banner p {
  color: #B8B8B8;
  margin: 0;
  flex: 1 1 300px;
  font-size: 14px;
}

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

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

#accept-cookies {
  background: #C9A961;
  color: #0F0F0F;
  border-color: #C9A961;
}

#accept-cookies:hover {
  background: #E8DCC8;
  transform: translateY(-2px);
}

#reject-cookies {
  background: transparent;
  color: #808080;
  border-color: #808080;
}

#reject-cookies:hover {
  background: #808080;
  color: #0F0F0F;
}

#cookie-settings {
  background: transparent;
  color: #C9A961;
  border-color: #C9A961;
}

#cookie-settings:hover {
  background: #C9A961;
  color: #0F0F0F;
}

/* COOKIE PREFERENCES MODAL */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  border: 3px solid #C9A961;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.9);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content h2 {
  color: #C9A961;
  margin-bottom: 24px;
}

.cookie-category {
  background: rgba(42, 42, 42, 0.5);
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #808080;
}

.cookie-category h3 {
  color: #E8DCC8;
  font-size: 18px;
  margin-bottom: 12px;
}

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

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

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

.cookie-toggle label {
  color: #C9A961;
  font-weight: 600;
  cursor: pointer;
}

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

.modal-buttons button {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
  flex: 1;
}

#save-preferences {
  background: #C9A961;
  color: #0F0F0F;
  border-color: #C9A961;
}

#save-preferences:hover {
  background: #E8DCC8;
  transform: translateY(-2px);
}

#close-modal {
  background: transparent;
  color: #808080;
  border-color: #808080;
}

#close-modal:hover {
  background: #808080;
  color: #0F0F0F;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  header nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
    letter-spacing: 1px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  /* Layout adjustments */
  .value-grid,
  .services-grid,
  .stats-grid,
  .contact-grid,
  .team-grid {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .stat-item,
  .contact-option,
  .team-member,
  .step,
  .suggestion {
    flex: 1 1 100%;
  }
  
  /* Spacing adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .section,
  .value-proposition,
  .services-overview,
  .testimonials {
    padding: 40px 20px;
  }
  
  /* Button adjustments */
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Trust indicators */
  .trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  /* Cookie banner */
  #cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-info,
  .footer-links {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-card {
    flex: 1 1 calc(50% - 15px);
  }
  
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 15px);
  }
}

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

::-webkit-scrollbar-track {
  background: #0F0F0F;
  border-left: 1px solid #2A2A2A;
}

::-webkit-scrollbar-thumb {
  background: #C9A961;
  border: 2px solid #0F0F0F;
}

::-webkit-scrollbar-thumb:hover {
  background: #E8DCC8;
}

/* SELECTION STYLING */
::selection {
  background: #C9A961;
  color: #0F0F0F;
}

/* FOCUS STATES FOR ACCESSIBILITY */
button:focus,
a:focus,
input:focus {
  outline: 2px solid #C9A961;
  outline-offset: 2px;
}

/* SMOOTH ANIMATIONS */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* PREVENT LAYOUT SHIFT */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ENSURE PROPER SPACING BETWEEN ALL SECTIONS */
section + section {
  margin-top: 0;
}

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