/* ============================================
   MEDEAST PTE. LTD. — Clean Medical Theme
   Primary: #0047AB (Royal Blue)
   Accent: #00C6D7 (Teal/Cyan)
   Background: #FFFFFF / #F5F8FC
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --blue-900: #001D3D;
  --blue-800: #002D6E;
  --blue-700: #003C8F;
  --blue-600: #0047AB;
  --blue-500: #1A6FFF;
  --blue-400: #4D94FF;
  --blue-300: #80B8FF;
  --blue-200: #B3D4FF;
  --blue-100: #E6F0FF;
  --blue-50: #F0F6FF;
  --cyan-500: #00C6D7;
  --cyan-400: #22D3EE;
  --cyan-300: #67E8F9;
  --cyan-100: #CFFAFE;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --white: #FFFFFF;
  --bg-primary: #FFFFFF;
  --bg-section: #F5F8FC;
  --bg-card: #FFFFFF;
  --text-heading: #001D3D;
  --text-body: #4B5563;
  --text-muted: #9CA3AF;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
  --shadow-blue: 0 8px 30px rgba(0,71,171,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ============== SCROLL ============== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--blue-400); border-radius: 3px; }

/* ============== LAYOUT ============== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-100);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============== REVEAL ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ============== NAVBAR ============== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255,255,255,0);
  transition: all 0.35s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo .logo-icon {
  height: 42px; width: auto;
}
.nav-logo .logo-text {
  font-size: 1.45rem; font-weight: 800; letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  display: block; padding: 8px 18px;
  color: var(--gray-600); text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  border-radius: var(--radius-xs);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--blue-600); background: var(--blue-50); }
.nav-links a.active { color: var(--blue-600); font-weight: 600; }
.nav-cta {
  background: var(--blue-600) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-blue);
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--blue-700) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 35px rgba(0,71,171,0.25) !important;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none; z-index: 1001;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--gray-700);
  border-radius: 2px; transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--white) 0%, var(--blue-50) 40%, var(--cyan-100) 100%);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.4;
}
.hero-bg-pattern img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-content { padding-top: var(--nav-height); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; color: var(--blue-600);
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.hero-badge .pulse {
  width: 8px; height: 8px;
  background: var(--cyan-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,198,215,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(0,198,215,0); }
}
.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800; line-height: 1.12;
  color: var(--text-heading);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 1.1rem; color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 36px; max-width: 480px;
}
.hero-buttons { display: flex; gap: 14px; margin-bottom: 48px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  background: var(--blue-600); color: var(--white);
  text-decoration: none; font-size: 0.95rem; font-weight: 600;
  border-radius: 50px; border: none; cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition: all 0.3s ease;
}
.btn-primary:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(0,71,171,0.25); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  background: var(--white); color: var(--blue-600);
  text-decoration: none; font-size: 0.95rem; font-weight: 600;
  border-radius: 50px; border: 1.5px solid var(--blue-200);
  cursor: pointer; transition: all 0.3s ease;
}
.btn-outline:hover { border-color: var(--blue-600); background: var(--blue-50); transform: translateY(-2px); }
.btn-outline svg { width: 18px; height: 18px; }

.hero-stats {
  display: flex; gap: 40px;
}
.hero-stat .number {
  font-size: 2.25rem; font-weight: 800; color: var(--blue-600);
  line-height: 1; margin-bottom: 4px;
}
.hero-stat .label {
  font-size: 0.75rem; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500;
}

/* Hero carousel */
.hero-visual {
  position: relative; padding-top: var(--nav-height);
}
.hero-carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}
.hero-carousel-track {
  display: flex; height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-carousel-slide {
  min-width: 100%; height: 100%;
}
.hero-carousel-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-carousel-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.hero-carousel-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer; transition: all 0.3s ease;
  border: none; padding: 0;
}
.hero-carousel-dots .dot.active {
  background: var(--white);
  width: 24px; border-radius: 4px;
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  z-index: 5;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-float-card.card-1 { bottom: -20px; left: -20px; }
.hero-float-card.card-2 { top: 20px; right: -20px; animation-delay: -2s; }
.hero-float-card .fc-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-100); border-radius: var(--radius-xs);
}
.hero-float-card .fc-icon svg { width: 22px; height: 22px; color: var(--blue-600); }
.hero-float-card .fc-text .fc-num { font-size: 1.15rem; font-weight: 800; color: var(--text-heading); }
.hero-float-card .fc-text .fc-label { font-size: 0.7rem; color: var(--gray-500); }

/* ============== ABOUT ============== */
.about { background: var(--bg-primary); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-img-group { position: relative; }
.about-img-main {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -30px; right: -30px;
  width: 220px; border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 160px; object-fit: cover; }
.about-content h2 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--text-heading);
  line-height: 1.2; margin-bottom: 20px;
}
.about-content h2 .highlight {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-content > p {
  color: var(--text-body); margin-bottom: 14px;
  font-size: 0.98rem; line-height: 1.85;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px;
}
.about-feat {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: var(--bg-section);
  border-radius: var(--radius-sm); border: 1px solid var(--border-light);
  transition: var(--transition);
}
.about-feat:hover { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.about-feat .af-icon {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: var(--blue-100); border-radius: var(--radius-xs); flex-shrink: 0;
}
.about-feat .af-icon svg { width: 18px; height: 18px; color: var(--blue-600); }
.about-feat span { font-size: 0.85rem; font-weight: 600; color: var(--text-heading); }

/* ============== PRODUCTS ============== */
.products { background: var(--bg-section); }
.product-categories {
  display: flex; flex-direction: column; gap: 20px;
}
.product-category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}
.pc-header {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 20px;
}
.pc-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-100), var(--cyan-100));
  border-radius: 14px;
  transition: var(--transition);
}
.product-category-card:hover .pc-icon {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
}
.pc-icon svg {
  width: 24px; height: 24px; color: var(--blue-600);
  transition: color 0.3s ease;
}
.product-category-card:hover .pc-icon svg { color: var(--white); }
.pc-header h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--text-heading);
  margin-bottom: 6px;
}
.pc-desc {
  font-size: 0.88rem; color: var(--text-body); line-height: 1.7;
}
.pc-products {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.pc-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--blue-600);
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}
.pc-tag:hover {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}

