/* ══════════════════════════════════════
   FLYZER — styles.css
   ══════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --red:        #D0021B;
  --dark-red:   #A80016;
  --black:      #111111;
  --dark:       #1A1A1A;
  --gray:       #F5F5F5;
  --light-gray: #EBEBEB;
  --text:       #333333;
  --text-light: #666666;
  --white:      #ffffff;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
}

/* ── RESET & BASE ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.topbar {
  background: var(--dark);
  color: #ccc;
  font-size: 12px;
  font-family: var(--font-head);
  padding: 8px 0;
  position: relative;
}

.topbar .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: #ccc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 24px;
  transition: color .2s;
}

.topbar a:hover {
  color: var(--red);
}

.topbar-right {
  display: flex;
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.inner{
    font-family: "Times New Roman", serif;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;

}

.logo-image {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -1px;
  color: var(--red);
    height: 120px;
    width: auto;
    margin-bottom: -10px;
    margin-left: -15px;
    margin-top: -15px;

}

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

.logo-tagline {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 3px;
  /*color: var(--text-light);*/
  color: var(--red);
  text-transform: uppercase;
  margin-left: 8px;
    margin-top: -45px;

}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color .2s;
  position: relative;
}

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

/* Dropdown */
.nav-links .has-dropdown {
  position: relative;
}

.nav-links .has-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  border-top: 3px solid var(--red);
  min-width: 200px;
  border-radius: 0 0 6px 6px;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  border-radius: 0;
}

/* Get In Touch button */
.btn-get-in-touch {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 4px !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  transition: background .2s !important;
}

.btn-get-in-touch:hover {
  background: var(--dark-red) !important;
  color: var(--white) !important;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1e1e2e 55%, #2a0a0e 100%);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: var(--red);
  border-radius: 50%;
  opacity: .07;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background: linear-gradient(135deg, var(--red) 50%, transparent 50%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text h1 {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 8px;
  animation: fadeUp .7s ease both;
}

.hero-text h1 span {
  color: var(--red);
}

.hero-text p {
  color: #aaa;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
  animation: fadeUp .7s .15s ease both;
}

/* Hero badges */
.hero-badges {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--white);
}

.badge-icon {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.badge span {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  color: #ccc;
  line-height: 1.3;
}

/* Explore button */
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  animation: fadeUp .7s .45s ease both;
}

.btn-explore:hover {
  background: var(--dark-red);
  transform: translateX(4px);
}

.btn-explore svg {
  transition: transform .2s;
}

.btn-explore:hover svg {
  transform: translateX(4px);
}

/* Hero visual / placeholder */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp .7s .3s ease both;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ══════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════ */
.trust-strip {
  background: var(--black);
  padding: 20px 0;
}

.trust-strip .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.trust-item-icon {
  color: var(--red);
  font-size: 28px;
}

.trust-item-text {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

/* ══════════════════════════════════════
   SHARED LAYOUT HELPERS
══════════════════════════════════════ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* Shared buttons */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, color .2s;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.btn-primary:hover {
  background: var(--dark-red);
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   PRODUCTS SECTION
══════════════════════════════════════ */
.products-section {
  padding: 90px 0;
  background: var(--white);
}

.products-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

.products-head h2 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--black);
}

.products-head h2 span {
  color: var(--red);
}

.products-head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.products-head-right p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* Product grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
  transform: translateY(-4px);
}

.product-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #aaa;
  border-bottom: 1px solid var(--light-gray);
  font-family: var(--font-head);
  font-size: 12px;
}
.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin-top: -20px;
    margin-bottom: -20px;
}


.product-body {
  padding: 20px;
}

.product-body h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.product-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-link {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  letter-spacing: .5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.product-link:hover {
  gap: 10px;
}

.coming-soon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 30px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════ */
.features-strip {
  background: var(--dark);
  padding: 36px 0;
}

.features-strip .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.feature-item-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--red);
  flex-shrink: 0;
}

.feature-item-text {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

/* ══════════════════════════════════════
   PARTNER SECTION
══════════════════════════════════════ */
.partner-section {
  padding: 90px 0;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}

.partner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 55%;
  background: var(--white);
}

.partner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.partner-left h2 {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 6px;
}

.partner-left h2 span {
  color: var(--red);
}

.partner-left p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 380px;
}

/* Partner benefits grid */
.partner-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.partner-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.partner-benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
}

.partner-benefit-text {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}

/* Partner image placeholder */
/*.partner-img-placeholder {
  width: 100%;
  height: 380px;
  background: var(--light-gray);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #aaa;
  font-family: var(--font-head);
  font-size: 13px;
  border: 2px dashed #ccc;
  .partner-img-placeholder svg {
  opacity: .4;
}
}
*/
.partner-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


/* ══════════════════════════════════════
   WHY FLYZER
══════════════════════════════════════ */
.why-section {
  padding: 90px 0;
  background: var(--white);
}

.why-section .section-inner {
  text-align: center;
}

.why-section h2 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 12px;
}

.why-section > .section-inner > p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 60px;
}

.why-divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 30px 20px;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  transition: border-color .2s, box-shadow .2s;
}

.why-item:hover {
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(208, 2, 27, .08);
}

.why-item-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--red);
}

.why-item-text {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  line-height: 1.4;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--dark);
  padding: 60px 0 0;
  color: #ccc;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

/* Footer brand column */
.footer-logo-brand {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -1px;
  color: var(--red);
  margin-bottom: 4px;
}

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

.footer-logo-tag {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: #888;
  margin-bottom: 24px;
  max-width: 240px;
}

/* Footer columns */
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #888;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s;
}

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

/* Social icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: opacity .2s;
}

.social-icon:hover {
  opacity: .85;
}

.si-fb { background: #1877F2; }
.si-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.si-yt { background: #FF0000; }

/* Contact items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  margin-top: 48px;
  padding: 20px 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #555;
}

.footer-bottom a {
  color: #555;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--red);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-text h1        { font-size: 36px; }
  .hero-visual         { display: none; }
  .products-head       { grid-template-columns: 1fr; }
  .products-grid       { grid-template-columns: 1fr 1fr; }
  .why-grid            { grid-template-columns: repeat(3, 1fr); }
  .partner-inner       { grid-template-columns: 1fr; }
  .partner-section::before { display: none; }
  .partner-img-placeholder { height: 240px; }
  .footer-inner        { grid-template-columns: 1fr 1fr; }
  .features-strip .inner { justify-content: center; }
  .trust-strip .inner  { justify-content: center; }
  .nav-links           { display: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
══════════════════════════════════════ */
@media (max-width: 600px) {
  .products-grid   { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr 1fr; }
  .footer-inner    { grid-template-columns: 1fr; }
  .partner-benefits { grid-template-columns: 1fr 1fr; }
}