/* ============================================
   PLASMA WARP - MINIMALIST DESIGN SYSTEM
   Modern, Clean, Futuristic Interior Design
   ============================================ */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2D3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY - MINIMALIST APPROACH */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2D3E50;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
p { margin-bottom: 16px; font-size: 16px; }

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

ul {
  list-style: none;
}

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

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

/* HEADER - MINIMALIST & CLEAN */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #ECF0F1;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  height: 40px;
  width: auto;
}

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2D3E50;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E67E22;
  transition: width 0.3s ease;
}

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

.cta-button {
  background-color: #2D3E50;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #E67E22;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  background-color: #2D3E50;
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #E67E22;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2D3E50;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #2D3E50;
  padding: 12px 0;
  border-bottom: 1px solid #ECF0F1;
  transition: all 0.3s ease;
}

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

/* HERO SECTION - MINIMALIST & SPACIOUS */
.hero {
  padding: 80px 0;
  background-color: #ECF0F1;
  text-align: center;
}

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #2D3E50;
}

.hero-subheadline {
  font-size: 18px;
  color: #2D3E50;
  margin-bottom: 32px;
  opacity: 0.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* BUTTONS - CLEAN & MODERN */
.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #2D3E50;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #E67E22;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #2D3E50;
  border: 2px solid #2D3E50;
}

.btn-secondary:hover {
  background-color: #2D3E50;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-link {
  color: #E67E22;
  font-weight: 600;
  display: inline-block;
  padding: 8px 0;
  position: relative;
}

.btn-link::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-link:hover::after {
  transform: translateX(4px);
}

/* SECTIONS - GENEROUS SPACING */
.section,
section {
  padding: 80px 0;
  margin-bottom: 0;
}

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

.section-subtitle,
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #2D3E50;
  opacity: 0.8;
}

/* FEATURES GRID - FLEXBOX LAYOUT */
.features {
  background-color: #FFFFFF;
}

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

.feature-card {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  padding: 40px 24px;
  background-color: #FFFFFF;
  border: 1px solid #ECF0F1;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

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

.feature-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  opacity: 0.8;
}

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

.feature-card p {
  color: #2D3E50;
  opacity: 0.7;
  margin-bottom: 0;
}

/* SERVICES OVERVIEW - CARD LAYOUT */
.services-overview {
  background-color: #ECF0F1;
}

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

.service-card {
  flex: 1 1 300px;
  max-width: 360px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  margin-bottom: 16px;
  color: #2D3E50;
}

.service-card p {
  margin-bottom: 16px;
  color: #2D3E50;
  opacity: 0.8;
}

.service-card .price {
  font-weight: 700;
  color: #E67E22;
  font-size: 18px;
  margin-bottom: 24px;
}

/* STATS SECTION - CLEAN DISPLAY */
.stats {
  background-color: #2D3E50;
  color: #FFFFFF;
}

.stats-grid,
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  align-items: center;
}

.stat-item,
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  min-width: 200px;
}

.stat-number,
.trust-number {
  font-size: 48px;
  font-weight: 700;
  color: #E67E22;
}

.stat-label,
.trust-label {
  font-size: 16px;
  opacity: 0.9;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background-color: #FFFFFF;
}

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

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background-color: #ECF0F1;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #E67E22;
  margin-bottom: 0;
}

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

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-info strong {
  color: #2D3E50;
  font-weight: 600;
}

.client-info span {
  color: #2D3E50;
  opacity: 0.7;
  font-size: 14px;
}

/* CTA SECTIONS - PROMINENT & CLEAR */
.cta-banner,
.cta-section {
  background-color: #E67E22;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.cta-banner p,
.cta-section p {
  color: #FFFFFF;
  opacity: 0.9;
  margin-bottom: 32px;
  font-size: 18px;
}

.cta-banner .btn-primary {
  background-color: #FFFFFF;
  color: #E67E22;
}

.cta-banner .btn-primary:hover {
  background-color: #2D3E50;
  color: #FFFFFF;
}

/* HERO PAGE - INTERNAL PAGES */
.hero-page {
  background-color: #ECF0F1;
  padding: 80px 0;
  text-align: center;
}

.hero-page h1 {
  margin-bottom: 16px;
}

.hero-page p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 0;
}

