/*
Theme Name: Spancare Pharmaceuticals
Theme URI: https://spancarepharma.com
Author: Spancare Pharmaceuticals
Author URI: https://spancarepharma.com
Description: A professional, clean and SEO-optimized WordPress theme for Spancare Pharmaceuticals - Leading Medical Equipment Exporters. Fully compatible with Elementor Page Builder.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: spancare
Tags: elementor, business, medical, clean, professional, responsive

*/

/* =========================================================
   CSS VARIABLES & ROOT
========================================================= */
:root {
  --primary:       #005f9e;
  --primary-dark:  #004070;
  --primary-light: #e8f4fc;
  --accent:        #00b4d8;
  --accent-hover:  #0096b7;
  --white:         #ffffff;
  --off-white:     #f8fafc;
  --light-gray:    #f1f5f9;
  --mid-gray:      #e2e8f0;
  --text-dark:     #0f172a;
  --text-body:     #334155;
  --text-muted:    #64748b;
  --border:        #e2e8f0;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:     0 4px 16px rgba(0,95,158,.10);
  --shadow-lg:     0 10px 40px rgba(0,95,158,.14);
  --radius-sm:     4px;
  --radius:        8px;
  --radius-lg:     16px;
  --transition:    all 0.25s ease;
  --font-head:     'Montserrat', sans-serif;
  --font-body:     'Open Sans', sans-serif;
  --container:     1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

ul { list-style: none; }

/* =========================================================
   TYPOGRAPHY
========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; }

.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: .5rem;
}

.section-title span { color: var(--primary); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* =========================================================
   LAYOUT
========================================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: .02em;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  color: var(--white);
}

/* =========================================================
   TOP BAR
========================================================= */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  padding: 8px 0;
  font-family: var(--font-body);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-contact { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

.top-bar-contact a {
  color: rgba(255,255,255,.82);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.top-bar-contact a:hover { color: var(--accent); }

.top-bar-social { display: flex; gap: 14px; }
.top-bar-social a {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  transition: var(--transition);
}
.top-bar-social a:hover { color: var(--accent); }

/* =========================================================
   HEADER / NAV
========================================================= */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 28px; height: 28px; fill: white; }

.logo-text { line-height: 1.2; }
.logo-text .logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
  display: block;
}
.logo-text .logo-tagline {
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* NAV */
.primary-nav { display: flex; align-items: center; gap: 4px; }

.primary-nav > li { position: relative; }

.primary-nav > li > a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: .02em;
}

.primary-nav > li > a:hover,
.primary-nav > li.current-menu-item > a {
  color: var(--primary);
  background: var(--primary-light);
}

/* Dropdown */
.primary-nav .has-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px 0;
  z-index: 100;
}

.dropdown-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: .87rem;
  color: var(--text-body);
  font-family: var(--font-body);
  transition: var(--transition);
}
.dropdown-menu li a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #0077b6 100%);
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -60px;
  width: 380px; height: 380px;
  background: rgba(0,180,216,.12);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: .78rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 span { color: var(--accent); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  margin-top: 44px;
}

.hero-stat {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 18px 20px;
  backdrop-filter: blur(4px);
}
.hero-stat .stat-number {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  object-fit: cover;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero placeholder visual */
.hero-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(0,180,216,.15));
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.hero-placeholder svg { width: 80px; height: 80px; fill: rgba(255,255,255,.5); }
.hero-placeholder p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  text-align: center;
  margin: 0;
  font-family: var(--font-head);
}

/* =========================================================
   TRUST STRIP
========================================================= */
.trust-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-dark);
}
.trust-item svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
  flex-shrink: 0;
}

/* =========================================================
   ABOUT SECTION
========================================================= */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.about-img-wrap {
  position: relative;
}

