/* ========================================
   BreezeWear — Global Styles
   ======================================== */

:root {
  --primary: #0a2540;
  --accent: #00a8e8;
  --accent-dark: #0077b6;
  --text: #1a1a2e;
  --text-light: #5e5e6e;
  --bg: #ffffff;
  --bg-light: #f6f9fc;
  --bg-dark: #0a2540;
  --border: #e3e8ee;
  --success: #00c853;
  --warning: #ffab00;
  --shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 12px 48px rgba(10, 37, 64, 0.12);
  --radius: 8px;
  --radius-lg: 8px;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Typography */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--primary); }
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text-light); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
}

.section { padding: 80px 0; }
.section-light { background: var(--bg-light); }
.section-dark {
  background: var(--bg-dark);
  color: #fff;
}
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.75); }

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

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
}

.nav-links a:hover { color: var(--accent); }

.nav-links a.active { color: var(--accent); font-weight: 600; }

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
}

.nav-cta:hover { background: var(--accent); color: #fff !important; }

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 999px;
  flex-shrink: 0;
}

.language-switcher button {
  min-width: 42px;
  min-height: 32px;
  padding: 0.35rem 0.65rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-light);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.language-switcher button:hover {
  color: var(--primary);
  background: #fff;
}

.language-switcher button.active {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.16);
}

.skiptranslate,
#google_translate_element {
  display: none !important;
}

body {
  top: 0 !important;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .nav-inner,
html[dir="rtl"] .hero-inner,
html[dir="rtl"] .two-col,
html[dir="rtl"] .contact-grid,
html[dir="rtl"] .footer-grid {
  direction: rtl;
}

html[dir="rtl"] .feature-list li,
html[dir="rtl"] .product-features li,
html[dir="rtl"] .contact-method {
  flex-direction: row-reverse;
}

html[dir="rtl"] .specs-table th,
html[dir="rtl"] .specs-table td {
  text-align: right;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0,168,232,0.35);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

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

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

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

.btn-white:hover {
  background: var(--bg-light);
}

/* Hero */
.hero {
  padding: 140px 0 100px;
  background:
    linear-gradient(110deg, rgba(10,37,64,0.95) 0%, rgba(10,37,64,0.8) 48%, rgba(10,37,64,0.25) 100%),
    url('/assets/ai-breezewear-real-style-hero-clean-260825090743.webp') center/cover;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.media-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  box-shadow: var(--shadow);
  min-height: clamp(260px, 38vw, 420px);
}

.media-panel img,
.product-card-img img,
.industry-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-panel::after,
.product-card-img::after,
.industry-card-img::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(10,37,64,0.34), transparent);
  pointer-events: none;
}

.hero-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.hero-visual-card {
  position: relative;
  min-height: clamp(360px, 45vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-visual-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.82) 0%, rgba(10,37,64,0.1) 55%, transparent 100%);
  pointer-events: none;
}

.hero-visual-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
}

.hero-visual-card figcaption span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(0,168,232,0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-visual-card figcaption strong {
  display: block;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.25;
}

.airflow-demo::before {
  content: '';
  position: absolute;
  inset: 12% 8%;
  z-index: 1;
  background:
    radial-gradient(ellipse at 18% 66%, rgba(255,255,255,0.65) 0 2px, transparent 3px),
    radial-gradient(ellipse at 38% 52%, rgba(255,255,255,0.52) 0 2px, transparent 3px),
    radial-gradient(ellipse at 58% 38%, rgba(255,255,255,0.42) 0 2px, transparent 3px),
    linear-gradient(135deg, transparent 0 32%, rgba(255,255,255,0.72) 33%, transparent 35% 48%, rgba(0,168,232,0.7) 49%, transparent 51%),
    linear-gradient(155deg, transparent 0 30%, rgba(255,255,255,0.55) 31%, transparent 33% 52%, rgba(0,168,232,0.54) 53%, transparent 55%);
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 999px;
  filter: drop-shadow(0 8px 22px rgba(0,168,232,0.28));
  pointer-events: none;
}

.airflow-demo figcaption {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}

/* Breadcrumb */
.breadcrumb {
  padding: 100px 0 30px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
}

.breadcrumb-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb-list a:hover { color: var(--accent); }

/* Page Header */
.page-header {
  padding: 120px 0 60px;
  background: var(--bg-light);
  text-align: center;
}

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

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

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Product Card */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
}

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

.product-card-img {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-body h3 {
  margin-bottom: 0.5rem;
}

.product-features {
  list-style: none;
  margin: 1rem 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.product-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.specs-table th,
.specs-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.specs-table th {
  font-weight: 600;
  color: var(--primary);
  background: var(--bg-light);
  width: 40%;
}

.specs-table td {
  color: var(--text-light);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding-top: 0.75rem;
  color: var(--text-light);
  max-width: 800px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

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

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

/* Contact Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

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

.contact-method-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Two Column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Industry Card */
.industry-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.industry-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.industry-card-img {
  position: relative;
  height: 200px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.industry-card-body {
  padding: 1.5rem;
}

/* Footer */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand span { color: var(--accent); }

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul { list-style: none; }

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

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 100px 0;
}

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

.cta-section p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Feature List */
.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.feature-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Pricing Tier */
.pricing-tier {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.2s;
}

.pricing-tier:hover {
  border-color: var(--accent);
}

.pricing-tier.popular {
  border-color: var(--accent);
  position: relative;
}

.pricing-tier .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-links {
    gap: 0.9rem;
  }

  .nav-links a {
    font-size: 0.84rem;
  }

  .card-grid[style] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .two-col {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.15rem; }
  p { font-size: 0.95rem; }

  .container,
  .nav-inner,
  .hero-inner,
  .breadcrumb-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-inner {
    height: 58px;
  }

  .logo {
    font-size: 1.15rem;
  }

  .hero {
    padding: 92px 0 46px;
    min-height: 92svh;
    display: flex;
    align-items: flex-end;
  }

  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; max-width: none; }
  .hero-btns .btn { flex: 1 1 100%; }
  .nav-links {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    padding: 0.85rem 1rem 1.1rem;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .nav-links a {
    display: block;
    padding: 0.7rem 0;
  }
  .nav-links.show { display: flex; }
  .nav-toggle { display: block; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .page-header { padding: 92px 0 38px; }
  .page-header h1 { font-size: 1.9rem; }
  .page-header p { font-size: 1rem; }
  .breadcrumb { padding: 76px 0 18px; }
  .breadcrumb-list { overflow-x: auto; white-space: nowrap; padding-bottom: 0.25rem; }
  .card-grid { grid-template-columns: 1fr; gap: 1rem; }
  .card,
  .product-card-body,
  .pricing-tier { padding: 1.15rem; }
  .product-card-img,
  .industry-card-img { aspect-ratio: 4 / 3; height: auto; }
  .specs-table { min-width: 620px; }
  .cta-section { padding: 56px 0; }
  .cta-section h2 { font-size: 1.7rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-showcase {
    grid-template-columns: 1fr;
  }
  .hero-visual-card {
    min-height: 260px;
  }
  .card-grid[style] { grid-template-columns: 1fr !important; }
}

@media (max-width: 520px) {
  .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .language-switcher button {
    min-width: 34px;
    min-height: 30px;
    padding: 0.32rem 0.45rem;
    font-size: 0.72rem;
  }

  .nav-toggle {
    order: 3;
    font-size: 1.3rem;
  }

  .btn {
    width: 100%;
    padding: 0.82rem 1rem;
  }

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