/* ===== CSS Variables ===== */
:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #e0f2fe;
  --secondary: #0f766e;
  --accent: #06b6d4;
  --dark: #0f172a;
  --gray: #64748b;
  --gray-light: #f1f5f9;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --radius: 12px;
  --transition: 0.3s ease;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

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

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

ul {
  list-style: none;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: #0d9488;
  transform: translateY(-2px);
}

/* ===== Header & Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #f8f9f5;
  backdrop-filter: none;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
  background: #f8f9f5;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  background: #f8f9f5;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
  background: #f8f9f5;
  padding: 0;
}

.logo-img {
  width: auto;
  height: 64px;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  flex-shrink: 0;
  background: #f8f9f5;
  display: block;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== Hero Section ===== */
.hero {
  padding-top: 80px;
  background: var(--white);
  line-height: 0;
  overflow: hidden;
}

.hero-banner {
  display: block;
  width: 100%;
  height: auto;
  transform: scaleY(0.85);
  transform-origin: top center;
  margin-bottom: -8%;
}

/* ===== Page Header (inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, #0c4a6e, #0369a1);
  padding: 6.5rem 0 2.25rem;
  text-align: center;
  color: var(--white);
}

.page-banner {
  padding-top: 80px;
  background: var(--white);
  line-height: 0;
  overflow: visible;
}

.page-banner-img {
  display: block;
  width: 100%;
  height: auto;
  transform: scaleY(0.95);
  transform-origin: top center;
  margin-bottom: -2.5%;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== Section Styles ===== */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-header .badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.products-section {
  padding: 2.25rem 0 3.5rem;
}

.products-section .section-header {
  margin-bottom: 1.5rem;
}

.products-section .section-header .badge {
  margin-bottom: 0.45rem;
}

.products-section .section-header h2 {
  margin-bottom: 0.4rem;
  font-size: 2rem;
}

.products-section .section-header p {
  font-size: 0.98rem;
}

.testimonials-section {
  padding: 2.5rem 0 3rem;
}

.testimonials-section .section-header {
  margin-bottom: 1.5rem;
}

.testimonials-section .section-header .badge {
  margin-bottom: 0.45rem;
}

.testimonials-section .section-header h2 {
  margin-bottom: 0.4rem;
}

.testimonials-section .section-header p {
  font-size: 0.98rem;
}

.services-preview-section {
  padding: 2.5rem 0 3rem;
}

.services-preview-section .section-header {
  margin-bottom: 1.5rem;
}

.services-preview-section .section-header .badge {
  margin-bottom: 0.45rem;
}

.services-preview-section .section-header h2 {
  margin-bottom: 0.4rem;
}

.services-preview-section .section-header p {
  font-size: 0.98rem;
}

.features-section {
  padding: 2.5rem 0 3rem;
}

.features-section .section-header {
  margin-bottom: 1.5rem;
}

.features-section .section-header .badge {
  margin-bottom: 0.45rem;
}

.features-section .section-header h2 {
  margin-bottom: 0.4rem;
}

.features-section .section-header p {
  font-size: 0.98rem;
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ===== Products Grid ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), #bae6fd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.product-info p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.product-features {
  margin-bottom: 1.25rem;
}

.product-features li {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* ===== Product Showcase (alternating layout) ===== */
.product-showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 920px;
  margin: 0 auto;
}

.product-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem;
  transition: box-shadow var(--transition);
}

.product-block:hover {
  box-shadow: var(--shadow-lg);
}

.product-block.reverse {
  grid-template-columns: 1fr 280px;
}

.product-block.reverse .product-block-content {
  order: 1;
  text-align: left;
  align-items: flex-start;
}

.product-block.reverse .product-block-image {
  order: 2;
}

.product-block-image {
  width: 280px;
  height: 280px;
  background: #f8fafc;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
}

.product-block-image img {
  width: 230px;
  height: 230px;
  object-fit: contain;
}

