/* ============================================
   DENSERIDE - GRADIENT MODERN DESIGN SYSTEM
   Modern design with gradient elements
   ============================================ */

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

:root {
  --primary: #1A1A2E;
  --secondary: #E94560;
  --accent: #F39C12;
  --gradient-primary: linear-gradient(135deg, #E94560 0%, #F39C12 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #2C2C54 100%);
  --gradient-light: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #CCCCCC;
  --dark-gray: #333333;
  --text-dark: #1A1A2E;
  --text-light: #666666;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text-light);
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

ul {
  list-style: none;
}

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

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

/* HEADER */
header {
  background: var(--gradient-dark);
  padding: 20px 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid transparent;
  border-image: var(--gradient-primary) 1;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.logo img:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(233, 69, 96, 0.5));
}

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

.main-nav a {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--accent);
}

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(233, 69, 96, 0.4);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--gradient-dark);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

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

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

.mobile-nav a {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.mobile-nav a:hover {
  background: var(--gradient-primary);
  transform: translateX(8px);
}

/* HERO SECTION */
.hero {
  background: var(--gradient-dark);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-light);
  opacity: 0.3;
}

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

.hero h1 {
  font-size: 56px;
  color: var(--white);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-subheadline {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0.9;
  animation: fadeInUp 1s ease;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  min-width: 160px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(233, 69, 96, 0.4);
  color: var(--white);
}

.btn-secondary {
  background: #E94560;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

/* PAGE HERO */
.page-hero {
  background: var(--gradient-dark);
  padding: 60px 20px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.page-hero h1 {
  color: var(--white);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 0;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: var(--accent);
}

/* SECTIONS */
section {
  padding: 60px 20px;
  position: relative;
}

section:nth-child(even) {
  background: var(--gradient-light);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* BRAND STATEMENT */
.brand-statement {
  background: var(--gradient-primary) !important;
  padding: 48px 20px;
  text-align: center;
}

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

.tagline {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

.description {
  font-size: 18px;
  color: var(--white);
  opacity: 0.95;
  margin-bottom: 0;
}

/* SERVICES GRID */
.services-overview h2,
.services-detailed h2,
.portfolio-grid h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.service-card,
.uvp-item,
.value-card,
.expertise-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.uvp-item::before,
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover,
.uvp-item:hover,
.value-card:hover,
.expertise-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before,
.uvp-item:hover::before,
.value-card:hover::before {
  transform: scaleX(1);
}

.service-card img,
.uvp-item img,
.value-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.service-card h3,
.uvp-item h3,
.value-card h3,
.expertise-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p,
.uvp-item p,
.value-card p,
.expertise-item p {
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.price {
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 8px;
}

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

/* PROCESS STEPS */
.process {
  background: var(--gradient-light);
}

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

.process-steps,
.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
}

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Bebas Neue', sans-serif;
  margin-bottom: 16px;
}

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

.step p {
  font-size: 15px;
  margin-bottom: 0;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--light-gray);
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 72px;
  color: var(--secondary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quote,
.quote-large {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.quote-large {
  font-size: 20px;
  text-align: center;
}

.client-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 4px;
}

.client-position,
.client-company {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.rating {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
}

/* FEATURED TESTIMONIAL */
.testimonials-featured {
  background: var(--gradient-dark) !important;
  padding: 60px 20px;
}

.featured-testimonial {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.featured-testimonial .quote-large {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 32px;
}

.client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.client-info .client-name,
.client-info .client-position,
.client-info .client-company {
  color: var(--white);
}

.client-info .rating {
  margin-top: 8px;
}

/* RATINGS */
.ratings h2 {
  text-align: center;
  margin-bottom: 48px;
}

.rating-overview {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  justify-content: center;
}

.average-rating {
  text-align: center;
  flex: 1 1 200px;
}

.rating-number {
  font-size: 72px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
}

.rating-stars {
  color: var(--accent);
  font-size: 32px;
  margin: 16px 0;
}

.rating-breakdown {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-bar .label {
  min-width: 70px;
  font-size: 14px;
  color: var(--text-light);
}

.rating-bar .bar {
  flex: 1;
  height: 12px;
  background: var(--light-gray);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.rating-bar .fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 6px;
  transition: width 1s ease;
}

.rating-bar .percentage {
  min-width: 45px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
}

/* TRUST INDICATORS */
.trust-indicators h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.trust-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.trust-item h3 {
  font-size: 16px;
  margin-bottom: 0;
}

/* CTA BANNER */
.cta-banner,
.cta {
  background: var(--gradient-primary) !important;
  padding: 80px 20px;
  text-align: center;
}

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

.cta-content h2 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 16px;
  background: none;
  -webkit-text-fill-color: var(--white);
}

.cta-content p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-content .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.cta-content .btn-primary:hover {
  background: var(--primary);
  color: var(--white);
}

.contact-info {
  color: var(--white);
  font-size: 18px;
  margin-top: 24px;
  font-weight: 600;
}

/* SERVICES DETAILED */
.services-intro,
.story,
.philosophy,
.expertise,
.studio {
  padding: 60px 20px;
}

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

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

.service-detail {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.service-detail:hover {
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
}

.service-detail h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.service-detail p {
  font-size: 16px;
  margin-bottom: 12px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  padding-left: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-light);
  padding-left: 28px;
  position: relative;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 18px;
}

/* PORTFOLIO */
.portfolio-filters {
  padding: 40px 20px 20px;
  background: var(--light-gray) !important;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.filter-btn {
  padding: 10px 24px;
  background: var(--white);
  border: 2px solid var(--medium-gray);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
}

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

.project-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 380px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-image {
  width: 100%;
  height: 240px;
  background: var(--gradient-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-image img {
  width: 80px;
  height: 80px;
  opacity: 0.4;
}

.project-card h3 {
  font-size: 22px;
  padding: 20px 24px 8px;
  margin-bottom: 4px;
}

.project-category {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 600;
  padding: 0 24px;
  margin-bottom: 8px;
}

.project-client {
  font-size: 14px;
  color: var(--text-light);
  padding: 0 24px;
  margin-bottom: 12px;
}

.project-card > p:last-child {
  font-size: 15px;
  padding: 0 24px 24px;
  margin-bottom: 0;
}

/* STATS */
.stats {
  background: var(--gradient-dark) !important;
  padding: 60px 20px;
  text-align: center;
}

.stats h2 {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
  margin-bottom: 48px;
}

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

.stat-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 280px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-card p {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 0;
  opacity: 0.9;
}

/* CONTACT PAGE */
.contact-intro {
  background: var(--light-gray);
  padding: 40px 20px;
}

.intro-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.benefit img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.benefit p {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-content {
  padding: 60px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form-section,
.contact-info-section {
  flex: 1 1 calc(50% - 48px);
  min-width: 300px;
}

.contact-form-section h2,
.contact-info-section h2 {
  margin-bottom: 24px;
}

.form-notice {
  background: var(--light-gray);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
}

.form-notice p {
  margin-bottom: 16px;
}

.form-fields-info {
  margin-top: 20px;
}

.form-fields-info ul {
  padding-left: 20px;
}

.form-fields-info li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 15px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-item img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

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

.contact-item p {
  font-size: 15px;
  margin-bottom: 0;
}

.contact-item a {
  color: var(--secondary);
  font-weight: 600;
}

/* MAP SECTION */
.map-section {
  background: var(--light-gray);
  padding: 60px 20px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.map-placeholder {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.map-placeholder p {
  font-size: 18px;
  margin-bottom: 16px;
}

.transport-info {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid var(--light-gray);
  text-align: left;
}

.transport-info p {
  font-size: 15px;
  line-height: 1.8;
}

/* STUDIO VISIT */
.studio-visit {
  padding: 60px 20px;
  text-align: center;
}

.studio-visit h2 {
  margin-bottom: 24px;
}

.studio-visit .text-section {
  margin-bottom: 32px;
}

/* LEGAL PAGES */
.page-hero.legal {
  padding: 50px 20px 30px;
}

.legal-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 0;
}

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

.legal-text {
  max-width: 900px;
  margin: 0 auto;
}

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

.legal-text h3 {
  margin-top: 28px;
  margin-bottom: 16px;
  font-size: 22px;
}

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

.legal-text ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-text li {
  list-style: disc;
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}

.legal-text a {
  color: var(--secondary);
  font-weight: 600;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: var(--gradient-primary);
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--white);
  color: var(--secondary);
  font-size: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.5s ease;
}

.thank-you-hero h1 {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
  margin-bottom: 16px;
}

.next-steps,
.what-to-expect,
.explore-more {
  padding: 60px 20px;
}

.next-steps h2,
.what-to-expect h2,
.explore-more h2 {
  text-align: center;
  margin-bottom: 48px;
}

.steps-grid,
.expectations-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.expectation,
.suggestion {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  max-width: 280px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.expectation:hover,
.suggestion:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.expectation img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}

.expectation h3,
.suggestion h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.expectation p,
.suggestion p {
  font-size: 15px;
  flex-grow: 1;
  margin-bottom: 0;
}

.confirmation-details {
  background: var(--light-gray);
  padding: 60px 20px;
}

.confirmation-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary);
}

.confirmation-box h3 {
  margin-bottom: 20px;
}

.confirmation-box p {
  margin-bottom: 16px;
}

/* FOOTER */
footer {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 60px 20px 20px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

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

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

.footer-section h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-dark);
  padding: 24px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid transparent;
  border-image: var(--gradient-primary) 1;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: var(--white);
}

.cookie-text p {
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(233, 69, 96, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.cookie-btn-settings {
  background: transparent;
  color: var(--white);
  border: none;
  text-decoration: underline;
  padding: 10px 16px;
}

.cookie-btn-settings:hover {
  color: var(--accent);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: var(--white);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  padding: 24px;
  border-bottom: 2px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  font-size: 24px;
  margin-bottom: 0;
}

.cookie-modal-close {
  background: var(--light-gray);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  background: var(--secondary);
  color: var(--white);
  transform: rotate(90deg);
}

.cookie-modal-body {
  padding: 24px;
}

.cookie-category {
  padding: 20px;
  background: var(--light-gray);
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-category h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 56px;
  height: 28px;
  background: var(--medium-gray);
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.cookie-toggle.active {
  background: var(--gradient-primary);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

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

.cookie-modal-footer {
  padding: 24px;
  border-top: 2px solid var(--light-gray);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .service-card,
  .uvp-item,
  .value-card,
  .trust-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step,
  .stat-card {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (max-width: 768px) {
  /* MOBILE NAVIGATION */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* TYPOGRAPHY */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  /* SECTIONS */
  section {
    padding: 40px 20px;
  }
  
  /* FLEXBOX LAYOUTS */
  .service-card,
  .uvp-item,
  .value-card,
  .expertise-item,
  .step,
  .stat-card,
  .project-card,
  .testimonial-card,
  .trust-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  /* FOOTER */
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* COOKIE BANNER */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* CONTACT */
  .contact-form-section,
  .contact-info-section {
    flex: 1 1 100%;
  }
  
  /* RATINGS */
  .rating-overview {
    flex-direction: column;
  }
  
  .average-rating,
  .rating-breakdown {
    flex: 1 1 100%;
  }
  
  /* BENEFITS */
  .benefit {
    flex: 1 1 100%;
  }
  
  /* EXPECTATIONS */
  .expectation,
  .suggestion {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .service-detail {
    padding: 24px 20px;
  }
  
  .stat-number {
    font-size: 48px;
  }
  
  .rating-number {
    font-size: 56px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-banner,
  .cta {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
    color: #000;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

a:focus,
button:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  :root {
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  }
  
  .btn {
    border-width: 3px;
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* END OF STYLESHEET */