:root {
  --color-primary: #E07E38;
  --color-primary-dark: #D16B28;
  --color-primary-light: #F19256;
  --color-amber-light: #FFEE85;
  --color-amber-glow: #FFD966;
  --color-gray-900: #2C2C2C;
  --color-gray-700: #4A4A4A;
  --color-gray-600: #666666;
  --color-gray-500: #8A8A8A;
  --color-gray-400: #B0B0B0;
  --color-white: #FFFFFF;
  --color-cream: #FFF8F0;
  --color-warm-bg: #FFF5E6;
  --color-sand: #F5EDE0;
  --color-success: #10B981;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
  --radius-sm: 6px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;

  --font-heading: 'Poppins', 'Montserrat', Arial, sans-serif;
  --font-body: 'Inter', 'Roboto', Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gray-900);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-gray-900);
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.005em;
}

h3 {
  font-size: 1.375rem;
}

p {
  margin-bottom: var(--space-2);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 100;
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(224, 126, 56, 0.15);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-bottom-color: rgba(224, 126, 56, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
}

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

.logo-icon {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-gray-900);
  letter-spacing: 0.02em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gray-900);
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 50px;
  background: transparent;
}

.phone-link:hover {
  color: var(--color-primary);
  background: rgba(224, 126, 56, 0.08);
  transform: translateY(-1px);
}

.phone-number {
  display: none;
}

.icon-badge {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.phone-link:hover .icon-badge {
  background: var(--color-primary-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(224, 126, 56, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 126, 56, 0.4);
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
}

.btn-lg svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-outline {
  background: transparent;
  color: var(--color-gray-900);
  border: 2px solid var(--color-gray-900);
}

.btn-outline:hover {
  background: var(--color-gray-900);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #2C2C2C 100%);
  padding: 140px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(224, 126, 56, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 238, 133, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  position: relative;
  z-index: 2;
}

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

.hero-left {
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(224, 126, 56, 0.12);
  backdrop-filter: blur(10px);
  color: var(--color-amber-light);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
  border: 1px solid rgba(224, 126, 56, 0.3);
}

.hero-title {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.hero-brand {
  display: block;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-amber-glow) 50%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 8px;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-trust-item svg {
  color: var(--color-success);
  flex-shrink: 0;
}

.hero-right {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
}

.hero-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
}

.hero-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(224, 126, 56, 0.4);
}

.hero-image-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.trust-section {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 100%);
  padding: var(--space-6) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.trust-card {
  background: var(--color-white);
  padding: var(--space-4);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(224, 126, 56, 0.1);
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224, 126, 56, 0.3);
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.trust-label {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  font-weight: 600;
}

section {
  padding: var(--space-8) 0;
  position: relative;
}

.section-header {
  margin-bottom: var(--space-6);
  text-align: center;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-2);
  font-weight: 800;
  color: var(--color-gray-900);
}

.divider-orange {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-amber-glow) 50%, var(--color-primary-dark) 100%);
  border-radius: 3px;
  margin: 0 auto var(--space-3);
  box-shadow: 0 4px 12px rgba(224, 126, 56, 0.4);
}

.section-intro {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  margin: 0 auto var(--space-4);
  max-width: 700px;
  text-align: center;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-6);
}

.cta-text {
  font-size: 1.125rem;
  color: var(--color-gray-700);
  margin-bottom: var(--space-3);
  font-weight: 500;
}

.products {
  background: var(--color-sand);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-4);
}

.product-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(224, 126, 56, 0.1);
  position: relative;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(224, 126, 56, 0.3);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(224, 126, 56, 0.3);
}

.product-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-content {
  padding: var(--space-4);
}

.product-content h3 {
  color: var(--color-gray-900);
  margin-bottom: var(--space-1);
  font-size: 1.25rem;
  font-weight: 700;
}

.product-content p {
  color: var(--color-gray-600);
  font-size: 0.9375rem;
  margin-bottom: var(--space-3);
  line-height: 1.6;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
}

.why-us {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 100%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-4);
}

