/* ========== DESIGN TOKENS ========== */
:root {
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --primary: #0d30a3;
  --primary-dark: #02115b;
  --primary-light: #3b82f6;
  --accent: #f39c12;
  --accent-hover: #e67e22;
  --text-dark: #0f172a;
  --text-body: #475569;
  --text-muted: #94a3b8;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --surface-hover: #f1f5f9;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .16);
  --shadow-glow: 0 0 30px rgba(59, 130, 246, .15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: .5s cubic-bezier(.4, 0, .2, 1);
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.6;
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
}

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

a {
  transition: var(--transition);
}

/* Entrance animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, .4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(59, 130, 246, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== HEADER & NAV ========== */
header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(2, 17, 91, .3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: 72px;
}

.burger-wrapper {
  position: absolute;
  left: 63%;
  z-index: 200;
}

.logo img {
  height: 50px;
  transition: var(--transition);
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 8px;
}

.nav-menu li a {
  white-space: nowrap;
  text-decoration: none;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  font-size: .95rem;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
  letter-spacing: .01em;
}

.nav-menu li a:hover {
  color: #fff;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.nav-menu li a:hover::after {
  transform: scaleX(1);
}

nav a.active {
  color: #fff;
  font-weight: 700;
}

nav a.active::after {
  transform: scaleX(1) !important;
}

/* Language Dropdown */
.language-dropdown {
  position: relative;
}

.language-dropdown .lang-btn {
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
}

.language-dropdown .lang-btn:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .35);
}

.language-dropdown .lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--surface);
  list-style: none;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 80px;
}

.language-dropdown:hover .lang-menu {
  display: block;
}

.language-dropdown .lang-menu li a {
  display: block;
  padding: 8px 14px;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: var(--transition);
}

.language-dropdown .lang-menu li a:hover {
  background: var(--surface-alt);
  color: var(--primary);
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 200;
}

.burger-menu span {
  position: absolute;
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.burger-menu .bar1 {
  top: 0;
}

.burger-menu .bar2 {
  top: 50%;
  transform: translateY(-50%);
}

.burger-menu .bar3 {
  bottom: 0;
}

.burger-menu.active .bar1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burger-menu.active .bar2 {
  opacity: 0;
}

.burger-menu.active .bar3 {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* ========== HOME HERO ========== */
.home-hero {
  position: relative;
  padding: 100px 20px 60px;
  background: linear-gradient(135deg, #ffffff 0%, var(--surface-alt) 100%);
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, .08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.home-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(243, 156, 18, .06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}

.home-hero-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.home-hero-content {
  padding-right: 40px;
  animation: fadeUp .8s ease-out;
}

.home-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero .tagline,
.section-subtitle {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 600;
  font-family: var(--font-heading);
}

.section-subtitle {
  margin: 0 auto;
  text-align: center;
  padding-bottom: 40px;
}

.home-hero p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-body);
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-feature-icon {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, .25);
}

.hero-feature-icon::after {
  content: "✓";
  color: white;
  font-weight: bold;
  font-size: .8rem;
}

.hero-feature-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
}

.hero-cta-buttons {
  display: flex;
  gap: 14px;
}

.hero-cta-buttons a {
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  box-shadow: 0 4px 16px rgba(243, 156, 18, .3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243, 156, 18, .4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.hero-image-showcase {
  animation: fadeUp 1s ease-out .2s both;
}

.showcase-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: var(--transition-slow);
  background: white;
}

.showcase-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, .05), transparent 60%);
  pointer-events: none;
}

.showcase-image:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.showcase-image:hover img {
  transform: scale(1.03);
}

.wave {
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0 Q300,120 600,60 T1200,0 L1200,120 L0,120 Z' fill='%230d30a3'/%3E%3C/svg%3E") center/cover no-repeat;
}

/* ========== HOME SERVICES ========== */
.home-services {
  padding: 100px 20px;
  background: var(--surface);
}

.home-services .container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card-home {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}

.service-card-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.service-card-home:hover::before {
  transform: scaleX(1);
}

.service-card-home:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  padding: 20px;
  background: var(--surface-alt);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s ease;
}

.service-card-home:hover .service-image img {
  transform: scale(1.08);
}

.service-content {
  padding: 28px;
}