/* ============== SERVICES ============== */
.services { background: var(--bg-primary); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.service-card {
  text-align: center; padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all 0.35s ease;
}
.service-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-100), var(--cyan-100));
  border-radius: 16px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
}
.service-icon svg {
  width: 28px; height: 28px; color: var(--blue-600);
  transition: color 0.3s ease;
}
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 {
  font-size: 1rem; font-weight: 700; color: var(--text-heading);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.85rem; color: var(--text-body); line-height: 1.7; }

/* ============== GALLERY ============== */
.gallery { background: var(--bg-section); }

/* Photo Carousel */
.gallery-carousel-wrapper {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
}
.gallery-carousel-track {
  display: flex; gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: grab; user-select: none;
}
.gallery-carousel-track:active { cursor: grabbing; }
.gallery-slide {
  min-width: calc(33.333% - 11px);
  border-radius: var(--radius-sm);
  overflow: hidden; position: relative;
  height: 280px;
  flex-shrink: 0;
}
.gallery-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-slide:hover img { transform: scale(1.07); }
.gallery-slide .g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,29,61,0.75) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-slide:hover .g-overlay { opacity: 1; }
.gallery-slide .g-overlay span {
  color: var(--white); font-size: 0.82rem; font-weight: 600;
}
.gallery-nav {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; margin-top: 28px;
}
.gallery-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50%; cursor: pointer;
  transition: all 0.3s ease;
  color: var(--gray-600);
}
.gallery-btn:hover {
  background: var(--blue-600); color: var(--white); border-color: var(--blue-600);
}
.gallery-btn svg { width: 18px; height: 18px; }
.gallery-dots {
  display: flex; gap: 6px;
}
.gallery-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-300); border: none; padding: 0;
  cursor: pointer; transition: all 0.3s ease;
}
.gallery-dots .dot.active {
  background: var(--blue-600); width: 24px; border-radius: 4px;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.35s ease;
  backdrop-filter: blur(12px);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; color: var(--white);
  font-size: 1.25rem; cursor: pointer;
  transition: all 0.3s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.lightbox-caption {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.88rem; text-align: center;
}

/* ============== CONTACT ============== */
.contact { background: var(--bg-primary); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px;
}
.contact-info h2 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--text-heading);
  line-height: 1.2; margin-bottom: 16px;
}
.contact-info h2 .highlight {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.contact-info > p {
  color: var(--text-body); font-size: 1rem; line-height: 1.8; margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-item .ci-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-100); border-radius: var(--radius-xs);
  flex-shrink: 0;
}
.contact-item .ci-icon svg { width: 20px; height: 20px; color: var(--blue-600); }
.contact-item .ci-text h4 {
  font-size: 0.82rem; font-weight: 700; color: var(--text-heading);
  margin-bottom: 2px;
}
.contact-item .ci-text p,
.contact-item .ci-text a {
  font-size: 0.88rem; color: var(--text-body);
  text-decoration: none; transition: color 0.3s ease;
}
.contact-item .ci-text a:hover { color: var(--blue-600); }

.contact-form-card {
  background: var(--bg-section); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.75rem; font-weight: 600; color: var(--gray-600);
  text-transform: uppercase; letter-spacing: 0.8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--text-heading);
  font-size: 0.9rem; font-family: inherit;
  transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(0,71,171,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  padding: 14px 32px;
  background: var(--blue-600); color: var(--white);
  font-size: 0.92rem; font-weight: 700; border: none;
  border-radius: 50px; cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-blue);
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0,71,171,0.25);
}
.form-submit svg { width: 16px; height: 16px; }

/* ============== FOOTER ============== */
.footer {
  background: var(--gray-900); color: var(--gray-400);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand .nav-logo .logo-text {
  background: linear-gradient(135deg, var(--blue-300), var(--cyan-400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; color: var(--gray-400);
  text-decoration: none; font-size: 0.85rem;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--blue-600); border-color: var(--blue-600);
  color: var(--white); transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--white); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--gray-400); text-decoration: none;
  font-size: 0.88rem; transition: all 0.3s ease;
}
.footer-col a:hover { color: var(--cyan-400); padding-left: 3px; }
.footer-newsletter p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 10px 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; color: var(--white);
  font-size: 0.82rem; outline: none;
}
.newsletter-form input::placeholder { color: var(--gray-500); }
.newsletter-form input:focus { border-color: var(--blue-400); }
.newsletter-form button {
  padding: 10px 22px; background: var(--blue-600); color: var(--white);
  border: none; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s ease; white-space: nowrap;
}
.newsletter-form button:hover { background: var(--blue-500); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--gray-500);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--gray-500); text-decoration: none; }
.footer-legal a:hover { color: var(--cyan-400); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-slide { min-width: calc(50% - 8px); }
}
@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 300px; height: 100vh;
    background: var(--white);
    flex-direction: column; padding: 80px 24px 24px; gap: 4px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 0.95rem; padding: 12px 16px; width: 100%; }
  .hamburger { display: flex; }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .about-features { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-slide { min-width: calc(100% - 0px); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .section-padding { padding: 72px 0; }
  .newsletter-form { flex-direction: column; }
}
