@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
  --primary: #2d3436;
  --secondary: #636e72;
  --accent: #00b894;
  --accent-dark: #00a184;
  --accent-light: #55efc4;
  --cream: #fef9f3;
  --sand: #f5ebe0;
  --warm-white: #fdfcfb;
  --charcoal: #1e272e;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--primary);
  background: var(--warm-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  color: var(--secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-header p {
  max-width: 550px;
  margin: 20px auto 0;
  font-size: 14px;
}

.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1160px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 60px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.header.scrolled {
  top: 10px;
  box-shadow: var(--shadow-lg);
}

.header.hidden {
  transform: translateX(-50%) translateY(-150%);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--charcoal);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--cream) 0%,
    var(--sand) 50%,
    var(--warm-white) 100%
  );
  overflow: hidden;
  padding-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(0, 184, 148, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--warm-white), transparent);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  padding-right: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 184, 148, 0.1);
  color: var(--accent-dark);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.hero-badge i {
  font-size: 14px;
}

.hero-text h1 {
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text h1 span {
  color: var(--accent);
  position: relative;
}

.hero-text > p {
  font-size: 16px;
  margin-bottom: 35px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 184, 148, 0.1), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: #fff;
  padding: 20px 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
}

.hero-floating-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.hero-floating-text {
  width: 50%;
}

.hero-floating-text h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.hero-floating-text p {
  font-size: 12px;
  margin: 0;
}

.features {
  background: var(--warm-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 40px 30px;
  text-align: center;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--sand), var(--cream));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card i {
  font-size: 1.8rem;
  color: var(--accent);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.feature-card p {
  font-size: 14px;
  margin-bottom: 0;
}

.about {
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 184, 148, 0.05), transparent);
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text > p {
  font-size: 14px;
}

.about-list {
  margin: 25px 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--primary);
}

.about-list i {
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.services {
  background: var(--warm-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  padding: 30px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid transparent;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 13px;
  margin-bottom: 0;
}

.products {
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.1));
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.product-info p {
  font-size: 13px;
  margin-bottom: 15px;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-heading);
}

.cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--primary) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta h2 {
  margin-bottom: 15px;
  color: #fff;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 30px;
  font-size: 14px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info > p {
  margin-bottom: 30px;
  font-size: 14px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: var(--sand);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.6;
}

.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 14px;
  border: 2px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--warm-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 12px;
  color: var(--secondary);
  margin-bottom: 0;
  line-height: 1.5;
}

.checkbox-group a {
  color: var(--accent);
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.map-container {
  margin-top: 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: var(--charcoal);
  color: #fff;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-logo span {
  color: var(--accent);
}

.footer-nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
  color: var(--accent);
}

.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  text-align: center;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--warm-white), transparent);
}

.page-header h1 {
  margin-bottom: 15px;
}

.page-header > .container > p {
  font-size: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 13px;
}

.breadcrumb a {
  color: var(--secondary);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--accent);
}

.page-content {
  padding: 60px 0;
}

.content-block {
  margin-bottom: 35px;
}

.content-block h2 {
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.content-block h3 {
  margin: 25px 0 12px;
  font-size: 1.2rem;
}

.content-block p {
  font-size: 14px;
}

.content-block ul {
  list-style: disc;
  padding-left: 25px;
  margin: 15px 0;
}

.content-block li {
  color: var(--secondary);
  font-size: 14px;
  margin-bottom: 8px;
}

.thank-you-page,
.error-page {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
}

.thank-you-content,
.error-content {
  max-width: 500px;
}

.thank-you-content i,
.error-content i {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 25px;
}

.thank-you-content h1,
.error-content h1 {
  margin-bottom: 20px;
}

.thank-you-content p,
.error-content p {
  margin-bottom: 30px;
  font-size: 15px;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: #fff;
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

.cookie-popup.show {
  display: block;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  font-size: 13px;
  margin: 0;
  flex: 1;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-content a {
  color: var(--accent);
}

.cookie-btns {
  display: flex;
  gap: 12px;
}

.cookie-btns button {
  padding: 10px 24px;
  font-size: 12px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  transition: var(--transition);
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-accept:hover {
  background: var(--accent-dark);
}

.cookie-decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.cookie-decline:hover {
  border-color: #fff !important;
}

.relocation-intro {
  background: var(--sand);
}

.relocation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.relocation-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.relocation-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.relocation-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.relocation-card h3 {
  margin-bottom: 12px;
}

.relocation-card p {
  font-size: 14px;
  margin: 0;
}

.process-steps {
  counter-reset: step;
}

.step {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--sand);
}

.step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.step-content h3 {
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  margin: 0;
}

.services-detail {
  background: var(--sand);
}

.service-detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-md);
  margin-bottom: 25px;
  box-shadow: var(--shadow-sm);
  align-items: start;
}

.service-detail-card:last-child {
  margin-bottom: 0;
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  border-radius: var(--radius-md);
}

.service-icon i {
  font-size: 2rem;
  color: var(--accent);
}

.service-text h3 {
  margin-bottom: 12px;
}

.service-text p {
  font-size: 14px;
  margin-bottom: 18px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-features span {
  background: var(--sand);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
}

.contact-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--primary) 100%);
  color: #fff;
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.contact-hero h1 {
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card i {
  width: 60px;
  height: 60px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.4rem;
  color: var(--accent);
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 13px;
  margin: 0;
}

.contact-main {
  padding: 80px 0 60px;
  background: var(--warm-white);
}

@media (max-width: 1024px) {
  .header {
    width: calc(100% - 30px);
  }

  .header-inner {
    padding: 10px 20px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text {
    padding-right: 0;
  }

  .hero-text > p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }

  .features-grid,
  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 16px;
  }

  .header-inner {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -20px;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 30px 40px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 1000;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu a {
    display: block;
    padding: 15px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--sand);
  }

  .hero {
    padding-top: 80px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 25px;
  }

  .hero-stat {
    flex: 1 0 40%;
    text-align: center;
  }

  .hero-floating-card {
    display: none;
  }

  .features-grid,
  .services-grid,
  .products-grid,
  .relocation-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-icon {
    margin: 0 auto;
  }

  .service-features {
    justify-content: center;
  }

  .footer-content,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav,
  .footer-links {
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section {
    padding: 50px 0;
  }

  .btn {
    padding: 12px 22px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .product-info {
    padding: 20px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .page-header {
    padding: 120px 0 50px;
  }

  .contact-hero {
    padding: 120px 0 60px;
  }
}

@media (max-width: 360px) {
  .header-inner {
    padding: 10px 12px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .section {
    padding: 40px 0;
  }

  .btn {
    padding: 10px 18px;
    font-size: 11px;
    letter-spacing: 1px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-card i {
    font-size: 1.5rem;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}