.service-content h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-content p {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: .95rem;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-features-list li {
  padding: 6px 0;
  color: var(--text-body);
  position: relative;
  padding-left: 24px;
  font-size: .95rem;
}

.service-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.service-link {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary);
  gap: 10px;
}

/* ========== PROCESS SECTION ========== */
.home-process {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.process-steps {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-heading);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(59, 130, 246, .3);
  animation: pulse 3s ease-in-out infinite;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(59, 130, 246, .4);
}

.process-step h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.process-step p {
  color: var(--text-body);
  line-height: 1.7;
  font-size: .95rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section .container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, .9);
}

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

.btn-white-large {
  padding: 16px 36px;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
  font-family: var(--font-body);
  box-shadow: var(--shadow-md);
}

.btn-white-large:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-outline-white {
  padding: 16px 36px;
  background: rgba(255, 255, 255, .1);
  color: white;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  backdrop-filter: blur(10px);
  justify-content: center;
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

.btn-outline-white svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ========== HOME CTA (from styles2.css) ========== */
.home-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  text-align: center;
  color: white;
}

.home-cta h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
}

.home-cta p {
  font-size: 1.15rem;
  opacity: .95;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ========== GALLERY / OUR WORKS ========== */
.our-works {
  padding: 60px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.our-works .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.our-works h2 {
  font-size: 2.5rem;
  color: white;
  text-align: center;
  margin-bottom: 40px;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.main-image {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5);
  cursor: pointer;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.thumbs-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.thumbs-btn {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
  z-index: 10;
}

.thumbs-btn:hover {
  background: rgba(255, 255, 255, .25);
  transform: scale(1.1);
}

.thumbs-btn:active {
  transform: scale(.95);
}

.thumbs-container {
  display: flex;
  gap: 15px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.thumb {
  flex: 0 0 150px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 3px solid transparent;
  opacity: .6;
}

.thumb:hover {
  opacity: 1;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
}

.thumb.active {
  opacity: 1;
  border-color: var(--primary-light);
  transform: scale(1.05);
}

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  padding: 70px 24px 24px;
  margin-top: 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent), var(--primary-light));
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  font-weight: 600;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.footer-section p {
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 15px;
  font-size: .95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  position: relative;
  font-size: .95rem;
}

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

.footer-links a::before {
  content: "›";
  margin-right: 8px;
  color: var(--accent);
  font-weight: bold;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--accent);
}

.contact-info a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color .3s;
}

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

.social-media {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, .1);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.working-hours {
  background: rgba(255, 255, 255, .05);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-top: 15px;
  border: 1px solid rgba(255, 255, 255, .06);
}

.working-hours p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: .95rem;
}

.working-hours p:last-child {
  margin-bottom: 0;
}

.day {
  color: #cbd5e1;
}

.time {
  color: var(--accent);
  font-weight: 600;
}

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

.footer-bottom p {
  color: #94a3b8;
  font-size: .9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: .9rem;
  transition: color .3s;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(59, 130, 246, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, .5);
}

.back-to-top:active {
  transform: translateY(-2px);
}

.back-to-top.svg-icon::before {
  content: "";
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* ========== INNER PAGE HERO (Kitchen, Appliances, Furniture) ========== */
.hero-container {
  margin: 0 auto;
  padding: 20px;
  background-image: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url("images/Kitchen.jpg");
  background-size: cover;
  background-position: center;
}

.hero-description {
  max-width: 950px;
  margin: 0 auto;
  padding: 150px 20px;
  border-radius: var(--radius-sm);
}

.hero-description h1 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 25px;
  opacity: .9;
  font-family: var(--font-heading);
}

.hero-description h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 25px;
  opacity: .85;
  text-align: left;
}

.hero-description p {
  color: #fff;
  opacity: .85;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.hero-buttons a {
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  min-width: 130px;
  text-align: center;
  transition: var(--transition);
  font-family: var(--font-body);
}

.hero-buttons a:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(243, 156, 18, .3);
}

.why-choose-us {
  background: #e8e8ec;
}

.why-choose-us-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
}

.why-choose-us p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