.about-img-box {
  background: linear-gradient(135deg, var(--primary-light), var(--light-gray));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-box svg { width: 100px; height: 100px; fill: var(--primary); opacity: .35; }
.about-img-box img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.about-badge .badge-text { font-size: .78rem; opacity: .85; }

.about-content { padding: 20px 0; }

.about-points {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-point .point-icon {
  width: 28px;
  height: 28px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-point .point-icon svg { width: 14px; height: 14px; fill: var(--primary); }
.about-point p { margin: 0; font-size: .95rem; color: var(--text-body); }

/* =========================================================
   WHY CHOOSE US
========================================================= */
.why-section { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-light), rgba(0,180,216,.1));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 28px; height: 28px; fill: var(--primary); }

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.why-card p { font-size: .9rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* =========================================================
   PRODUCTS SECTION
========================================================= */
.products-section { background: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--white);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.product-img {
  background: linear-gradient(135deg, var(--primary-light), var(--light-gray));
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-img svg { width: 60px; height: 60px; fill: var(--primary); opacity: .4; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img .product-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: .72rem;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-body { padding: 22px; }
.product-body h3 { font-size: 1rem; margin-bottom: 8px; }
.product-body p { font-size: .87rem; color: var(--text-muted); margin: 0; }

.products-cta {
  text-align: center;
  margin-top: 44px;
}

/* =========================================================
   STATS STRIP
========================================================= */
.stats-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-suffix { color: var(--accent); }
.stat-lbl {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-top: 8px;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: .04em;
}

/* =========================================================
   EXPORT DESTINATIONS
========================================================= */
.export-section { background: var(--off-white); }

.countries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.country-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: .85rem;
  color: var(--text-body);
  font-family: var(--font-head);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.country-chip:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* =========================================================
   CERTIFICATES / QUALITY
========================================================= */
.quality-section { background: var(--white); }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cert-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.cert-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.cert-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.cert-icon svg { width: 30px; height: 30px; fill: var(--white); }

.cert-card h4 { font-size: .95rem; color: var(--text-dark); margin-bottom: 6px; }
.cert-card p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials-section { background: var(--primary-dark); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-desc { color: rgba(255,255,255,.65); }
.testimonials-section .section-label { background: rgba(255,255,255,.12); color: var(--accent); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: .93rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin: 0 0 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.author-info .author-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
}
.author-info .author-country { font-size: .78rem; color: rgba(255,255,255,.5); }

/* =========================================================
   CONTACT SECTION
========================================================= */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 8px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 28px; }

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; fill: var(--primary); }
.contact-item-text .lbl {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  display: block;
}
.contact-item-text .val {
  font-size: .93rem;
  color: var(--text-dark);
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { margin-bottom: 6px; }
.contact-form-wrap > p { color: var(--text-muted); font-size: .9rem; margin-bottom: 28px; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group.full { grid-column: span 2; }

.form-group label {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,95,158,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background: #0a1628;
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-about .footer-logo .logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}
.footer-about .footer-logo .logo-tagline {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.footer-about > p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .83rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom .footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom .footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom .footer-bottom-links a:hover { color: var(--accent); }

/* =========================================================
   WHATSAPP FLOAT
========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
}
.whatsapp-float a:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.75); }
}

/* =========================================================
   PAGE BANNER (inner pages)
========================================================= */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.page-banner h1 { color: var(--white); font-size: 2.2rem; margin-bottom: 10px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* =========================================================
   ELEMENTOR COMPATIBILITY
========================================================= */
.elementor-section > .elementor-container { max-width: var(--container); }
.elementor-widget-heading .elementor-heading-title { font-family: var(--font-head); }
.elementor-button { font-family: var(--font-head); }

/* =========================================================
   BACK TO TOP
========================================================= */
#back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow-md);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--primary-dark); }
#back-to-top svg { width: 18px; height: 18px; fill: white; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-placeholder { max-width: 400px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .primary-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 16px 0;
    border-top: 1px solid var(--border);
  }
  .mobile-nav.open { display: block; }
  .mobile-nav a {
    display: block;
    padding: 11px 24px;
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav a:hover { background: var(--primary-light); color: var(--primary); }

  .section-pad { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .trust-strip .container { gap: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 60px 0; }
  .contact-form-wrap { padding: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .top-bar-contact { gap: 12px; }
}

/* =========================================================
   UTILITY
========================================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
