/* ==========================================================================
   Glaistymo Meistrai - Ultra-Modern Architectural Design System
   ========================================================================== */

:root {
  /* Brand Colors matching Logo */
  --primary: #e75c05;
  --primary-hover: #cf4f02;
  --primary-dark: #b43e00;
  --primary-light: #fff7ed;
  --primary-glow: rgba(231, 92, 5, 0.3);
  --primary-gradient: linear-gradient(135deg, #f97316 0%, #e75c05 60%, #c2410c 100%);
  --accent-gold: #f59e0b;
  
  /* Dark Palette */
  --dark: #090d16;
  --dark-light: #0f172a;
  --dark-surface: #1e293b;
  --dark-border: rgba(255, 255, 255, 0.1);
  --dark-glow: rgba(15, 23, 42, 0.6);

  /* Light Palette */
  --light: #f8fafc;
  --light-gray: #f1f5f9;
  --light-surface: #ffffff;
  --border-color: #e2e8f0;
  --border-subtle: #edf2f7;

  /* Typography Colors */
  --text-main: #334155;
  --text-dark: #090d16;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Elevation Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 10px 30px -5px rgba(231, 92, 5, 0.35);

  /* Border Radii (Crisp, Modern Architectural Radii) */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --radius-full: 6px;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* ==========================================================================
   Global Reset & Base
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--light);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding {
  padding: 100px 0;
  position: relative;
}

.bg-light {
  background-color: var(--light-gray);
}

.bg-dark {
  background-color: var(--dark);
  color: var(--text-white);
  position: relative;
}

.text-white {
  color: var(--text-white) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

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

.text-accent {
  color: var(--primary);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   Typography & Section Headers
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--text-white);
}

.section-header {
  max-width: 780px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(231, 92, 5, 0.15);
}

.section-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  background-color: var(--primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--primary);
}

.tag-light {
  background-color: rgba(231, 92, 5, 0.15);
  color: #fdba74;
  border-color: rgba(249, 115, 22, 0.3);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  font-weight: 400;
}

.bg-dark .section-subtitle {
  color: var(--text-light);
}

/* ==========================================================================
   Buttons & Micro-interactions
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 0.96rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -5px rgba(231, 92, 5, 0.5);
  color: #ffffff;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background-color: #ffffff;
  color: var(--dark);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--dark);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Top Info Bar
   ========================================================================== */

.top-bar {
  background-color: var(--dark);
  color: #94a3b8;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
  position: relative;
  z-index: 101;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 26px;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  transition: var(--transition-fast);
}

.top-item i {
  color: var(--primary);
  font-size: 0.95rem;
}

.top-item a:hover,
a.top-item:hover {
  color: #ffffff;
}

.top-address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
}

.top-address i {
  color: var(--primary);
}

/* ==========================================================================
   Header Navigation (Floating Glass Navbar)
   ========================================================================== */