.features {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr 3fr;
  row-gap: 60px;
  column-gap: 20px;
  justify-items: flex-start;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

/* Hero split layout */
.hero-split {
  display: grid;
  max-width: 1400px;
  grid-template-columns: 1fr 1fr;
  padding: 40px;
  margin: 0 auto;
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px;
}

.hero-images img {
  max-width: 300px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  padding: 0;
}

.hero-images img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 20px;
  width: fit-content;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content .subtitle {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

/* ========== SERVICES SECTION (inner pages) ========== */
.services-section {
  padding: 50px 20px;
  background: #ececee;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-section .section-subtitle {
  text-align: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 20px auto;
}

.service-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 6px 16px rgba(59, 130, 246, .2);
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 14px;
  font-weight: 700;
}

.service-card p {
  color: var(--text-body);
  line-height: 1.7;
  font-size: .95rem;
}

/* Furniture Types */
.furniture-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.furniture-type-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.furniture-type-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.furniture-type-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.furniture-type-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.furniture-type-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.furniture-type-card li {
  padding: 8px 0;
  color: var(--text-body);
  border-bottom: 1px solid #f1f5f9;
  font-size: .95rem;
}

.furniture-type-card li:last-child {
  border-bottom: none;
}

.furniture-type-card li::before {
  content: "✓";
  color: var(--primary-light);
  font-weight: bold;
  margin-right: 10px;
}

/* ========== PRICING PAGE ========== */
.pricing-hero {
  background: #f5f5f0;
  padding: 80px 20px 5px;
  text-align: center;
}

.pricing-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}

.pricing-hero p {
  font-size: 1.8rem;
  opacity: .95;
  max-width: 700px;
  margin: 0 auto;
  color: var(--accent);
}

.pricing-content {
  background: #f5f5f0;
  min-height: 100vh;
  padding: 60px 20px;
}

.pricing-container {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-note {
  background: white;
  padding: 24px 28px;
  margin-bottom: 40px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.pricing-note h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 1.15rem;
  font-weight: 600;
}

.pricing-note p {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 8px;
}

.price-section {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.price-section-header {
  padding: 18px 28px;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #1e293b 30%, var(--primary-light) 45%, #5cbbfb 50%, var(--primary-light) 55%, #1e293b 80%);
}

.price-section-header.orange {
  background: linear-gradient(135deg, #321f04 30%, #fa8231 45%, #f7bf99 50%, #fa8231 55%, #321f04 80%);
}

.price-table {
  padding: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid #f1f5f9;
  transition: background .2s;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:hover {
  background: var(--surface-alt);
}

.service-name {
  color: var(--text-dark);
  font-weight: 500;
  font-size: .95rem;
}

.service-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  margin-left: 20px;
}

.info-section {
  margin-top: 50px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.info-box {
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.info-box h3 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.info-box p {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 8px;
}

.info-box ul {
  color: var(--text-body);
  line-height: 1.8;
  margin-left: 20px;
}

.info-box strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* ========== CONTACT PAGE ========== */
.contact-hero {
  background: var(--surface-alt);
  padding: 80px 20px 20px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary);
  font-family: var(--font-heading);
}

.contact-hero p {
  font-size: 1.6rem;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
  color: var(--accent);
}

.contact-content {
  padding: 40px 20px;
  background: var(--surface-alt);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

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

.contact-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(59, 130, 246, .2);
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.contact-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 0;
}

.contact-card-content {
  padding-left: 63px;
}

.contact-card-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 10px;
}

.contact-card-content a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  transition: color .3s;
}

.contact-card-content a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.social-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--border);
  background: var(--surface-alt);
}

.social-link-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.social-link-item span {
  font-weight: 600;
  font-size: 1rem;
}

.social-link-item.facebook {
  color: #1877f2;
}

.social-link-item.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: white;
  transform: translateX(5px);
}

.social-link-item.facebook svg {
  fill: #1877f2;
}

.social-link-item.facebook:hover svg {
  fill: white;
}

.social-link-item.instagram {
  color: #e1306c;
}

.social-link-item.instagram:hover {
  background: linear-gradient(135deg, #e1306c, #c13584, #833ab4);
  border-color: #e1306c;
  color: white;
  transform: translateX(5px);
}

.social-link-item.instagram svg {
  fill: #e1306c;
}

.social-link-item.instagram:hover svg {
  fill: white;
}

/* Quote Form */
.quote-form-section {
  background: white;
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.quote-form-section h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-align: left;
}

.quote-form-section .subtitle {
  color: var(--text-body);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: .95rem;
}

.form-group label .required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  font-family: var(--font-body);
  background: var(--surface);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, .1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  margin: 0;
  font-weight: normal;
  color: var(--text-body);
  font-size: .9rem;
}