.why-card {
  background: var(--color-white);
  padding: var(--space-4);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(224, 126, 56, 0.1);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(224, 126, 56, 0.3);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-3);
  background: linear-gradient(135deg, rgba(224, 126, 56, 0.1), rgba(255, 238, 133, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
  color: var(--color-gray-900);
}

.why-card p {
  color: var(--color-gray-600);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.process {
  background: var(--color-sand);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--space-4);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  background: var(--color-white);
  padding: var(--space-4);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(224, 126, 56, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224, 126, 56, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-3);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(224, 126, 56, 0.3);
}

.step-content h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-1);
  color: var(--color-gray-900);
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  margin-bottom: 0;
  line-height: 1.5;
}

.process-arrow {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-warm-bg) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-4);
}

.testimonial-card {
  background: var(--color-white);
  padding: var(--space-4);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(224, 126, 56, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224, 126, 56, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-2);
  color: var(--color-primary);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray-700);
  margin-bottom: var(--space-3);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: var(--color-gray-900);
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--color-gray-500);
  font-size: 0.875rem;
}

.about {
  background: var(--color-sand);
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.lead {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-gray-900);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.highlight-box {
  background: linear-gradient(135deg, #FFF9E8 0%, #FFF5E0 100%);
  border-left: 5px solid var(--color-primary);
  padding: var(--space-4);
  margin-top: var(--space-4);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(224, 126, 56, 0.15);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.highlight-box svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.nb-prefix {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 8px;
}

.nb-text {
  color: var(--color-gray-700);
  display: block;
}

.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 550px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.about-stats {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  display: flex;
  gap: var(--space-2);
  z-index: 2;
}

.stat-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: var(--space-3);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--color-gray-700);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faq {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-4);
}

.faq-item {
  background: var(--color-white);
  padding: var(--space-4);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(224, 126, 56, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(224, 126, 56, 0.3);
}

.faq-question {
  font-size: 1.125rem;
  color: var(--color-gray-900);
  margin-bottom: var(--space-2);
  font-weight: 700;
}

.faq-answer {
  color: var(--color-gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.contact {
  background: var(--color-sand);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.contact-cta-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-4);
  border-radius: 16px;
  margin-bottom: var(--space-4);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(224, 126, 56, 0.3);
}

.contact-cta-box h3 {
  color: var(--color-white);
  margin-bottom: var(--space-2);
  font-size: 1.5rem;
}

.contact-cta-box p {
  margin-bottom: var(--space-3);
  opacity: 0.95;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.contact-buttons .btn {
  width: 100%;
  justify-content: center;
}

.contact-buttons .btn-primary {
  background: var(--color-white);
  color: var(--color-primary);
}

.contact-buttons .btn-primary:hover {
  background: var(--color-cream);
}

.contact-buttons .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}

.contact-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

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

.contact-sub {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

.contact-link {
  color: var(--color-gray-900);
  font-weight: 500;
}

.contact-link:hover {
  color: var(--color-primary);
}

.social-media {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid #E5E5E5;
}

.social-media h4 {
  font-size: 1rem;
  margin-bottom: var(--space-2);
}

.social-links {
  display: flex;
  gap: var(--space-2);
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 126, 56, 0.3);
}

.contact-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  width: 100%;
  border: 2px dashed rgba(224, 126, 56, 0.3);
  box-shadow: var(--shadow-sm);
}

.map-placeholder p {
  margin-top: var(--space-2);
  color: var(--color-gray-900);
}

.text-small {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.gallery {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-4);
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(224, 126, 56, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.footer {
  background: linear-gradient(180deg, #1A1A1A 0%, var(--color-gray-900) 100%);
  color: var(--color-white);
  padding: var(--space-8) 0 var(--space-4);
  border-top: 4px solid var(--color-primary);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer .logo-icon {
  color: var(--color-primary);
}

.footer .logo-text {
  color: var(--color-white);
}

.footer-tagline {
  color: var(--color-gray-500);
  font-size: 0.875rem;
  margin-top: var(--space-2);
  max-width: 400px;
  line-height: 1.6;
}

.footer-info {
  text-align: right;
}

.footer-info p {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  margin-bottom: var(--space-1);
}

@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .process-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 var(--space-6);
  }

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

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

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

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

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

  section {
    padding: var(--space-6) 0;
  }
}

@media (min-width: 640px) {
  .phone-number {
    display: inline;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-2);
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }

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

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

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