.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 100;
  transition: var(--transition);
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-bottom-color: transparent;
}

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

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo-img {
  height: 54px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand-logo:hover .brand-logo-img {
  transform: translateY(-2px) scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
  background-color: var(--primary-light);
}

.nav-link.active,
.nav-link.highlight-link.active {
  color: #ffffff !important;
  background: var(--primary-gradient) !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(231, 92, 5, 0.45);
  border: 1px solid transparent;
}

.nav-link.active::after {
  display: none;
}

.nav-link.highlight-link {
  color: var(--primary);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-toggle:hover {
  background-color: var(--light-gray);
  color: var(--primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  background: #090d16;
  background-image: 
    radial-gradient(circle at 85% 20%, rgba(231, 92, 5, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(30, 41, 59, 0.7) 0%, transparent 50%);
  color: var(--text-white);
  padding: 110px 0 120px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 22, 0.3) 0%, rgba(9, 13, 22, 0.95) 100%);
  pointer-events: none;
}

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

.hero-content {
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(231, 92, 5, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #fed7aa;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  color: var(--primary);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 1.22rem;
  color: #cbd5e1;
  margin-bottom: 38px;
  max-width: 720px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 55px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(231, 92, 5, 0.4);
  transform: translateY(-3px);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #ffffff 40%, #fdba74 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Features Trust Banner
   ========================================================================== */

/* ==========================================================================
   Features Strip / Banner
   ========================================================================== */

.features-strip,
.features-banner {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-box:hover {
  background-color: #fffbf5;
  border-color: rgba(231, 92, 5, 0.3);
  box-shadow: 0 10px 25px -5px rgba(231, 92, 5, 0.15);
  transform: translateY(-3px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(231, 92, 5, 0.15);
}

.feature-box:hover .feature-icon {
  background: var(--primary-gradient);
  color: #ffffff;
  transform: scale(1.08) rotate(3deg);
  box-shadow: var(--shadow-glow);
}

.feature-text h4 {
  font-size: 1.12rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.feature-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */

.about-section {
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images,
.about-img-wrap {
  position: relative;
}

.image-wrapper img,
.about-main-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  object-fit: cover;
}

.experience-card,
.about-badge-card {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: #ffffff;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-color);
}

.exp-badge,
.badge-text {
  display: flex;
  flex-direction: column;
}

.exp-years {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1;
}

.exp-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.about-text-content .section-tag {
  margin-bottom: 14px;
}

.about-text-content .section-title {
  font-size: 2.3rem;
  margin-bottom: 18px;
}

.lead-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.6;
}

.about-body {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.7;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.check-item i {
  color: #10b981;
  font-size: 1.1rem;
}

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.call-badge {
  display: flex;
  flex-direction: column;
}

.call-small {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.call-phone {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.call-phone:hover {
  color: var(--primary-hover);
}

/* Service Card Typography Aliases */
.service-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.service-points li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-points li i {
  color: var(--primary);
  font-size: 0.8rem;
}

/* ==========================================================================
   Services Grid Section
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background-color: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  background: linear-gradient(180deg, #fffbf5 0%, #ffffff 100%);
  box-shadow: 
    0 20px 40px -10px rgba(231, 92, 5, 0.22),
    0 0 0 1px var(--primary),
    0 0 30px rgba(231, 92, 5, 0.25);
}

.service-icon,
.service-icon-box {
  width: 58px;
  height: 58px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 22px;
  transition: var(--transition);
  border: 1px solid rgba(231, 92, 5, 0.15);
}

.service-card:hover .service-icon,
.service-card:hover .service-icon-box {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
  transform: scale(1.08) rotate(3deg);
  border-color: transparent;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  flex-grow: 1;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li i {
  color: var(--primary);
  font-size: 0.8rem;
}

.service-price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-price strong {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 800;
}

/* ==========================================================================
   Finishing Levels (Q4, Q4+)
   ========================================================================== */

.levels-section {
  background-color: #ffffff;
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 960px;
  margin: 0 auto;
}

.level-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 45px 36px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.level-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.level-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #fffbf5 0%, #ffffff 100%);
  box-shadow: 0 15px 35px -5px rgba(231, 92, 5, 0.15);
}

.level-card.ultra-premium {
  border: 2px solid rgba(249, 115, 22, 0.6);
  background: radial-gradient(circle at 50% 0%, #1e293b 0%, #090d16 100%);
  color: #ffffff;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.4), 0 0 25px rgba(231, 92, 5, 0.15);
}

.level-card.ultra-premium h4 {
  color: #ffffff;
}

.level-card.ultra-premium p {
  color: #cbd5e1;
}

.level-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 auto 22px;
  border: 2px solid rgba(231, 92, 5, 0.2);
}

.level-card.featured .level-badge {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
  border: none;
}

.level-card.ultra-premium .level-badge {
  background: linear-gradient(135deg, #f59e0b, #e75c05);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  border: none;
}

.level-card h4 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.level-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-glow);
}

.gold-tag {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #090d16;
  font-weight: 800;
}

/* ==========================================================================
   Interactive Calculator Section
   ========================================================================== */

.calculator-section {
  background-color: #ffffff;
  background-image: 
    radial-gradient(circle at 90% 10%, rgba(231, 92, 5, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(241, 245, 249, 0.7) 0%, transparent 50%);
  color: var(--text-dark);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.calculator-section .section-title {
  color: var(--text-dark);
}

.calculator-section .section-subtitle {
  color: var(--text-muted);
}

.calculator-card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(226, 232, 240, 0.8);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
}

.calc-controls {
  padding: 50px 45px;
}

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

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.slider-header label {
  font-size: 1.05rem;
}

.area-badge,
.area-input-wrapper {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-light);
  border: 2px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 6px 14px;
  transition: var(--transition);
}

.area-input-wrapper:focus-within {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(231, 92, 5, 0.18);
}

.area-number-input {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  background: transparent;
  border: none;
  outline: none;
  width: 80px;
  text-align: right;
  padding: 0 4px;
}

.area-unit {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-left: 4px;
}

.custom-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
  accent-color: var(--primary);
  cursor: pointer;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

.radio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.radio-cards.radio-cards-levels {
  grid-template-columns: repeat(2, 1fr);
}

.radio-card {
  position: relative;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  cursor: pointer;
  transition: var(--transition);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.radio-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.radio-card input {
  position: absolute;
  opacity: 0;
}

.radio-card.active {
  border-color: var(--primary);
  background-color: #fffbf5;
  box-shadow: 0 0 0 1px var(--primary), 0 8px 20px rgba(231, 92, 5, 0.12);
}

.radio-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.radio-content i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.radio-content span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
}

.radio-content small {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
}

.q-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.94rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition-fast);
}

.checkbox-label:hover {
  color: var(--primary);
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
}

.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
  background: #ffffff;
}

.checkbox-label input:checked ~ .checkbox-custom {
  background: var(--primary-gradient);
  border-color: var(--primary);
}

.checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #ffffff;
  font-size: 0.75rem;
  display: none;
}

.checkbox-label input:checked ~ .checkbox-custom::after {
  display: block;
}

/* Calculator Result Box */
.calc-result-box {
  background: linear-gradient(155deg, #090d16 0%, #1e293b 100%);
  color: var(--text-white);
  padding: 50px 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.result-header h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.result-header p {
  color: #94a3b8;
  font-size: 0.88rem;
}

.price-display {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 28px 0;
  backdrop-filter: blur(10px);
}

.price-title {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 6px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 40%, #fdba74 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-per-meter {
  font-size: 0.92rem;
  color: #fed7aa;
  font-weight: 600;
}

.breakdown-list,
.estimate-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.breakdown-item,
.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: #cbd5e1;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breakdown-row span:last-child,
.breakdown-item strong {
  color: #ffffff;
  font-weight: 700;
}

.breakdown-row.highlight span:last-child {
  color: #fed7aa;
}

.calc-guarantee-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #94a3b8;
  margin-top: 18px;
  line-height: 1.4;
}

.calc-guarantee-note i {
  color: #10b981;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.calc-action-btn,
#btn-apply-estimate {
  margin-top: 6px;
}

/* ==========================================================================
   Before / After Section
   ========================================================================== */

.before-after-section {
  background-color: #ffffff;
}

.ba-slider-container {
  position: relative;
  width: 100%;
  max-width: 980px;
  height: 520px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.18);
  user-select: none;
  border: 1px solid var(--border-color);
  touch-action: none;
  cursor: ew-resize;
}

.ba-image-wrapper,
.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid #ffffff;
}

.ba-after img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #ffffff;
  z-index: 5;
  transform: translateX(-50%);
  cursor: ew-resize;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
}

.ba-handle-line {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.ba-handle-button,
.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: var(--primary-gradient);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 0 4px rgba(231, 92, 5, 0.4), 0 10px 25px rgba(0, 0, 0, 0.45);
  border: 3px solid #ffffff;
  cursor: ew-resize;
  animation: pulseGlow 2.5s infinite;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.ba-slider-container:hover .ba-handle-button,
.ba-handle:hover .ba-handle-button,
.ba-handle:active .ba-handle-button {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 0 6px rgba(231, 92, 5, 0.55), 0 12px 30px rgba(0, 0, 0, 0.5);
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(231, 92, 5, 0.4), 0 8px 25px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(231, 92, 5, 0.65), 0 12px 30px rgba(231, 92, 5, 0.4);
  }
}

.ba-badge-pill,
.ba-label {
  position: absolute;
  top: 20px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.ba-before-badge,
.before-label,
.label-before {
  right: 20px;
  left: auto;
  background: #0f172a;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.ba-before-badge i,
.before-label i {
  color: #94a3b8;
  font-size: 0.95rem;
}

.ba-after-badge,
.after-label,
.label-after {
  left: 20px;
  right: auto;
  background: #e75c05;
  background: linear-gradient(135deg, #f97316 0%, #e75c05 100%);
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 10px 25px rgba(231, 92, 5, 0.5);
}

.ba-after-badge i,
.after-label i {
  color: #ffffff;
  font-size: 0.95rem;
}

/* ==========================================================================
   Project Gallery Section
   ========================================================================== */

.gallery-section {
  background-color: var(--light-gray);
}

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

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.gallery-img-wrap {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-img-wrap img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 13, 22, 0.9) 0%, rgba(9, 13, 22, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.overlay-content h4 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.overlay-content p {
  color: #fed7aa;
  font-size: 0.92rem;
}

/* ==========================================================================
   Work Process Steps
   ========================================================================== */

.process-section {
  background-color: #ffffff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  background-color: var(--light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(231, 92, 5, 0.3);
  background-color: #ffffff;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1;
}

.step-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Reviews / Testimonials Section
   ========================================================================== */

.reviews-section {
  background-color: var(--light-gray);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.review-text {
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.reviewer-meta strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.reviewer-meta span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  background-color: #ffffff;
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #ffffff;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  gap: 16px;
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
  font-size: 0.95rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 26px;
}

.faq-item.active .faq-answer {
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.96rem;
  color: var(--text-main);
  line-height: 1.7;
}

/* ==========================================================================
   Contact Section & Form
   ========================================================================== */

/* ==========================================================================
   Request Form Section (Tarp D.U.K. ir Kontaktų)
   ========================================================================== */

.request-section {
  background-color: var(--light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.request-form-card {
  max-width: 840px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 50px 45px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

/* ==========================================================================
   Contact Details Section (Kontaktai)
   ========================================================================== */

.contact-section {
  background: #090d16;
  background-image: 
    radial-gradient(circle at 80% 30%, rgba(231, 92, 5, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(30, 41, 59, 0.6) 0%, transparent 50%);
  color: var(--text-white);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 45px;
  margin-bottom: 35px;
}

.c-detail-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.c-detail-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(231, 92, 5, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.c-icon {
  width: 48px;
  height: 48px;
  background: rgba(231, 92, 5, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(231, 92, 5, 0.15);
}

.c-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #94a3b8;
  font-weight: 600;
}

.c-val {
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
}

a.c-val:hover {
  color: var(--primary);
}

.contact-bottom-trust {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.trust-badge-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 28px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(10px);
  max-width: 620px;
  text-align: left;
}

.trust-badge-box i {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.trust-badge-box strong {
  display: block;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.trust-badge-box p {
  font-size: 0.84rem;
  color: #94a3b8;
  line-height: 1.4;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--text-dark);
  background-color: var(--light);
  outline: none;
  transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(231, 92, 5, 0.15);
}

.privacy-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.main-footer {
  background-color: #05080f;
  color: #94a3b8;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 45px;
  margin-bottom: 60px;
}

.footer-logo .brand-logo-img {
  height: 60px;
  max-width: 250px;
}

.footer-desc {
  font-size: 0.88rem;
  margin-top: 18px;
  line-height: 1.7;
  color: #94a3b8;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 22px;
  font-family: var(--font-heading);
}

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

.footer-links a {
  font-size: 0.92rem;
  color: #94a3b8;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-col p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.footer-col p i {
  color: var(--primary);
  font-size: 1.05rem;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.copyright strong {
  color: #ffffff;
}

/* ==========================================================================
   Floating Mobile Contact & Toast
   ========================================================================== */

.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: none;
}

.floating-btn {
  width: 58px;
  height: 58px;
  background: var(--primary-gradient);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(231, 92, 5, 0.5);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(231, 92, 5, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(231, 92, 5, 0); }
  100% { box-shadow: 0 0 0 0 rgba(231, 92, 5, 0); }
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  font-weight: 600;
  font-size: 0.94rem;
  z-index: 1000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(231, 92, 5, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1200px) {
  .nav-menu {
    gap: 6px;
  }

  .nav-link {
    font-size: 0.88rem;
    padding: 6px 10px;
  }

  .footer-top-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .hide-mobile {
    display: none !important;
  }

  .floating-contact {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 30px;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-150%);
    transition: transform 0.35s ease-in-out;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .features-grid,
  .services-grid,
  .process-steps,
  .reviews-grid,
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .brand-logo-img {
    height: 44px;
    max-width: 175px;
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid,
  .levels-grid,
  .services-grid,
  .process-steps,
  .reviews-grid,
  .gallery-grid,
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .request-form-card {
    padding: 32px 20px;
  }

  .radio-cards {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom-row {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .ba-slider-container {
    height: 360px;
  }

  .calc-controls,
  .calc-result-box,
  .contact-form-box {
    padding: 32px 22px;
  }
}