/* SERVICES DETAILED - FLEXBOX LAYOUT */
.services-detailed {
  background-color: #FFFFFF;
}

.service-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 64px;
  padding: 40px;
  background-color: #ECF0F1;
  border-radius: 8px;
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-content {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-content h2 {
  margin-bottom: 16px;
  text-align: left;
}

.service-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.service-content li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #2D3E50;
}

.service-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: 700;
}

.service-content .price {
  font-size: 24px;
  font-weight: 700;
  color: #E67E22;
  margin-bottom: 24px;
}

/* GUARANTEES SECTION */
.guarantees {
  background-color: #FFFFFF;
}

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

.guarantee-card {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background-color: #ECF0F1;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.guarantee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.guarantee-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  opacity: 0.8;
}

.guarantee-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.guarantee-card p {
  margin-bottom: 0;
  opacity: 0.8;
  font-size: 14px;
}

/* PORTFOLIO SECTION */
.portfolio {
  background-color: #FFFFFF;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 12px 24px;
  background-color: #FFFFFF;
  border: 2px solid #ECF0F1;
  border-radius: 4px;
  color: #2D3E50;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #2D3E50;
  color: #FFFFFF;
  border-color: #2D3E50;
}

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

.project-card {
  flex: 1 1 350px;
  max-width: 380px;
  background-color: #ECF0F1;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.project-content {
  padding: 32px;
}

.project-category {
  color: #E67E22;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-content h3 {
  margin-bottom: 12px;
}

.project-content p {
  margin-bottom: 0;
  opacity: 0.8;
}

/* STORY & TEXT SECTIONS */
.story,
.philosophy {
  background-color: #FFFFFF;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
}

/* VALUES SECTION */
.values {
  background-color: #ECF0F1;
}

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

.value-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.value-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  opacity: 0.8;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  margin-bottom: 0;
  opacity: 0.8;
  font-size: 14px;
}

/* TEAM SECTION */
.team {
  background-color: #FFFFFF;
}

.team-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-top: 48px;
}

/* PROCESS STEPS - VERTICAL LAYOUT */
.process-overview {
  background-color: #ECF0F1;
}

.process-steps {
  background-color: #FFFFFF;
}

.step-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
  padding: 32px;
  background-color: #ECF0F1;
  border-radius: 8px;
  border-left: 4px solid #E67E22;
}

.step-card:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background-color: #2D3E50;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: 8px;
}

.step-duration {
  color: #E67E22;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.step-content p {
  margin-bottom: 0;
  opacity: 0.8;
}

/* QUALITY SECTION */
.quality {
  background-color: #ECF0F1;
}

/* CONTACT SECTION */
.contact-content {
  background-color: #FFFFFF;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  justify-content: center;
}

.contact-form-section,
.contact-info-section {
  flex: 1 1 400px;
  max-width: 550px;
}

.form-intro,
.form-notice {
  background-color: #ECF0F1;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.form-notice p {
  margin-bottom: 12px;
  font-size: 14px;
}

.form-notice a {
  color: #E67E22;
  font-weight: 600;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item img {
  width: 32px;
  height: 32px;
  opacity: 0.8;
}

.contact-item h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.contact-item p {
  margin-bottom: 0;
  opacity: 0.8;
  font-size: 14px;
}

.contact-methods {
  background-color: #ECF0F1;
  padding: 24px;
  border-radius: 8px;
}

.contact-methods h3 {
  margin-bottom: 16px;
}

.contact-methods ul {
  list-style: none;
}

.contact-methods li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.contact-methods li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: 700;
}

/* TRUST SIGNALS */
.trust-signals {
  background-color: #ECF0F1;
}

/* LEGAL PAGES */
.legal-hero {
  background-color: #ECF0F1;
  padding: 60px 0;
  text-align: center;
}

.legal-hero h1 {
  margin-bottom: 16px;
}

.last-updated {
  color: #2D3E50;
  opacity: 0.7;
  font-size: 14px;
}

