/* ===== LARSSON ELEVATOR - Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-light: #ff1a1a;
  --dark: #1a1a1a;
  --dark2: #2d2d2d;
  --gray: #555555;
  --light-gray: #f5f7fa;
  --border: #e0e0e0;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 40px rgba(204,0,0,0.15);
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fdfdfd;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.navbar.scrolled {
  background: #fdfdfd;
  height: 65px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 4px;
  transition: var(--transition);
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--red);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  padding: 10px 20px !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,100 100,0 100,100" fill="%23CC0000" opacity="0.05"/></svg>') no-repeat right bottom;
  background-size: 60%;
}

.hero-image-container {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  overflow: hidden;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; 
  opacity: 0.35;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: #f0f8ff00 !important;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 80px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 3px;
  transition: var(--transition);
  display: inline-block;
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,0,0,0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 3px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--red);
  display: flex;
  z-index: 3;
}

.stat-item {
  flex: 1;
  padding: 22px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 90px 0;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--red);
}

.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.product-card-body {
  padding: 24px;
}

.product-card-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-card-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark);
}

.product-card-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 18px;
}

.product-card-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.product-card-link:hover {
  gap: 10px;
}

.product-card-link::after {
  content: '→';
}

/* ===== WHY CHOOSE US ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 36px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-item:hover::before {
  transform: scaleX(1);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
}

.feature-item h4 {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 130px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--red);
  opacity: 0.08;
  border-radius: 50%;
}

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

.page-hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  color: white;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

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

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

.breadcrumb .sep { color: var(--red); }

.breadcrumb .current { color: white; }

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-text h2 span {
  color: var(--red);
}

.about-text p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

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

.highlight-icon {
  width: 36px;
  height: 36px;
  background: rgba(204,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.highlight-item h5 {
  font-size: 13px;
  margin-bottom: 2px;
  color: var(--dark);
}

.highlight-item p {
  font-size: 12px !important;
  margin-bottom: 0 !important;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--red);
  color: white;
  padding: 20px 24px;
  border-radius: 6px;
  text-align: center;
}

.about-image-badge .num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
}

.about-image-badge .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-top: 4px;
}

/* ===== PRODUCT BASKET ===== */
.basket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.basket-card {
  background: white;
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--red);
}

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

.basket-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--dark);
}

.basket-subtypes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.basket-subtypes li {
  font-size: 13px;
  color: var(--gray);
  padding: 8px 12px;
  background: var(--light-gray);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.basket-subtypes li::before {
  content: '▸';
  color: var(--red);
  font-size: 12px;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}

.product-section:last-child { border-bottom: none; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-layout.reverse {
  direction: rtl;
}

.product-layout.reverse > * {
  direction: ltr;
}

.product-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-info h2 {
  font-size: 30px;
  color: var(--dark);
  margin-bottom: 16px;
}

.product-info h2 span {
  color: var(--red);
}

.product-info p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 13px;
}

.specs-table th {
  background: var(--dark);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.specs-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
}

.specs-table tr:nth-child(even) td {
  background: var(--light-gray);
}

.specs-table tr:first-child th:first-child { border-radius: 4px 0 0 0; }
.specs-table tr:first-child th:last-child { border-radius: 0 4px 0 0; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.feature-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== CABINS PAGE ===== */
.cabin-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}

.cabin-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.cabin-gallery img {
  width: 100%;
  border-radius: 6px;
  transition: var(--transition);
  cursor: zoom-in;
  height: 220px;
  object-fit: cover;
  object-position: top;
}

.cabin-gallery img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.cabin-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.cabin-spec-item {
  background: var(--light-gray);
  border-radius: 6px;
  padding: 16px 20px;
  border-left: 3px solid var(--red);
}

.cabin-spec-item h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.cabin-spec-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== FEATURES TABLE ===== */
.features-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.features-table thead {
  background: var(--dark);
  color: white;
}

.features-table th {
  padding: 14px 18px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
}

.features-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  vertical-align: top;
}

.features-table tr:nth-child(even) td {
  background: var(--light-gray);
}

.features-table .feature-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--dark);
  min-width: 200px;
}

.badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 11px;
  color: white;
}

/* ===== TECHNOLOGY CARDS ===== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tech-card {
  background: white;
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid var(--red);
}

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

.tech-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(204,0,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.tech-card h4 {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--dark);
}

.tech-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 28px;
}

.contact-card {
  background: white;
  border-radius: 8px;
  padding: 24px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-left: 3px solid var(--red);
  transition: var(--transition);
}

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

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-card h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.contact-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.contact-card a {
  color: var(--red);
  font-weight: 600;
}

.contact-form {
  background: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--dark);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

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

/* ===== BRANCHES ===== */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.branch-card {
  background: white;
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid var(--red);
}

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

.branch-city {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--red);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.branch-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.branch-card a {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

/* ===== ISO BADGE ===== */
.iso-section {
  background: var(--dark);
  padding: 50px 0;
  text-align: center;
}

.iso-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.iso-badge {
  background: white;
  border-radius: 8px;
  padding: 16px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
}

.iso-badge span {
  color: var(--red);
}

.iso-text h3 {
  font-size: 24px;
  color: white;
  margin-bottom: 8px;
}

.iso-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: clamp(24px, 4vw, 40px);
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: white;
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 3px;
  transition: var(--transition);
  display: inline-block;
  position: relative;
  z-index: 1;
}

.btn-white:hover {
  background: var(--dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 48px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a::before {
  content: '▸';
  color: var(--red);
  font-size: 11px;
}

.footer-links li a:hover {
  color: var(--red);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item .icon {
  color: var(--red);
  font-size: 14px;
  margin-top: 2px;
}

.footer-contact-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--red);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: var(--red);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(204,0,0,0.4);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .basket-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 75px; left: 0; right: 0; background: var(--dark); padding: 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-content { padding: 100px 24px 80px; }
  .hero h1 { font-size: 32px; }
  .hero-image-container { opacity: 0.2; width: 100%; }

  .hero-stats { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .product-layout.reverse { direction: ltr; }
  .cabin-gallery { grid-template-columns: repeat(2, 1fr); }
  .branches-grid { grid-template-columns: 1fr; }
  .basket-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .about-highlights { grid-template-columns: 1fr; }
  .cabin-specs { grid-template-columns: 1fr; }
}