.product-block-content {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.product-block-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.product-block-content p {
  color: var(--gray);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 480px;
}

.product-block-content p {
  margin-left: auto;
}

.product-block.reverse .product-block-content p {
  margin-left: 0;
  margin-right: auto;
}

.product-block .btn {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

/* ===== Items List (Products & Services) ===== */
.items-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.item-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-left: 4px solid var(--primary);
  text-decoration: none;
  color: inherit;
}

.item-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--secondary);
}

.item-row .item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.item-row .item-name {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

.item-row .item-action {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary);
  border-radius: 50px;
  transition: all var(--transition);
}

.item-row:hover .item-action {
  background: var(--primary);
  color: var(--white);
}

.item-row .item-action:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.items-list-count {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: -1.5rem;
}

@media (max-width: 768px) {
  .item-row {
    padding: 1rem 1.25rem;
    gap: 1rem;
  }

  .item-row .item-name {
    font-size: 0.95rem;
  }

  .item-row .item-action {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .item-row .item-action {
    display: none;
  }
}

/* ===== About Section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  background: linear-gradient(135deg, var(--primary-light), #bae6fd);
  border-radius: var(--radius);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.about-list {
  margin: 1.5rem 0;
}

.about-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--gray);
}

.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ===== Team Grid ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
  color: var(--white);
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-card p {
  color: var(--gray);
  font-size: 0.85rem;
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  background: linear-gradient(135deg, #0c4a6e, #0369a1);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-item .icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--white);
}

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

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

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

.form-success {
  display: none;
  background: #ecfdf5;
  color: #065f46;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.form-success.show {
  display: block;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, #0c4a6e, #0369a1);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ===== Testimonials Carousel ===== */
.testimonial-carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 3rem;
}

.testimonial-track {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  display: none;
  animation: fadeSlide 0.45s ease;
}

.testimonial-slide.active {
  display: block;
}

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

.testimonial-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial-card .stars {
  color: #fbbf24;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-dark);
}

.author-info {
  text-align: left;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--gray);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--primary-dark);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.carousel-dots button.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ===== Process Steps ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
  background: transparent;
  height: auto;
}

.footer-logo-img {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  background: transparent;
  image-rendering: auto;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1.1rem;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* ===== Floating WhatsApp & Call ===== */
.float-contact {
  position: fixed;
  right: 18px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.float-whatsapp {
  background: #25d366;
}

.float-call {
  display: none;
  background: #0284c7;
}

@media (max-width: 768px) {
  .float-call {
    display: flex;
  }

  .float-contact {
    right: 14px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

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

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

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #f8f9f5;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    opacity: 0;
    transition: all var(--transition);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-cta {
    display: block;
  }

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

  .product-block,
  .product-block.reverse {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding: 1.25rem;
    justify-items: center;
  }

  .product-block.reverse .product-block-content,
  .product-block.reverse .product-block-image {
    order: unset;
  }

  .product-block-content,
  .product-block.reverse .product-block-content {
    text-align: center;
    align-items: center;
  }

  .product-block-content p,
  .product-block.reverse .product-block-content p {
    margin-left: 0;
    margin-right: 0;
  }

  .product-block-image {
    width: 220px;
    height: 220px;
  }

  .product-block-image img {
    width: 185px;
    height: 185px;
  }

  .product-block-content p {
    max-width: 100%;
  }

  .product-block-content h3 {
    font-size: 1.45rem;
  }

  .testimonial-carousel {
    padding: 0 2.5rem;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
  }

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

  .features-grid,
  .products-grid,
  .team-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-logo-img {
    margin: 0 auto;
    max-width: 240px;
    max-height: 110px;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .footer-col ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col ul li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }

  .footer-col ul li a {
    font-size: 1.05rem;
  }

  .footer-bottom {
    text-align: center;
    font-size: 0.95rem;
  }

  .logo-img {
    height: 56px;
    max-height: 56px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

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

@media (max-width: 480px) {
  .logo-img {
    height: 52px;
    max-height: 52px;
  }

  .footer-logo-img {
    max-width: 220px;
    max-height: 100px;
  }

  .footer-brand p,
  .footer-col ul li,
  .footer-col ul li a {
    font-size: 1.02rem;
  }
}