.legal-content {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  text-align: left;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content a {
  color: #E67E22;
  font-weight: 600;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background-color: #ECF0F1;
  padding: 80px 0;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2D3E50;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.8;
}

.confirmation-details,
.confirmation-message {
  background-color: #FFFFFF;
  padding: 60px 0;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background-color: #ECF0F1;
  border-radius: 8px;
}

.step-item .step-number {
  width: 48px;
  height: 48px;
  font-size: 20px;
}

.step-item p {
  margin-bottom: 0;
}

.alternative-actions,
.next-actions {
  background-color: #ECF0F1;
  padding: 60px 0;
}

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

.action-card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.action-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  opacity: 0.8;
}

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

.action-card p {
  margin-bottom: 24px;
  opacity: 0.8;
}

.contact-info-section,
.contact-reminder {
  background-color: #FFFFFF;
  padding: 60px 0;
}

.contact-info-section h2,
.contact-reminder h2 {
  text-align: center;
  margin-bottom: 32px;
}

.contact-info-section p,
.contact-reminder p {
  text-align: center;
  margin-bottom: 32px;
}

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

.contact-method {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  padding: 24px;
  background-color: #ECF0F1;
  border-radius: 8px;
}

.contact-method img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  opacity: 0.8;
}

.contact-method p {
  margin-bottom: 0;
  font-size: 14px;
}

/* FOOTER - MINIMAL & CLEAN */
footer {
  background-color: #2D3E50;
  color: #FFFFFF;
  padding: 60px 0 32px;
}

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

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

.footer-section h4 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #FFFFFF;
  opacity: 0.8;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-section nav a {
  color: #FFFFFF;
  opacity: 0.8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section nav a:hover {
  opacity: 1;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-bottom p {
  color: #FFFFFF;
  opacity: 0.7;
  font-size: 14px;
  margin-bottom: 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links a {
  color: #FFFFFF;
  opacity: 0.7;
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  opacity: 1;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2D3E50;
  color: #FFFFFF;
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

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

.cookie-text p {
  margin-bottom: 0;
  font-size: 14px;
  opacity: 0.9;
}

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

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

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

.cookie-accept:hover {
  background-color: #d35400;
}

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

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

.cookie-settings {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-settings:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #ECF0F1;
  border-radius: 8px;
}

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

.cookie-category p {
  margin-bottom: 12px;
  font-size: 14px;
  opacity: 0.8;
}

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

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

.cookie-toggle label {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

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

.cookie-modal-buttons button {
  flex: 1 1 150px;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background-color: #2D3E50;
  color: #FFFFFF;
  border: none;
}

.cookie-save:hover {
  background-color: #E67E22;
}

.cookie-close {
  background-color: transparent;
  color: #2D3E50;
  border: 2px solid #2D3E50;
}

.cookie-close:hover {
  background-color: #ECF0F1;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav,
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  /* Sections */
  .section,
  section {
    padding: 60px 0;
  }
  
  /* Cards & Grids */
  .features-grid,
  .services-grid,
  .stats-grid,
  .testimonials-grid,
  .guarantees-grid,
  .portfolio-grid,
  .values-grid,
  .actions-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-card,
  .service-card,
  .testimonial-card,
  .guarantee-card,
  .project-card,
  .value-card,
  .action-card {
    max-width: 100%;
  }
  
  /* Service Detail */
  .service-detail {
    flex-direction: column;
    padding: 24px;
  }
  
  /* Step Cards */
  .step-card {
    flex-direction: column;
    padding: 24px;
  }
  
  /* Contact Grid */
  .contact-grid {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    text-align: center;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .features-grid,
  .services-grid,
  .guarantees-grid,
  .portfolio-grid,
  .values-grid {
    justify-content: center;
  }
  
  .feature-card,
  .service-card,
  .guarantee-card,
  .project-card,
  .value-card {
    flex: 1 1 calc(50% - 16px);
  }
}

/* SMOOTH ANIMATIONS */
.feature-card,
.service-card,
.testimonial-card,
.guarantee-card,
.project-card,
.value-card,
.action-card,
.btn-primary,
.btn-secondary,
.filter-btn {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

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

/* ACCESSIBILITY */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #E67E22;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
}