.checkbox-group label a {
  color: var(--primary-light);
  text-decoration: none;
}

.submit-btn {
  width: 100%;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
  font-family: var(--font-body);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243, 156, 18, .35);
}

.submit-btn:active {
  transform: translateY(0);
}

/* File Upload */
.file-upload-wrapper {
  position: relative;
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 36px 20px;
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-body);
}

.file-upload-label:hover {
  border-color: var(--primary-light);
  background: #f0f9ff;
  color: var(--primary-light);
}

.file-upload-label svg {
  width: 40px;
  height: 40px;
}

.file-upload-label span {
  font-weight: 500;
}

.file-upload-wrapper.drag-over .file-upload-label {
  border-color: var(--primary-light);
  background: #dbeafe;
}

.file-list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  animation: slideIn .3s ease;
}

.file-item-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.file-item-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.file-item-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.file-item-details {
  flex: 1;
  min-width: 0;
}

.file-item-name {
  color: var(--text-dark);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-item-size {
  color: var(--text-muted);
  font-size: .85rem;
}

.file-remove-btn {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 5px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-remove-btn:hover {
  color: #dc2626;
  transform: scale(1.1);
}

.file-remove-btn svg {
  width: 20px;
  height: 20px;
}

.file-error {
  color: #ef4444;
  font-size: .9rem;
  margin-top: 10px;
  padding: 10px;
  background: #fef2f2;
  border-radius: 6px;
  border: 1px solid #fecaca;
}

/* Map */
.map-section {
  padding: 0;
  background: var(--surface-alt);
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.map-container h2 {
  font-size: 2rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 40px;
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 450px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Info Banner */
.info-banner {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 40px 20px;
  text-align: center;
}

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

.info-banner h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.info-banner p {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.info-banner-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.info-icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
}

.info-icon-item::before {
  content: "✓";
  width: 30px;
  height: 30px;
  background: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* ========== RESPONSIVE ========== */
@media (max-width:1024px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-images {
    order: 2;
    padding: 24px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px) {
  .home-hero {
    padding: 60px 20px;
  }

  .home-hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-hero-content {
    padding-right: 0;
  }

  .home-hero h1 {
    font-size: 2.2rem;
  }

  .home-hero .tagline {
    font-size: 1.2rem;
  }

  .home-hero p {
    font-size: 1rem;
  }

  .hero-images-showcase {
    justify-content: center;
  }

  .showcase-image {
    width: 350px;
    height: 350px;
  }

  .header-container {
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    height: 60px;
  }

  .burger-menu {
    display: flex;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    width: 80%;
    gap: 16px;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .language-dropdown {
    flex: 0 0 auto;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(15, 23, 42, .97);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right .3s ease;
    z-index: 150;
  }

  nav.active {
    right: 0;
  }

  .nav-menu li a {
    flex: 1;
    display: block;
    width: 100%;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
  }

  .nav-menu li a:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-radius: var(--radius-sm);
  }

  .nav-menu li a.active {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-weight: bold;
  }

  .nav-menu li a::after {
    display: none;
  }

  .why-choose-us {
    padding: 30px 20px;
  }

  .features {
    grid-template-columns: 1fr 3fr;
    row-gap: 30px;
    column-gap: 0;
    justify-items: center;
  }

  .our-works h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .main-image {
    height: 300px;
  }

  .thumb {
    flex: 0 0 100px;
    height: 70px;
  }

  .thumbs-btn {
    padding: 8px 12px;
    font-size: 1rem;
  }

  footer {
    padding: 40px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-media {
    justify-content: center;
  }

  .contact-info li {
    justify-content: center;
  }

  .working-hours {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links a::before {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

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

  .quote-form-section {
    padding: 28px 20px;
  }

  .map-wrapper {
    height: 350px;
  }

  .info-banner-icons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
    text-align: center;
  }

  .home-cta h2 {
    font-size: 2rem;
  }

  .home-hero .hero-cta-buttons {
    flex-direction: column;
  }

  .home-hero .hero-cta-buttons a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:480px) {
  .home-hero {
    padding: 50px 16px;
  }

  .home-hero h1 {
    font-size: 1.8rem;
  }

  .home-hero .tagline {
    font-size: 1.1rem;
  }

  .home-hero p {
    font-size: .95rem;
  }

  .hero-feature-text {
    font-size: .9rem;
  }

  .showcase-image {
    width: 280px;
    height: 280px;
  }

  .our-works {
    padding: 40px 0;
  }

  .thumb {
    flex: 0 0 80px;
    height: 60px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content .subtitle {
    font-size: 1.1rem;
  }

  .hero-cta-buttons {
    flex-direction: column;
  }

  .hero-cta-buttons a {
    width: 100%;
    text-align: center;
  }

  .hero-images {
    display: none;
  }

  .services-section,
  .process-section,
  .pricing-preview,
  .cta-section {
    padding: 50px 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .service-content {
    padding: 20px;
  }
}


/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px 24px;
}

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

.cookie-content {
  max-width: 960px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.12);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--border);
}

.cookie-text {
  flex: 1;
}

.cookie-text strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

.cookie-text p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.cookie-accept:hover {
  background: var(--primary-dark);
}

.cookie-reject {
  background: transparent;
  color: var(--text-body);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.cookie-reject:hover {
  border-color: var(--text-body);
  color: var(--text-dark);
}

@media (max-width: 640px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-accept,
  .cookie-reject {
    width: 100%;
    padding: 12px;
  }
}

/* ========== TESTIMONIALS CAROUSEL ========== */
.testimonials-section {
  padding: 70px 24px;
  background: var(--surface-alt);
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonials-viewport {
  overflow: hidden;
  flex: 1;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(100% / 3);
  min-width: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.testimonial-inner {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.testimonial-text {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 14px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonial-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.testimonial-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}

.testimonials-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}

.testimonials-dots .dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding: 50px 16px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-arrow {
    display: none;
  }

  .testimonials-carousel {
    gap: 0;
  }
}

/* ========== PORTFOLIO GALLERY ========== */
.portfolio-section {
  padding: 80px 24px;
  background: var(--surface);
}

.portfolio-gallery {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-main {
  position: relative;
  background: #0a0a0a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.portfolio-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
}

.portfolio-thumbs {
  display: flex;
  align-items: center;
  gap: 12px;
}

.portfolio-thumbs .thumbs-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  padding: 4px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.portfolio-thumbs .thumbs-container::-webkit-scrollbar {
  display: none;
}

.portfolio-thumbs .thumb {
  width: 90px;
  height: 65px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.5;
  transition: all var(--transition);
  flex-shrink: 0;
  border: 2px solid transparent;
}

.portfolio-thumbs .thumb:hover {
  opacity: 0.8;
}

.portfolio-thumbs .thumb.active {
  opacity: 1;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(13, 48, 163, 0.2);
}

.portfolio-thumbs .thumbs-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.portfolio-thumbs .thumbs-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 60px 16px;
  }

  .portfolio-main {
    aspect-ratio: 4 / 3;
  }

  .portfolio-thumbs .thumb {
    width: 70px;
    height: 50px;
  }

  .portfolio-thumbs .thumbs-btn {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
}

/* ========== POLICY PAGES ========== */
.policy-hero {
  padding: 80px 20px 50px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.policy-hero h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.policy-hero .section-subtitle {
  color: rgba(255, 255, 255, .75);
  font-size: 1rem;
  padding-bottom: 0;
  font-weight: 400;
}

.policy-content {
  padding: 60px 20px 80px;
  background: var(--surface);
}

.policy-container {
  max-width: 860px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 48px;
}

.policy-section h2 {
  font-size: 1.6rem;
  text-align: left;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 700;
}

.policy-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.policy-section ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.7;
}

.policy-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--primary-light);
  font-weight: bold;
  font-size: 1.2rem;
}

.policy-section a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.policy-section a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.policy-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 20px 0;
  transition: var(--transition);
}

.policy-card:hover {
  border-color: rgba(59, 130, 246, .2);
  box-shadow: var(--shadow-sm);
}

.policy-card h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.policy-card p {
  font-size: .95rem;
  margin-bottom: 12px;
}

.policy-card ul {
  margin: 12px 0 0;
}

@media (max-width: 768px) {
  .policy-hero {
    padding: 60px 16px 40px;
  }

  .policy-hero h1 {
    font-size: 1.8rem;
  }

  .policy-content {
    padding: 40px 16px 60px;
  }

  .policy-section h2 {
    font-size: 1.35rem;
  }

  .policy-card {
    padding: 20px;
  }
}