/*
Theme Name: Oasisflow Towing
Theme URI: https://oasisflowtowing.ae
Author: Oasisflow Car Towing LLC
Description: Custom towing service theme for Oasisflow Car Towing LLC - Abu Dhabi
Version: 2.0
Text Domain: oasisflow
*/

/* ============================================
   1. CSS VARIABLES — edit colors here
   ============================================ */
:root{
  --dark-grey: #262629;      /* main dark sections / header bg */
  --dark-grey-2: #1a1a1c;    /* footer / darkest banner bg */
  --mid-grey: #58585c;       /* secondary text on white */
  --light-grey: #f2f2f3;     /* alt section background */
  --border-grey: #e2e2e4;
  --white: #ffffff;
  --black: #111111;          /* body text */
  --blue: #10305c;           /* Call Us button - dark blue */
  --blue-hover: #0c2544;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe57;
  --radius-pill: 50px;       /* rounded button edges */
  --radius-card: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --container: 1180px;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Poppins','Segoe UI',Arial,sans-serif;
  color:var(--black);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
h1,h2,h3,h4{font-weight:700;line-height:1.25;color:var(--black);}
.container{max-width:var(--container);margin:0 auto;padding:0 24px;}
section{padding:90px 0;}
.section-tag{
  display:inline-block;color:var(--blue);font-weight:600;font-size:14px;
  letter-spacing:1.5px;text-transform:uppercase;margin-bottom:14px;
}
.section-head{max-width:640px;margin-bottom:50px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.section-head h2{font-size:36px;margin-bottom:14px;}
.section-head p{color:var(--mid-grey);font-size:16px;}

/* ============================================
   3. BUTTONS — pill / rounded edges
   ============================================ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:15px 32px;border-radius:var(--radius-pill);
  font-weight:600;font-size:15px;border:none;cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space:nowrap;
}
.btn svg{width:18px;height:18px;flex-shrink:0;}
.btn:hover{transform:translateY(-2px);}
.btn-call{
  background:var(--blue);color:var(--white);
  box-shadow:0 8px 20px rgba(16,48,92,0.35);
}
.btn-call:hover{background:var(--blue-hover);}
.btn-whatsapp{
  background:var(--whatsapp);color:var(--white);
  box-shadow:0 8px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover{background:var(--whatsapp-hover);}
.btn-outline{
  background:transparent;color:var(--white);border:2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover{background:rgba(255,255,255,0.12);}
.btn-dark-outline{
  background:transparent;color:var(--black);border:2px solid var(--border-grey);
}
.btn-dark-outline:hover{border-color:var(--black);}
.btn-block{width:100%;}

/* ============================================
   4. ICONS (inline SVG wrapper)
   ============================================ */
.icon-circle{
  width:64px;height:64px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--light-grey);color:var(--blue);flex-shrink:0;
}
.icon-circle svg{width:30px;height:30px;stroke:var(--blue);}
.icon-circle.on-dark{background:rgba(255,255,255,0.08);}
.icon-circle.on-dark svg{stroke:var(--white);}

/* ============================================
   5. HEADER
   ============================================ */
.site-header{
  position:sticky;top:0;z-index:1000;background:var(--white);
  border-bottom:1px solid var(--border-grey);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 24px;max-width:var(--container);margin:0 auto;
}
.logo{display:flex;align-items:center;gap:10px;font-size:22px;font-weight:800;color:var(--black);}
.logo span{color:var(--blue);}
.logo .logo-mark{
  width:40px;height:40px;border-radius:12px;background:var(--dark-grey);
  display:flex;align-items:center;justify-content:center;
}
.logo .logo-mark svg{width:22px;height:22px;stroke:var(--white);}
.main-nav{display:flex;align-items:center;gap:34px;}
.main-nav a{font-weight:500;font-size:15px;color:var(--black);position:relative;}
.main-nav a:hover{color:var(--blue);}
.header-actions{display:flex;align-items:center;gap:14px;}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px;}
.hamburger span{width:26px;height:2px;background:var(--black);border-radius:2px;}

/* ============================================
   6. HERO
   ============================================ */
.hero{background:var(--light-grey);padding:80px 0;}
.hero-inner{
  display:grid;grid-template-columns:1.1fr 1fr;gap:60px;align-items:center;
  max-width:var(--container);margin:0 auto;padding:0 24px;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;background:var(--white);
  padding:8px 16px;border-radius:var(--radius-pill);font-size:13px;font-weight:600;
  box-shadow:var(--shadow);margin-bottom:22px;
}
.hero-badge .dot{width:8px;height:8px;border-radius:50%;background:var(--whatsapp);}
.hero h1{font-size:48px;margin-bottom:20px;}
.hero h1 em{font-style:normal;color:var(--blue);}
.hero p{color:var(--mid-grey);font-size:17px;margin-bottom:32px;max-width:480px;}
.hero-btns{display:flex;gap:16px;flex-wrap:wrap;}
.hero-image{
  position:relative;border-radius:24px;overflow:hidden;
  aspect-ratio:4/3;background:linear-gradient(135deg,var(--dark-grey),var(--dark-grey-2));
  display:flex;align-items:center;justify-content:center;
}
.hero-image img{width:100%;height:100%;object-fit:cover;}
.hero-image .img-placeholder-label{
  color:rgba(255,255,255,0.5);font-size:13px;text-align:center;padding:20px;
}
.hero-image .img-placeholder-icon svg{width:56px;height:56px;stroke:rgba(255,255,255,0.35);margin:0 auto 12px;}
.hero-float-card{
  position:absolute;bottom:20px;left:20px;background:var(--white);
  border-radius:var(--radius-card);padding:16px 20px;box-shadow:var(--shadow);
  display:flex;align-items:center;gap:12px;
}
.hero-float-card strong{display:block;font-size:15px;}
.hero-float-card span{font-size:12px;color:var(--mid-grey);}

/* ============================================
   7. STATS BAR
   ============================================ */
.stats-bar{background:var(--dark-grey);padding:44px 0;}
.stats-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:20px;
  max-width:var(--container);margin:0 auto;padding:0 24px;text-align:center;
}
.stat-item h3{color:var(--white);font-size:34px;margin-bottom:4px;}
.stat-item p{color:rgba(255,255,255,0.6);font-size:14px;}

/* ============================================
   8. ABOUT SECTION
   ============================================ */
.about-inner{
  display:grid;grid-template-columns:1fr 1.1fr;gap:60px;align-items:center;
}
.about-image{
  position:relative;border-radius:20px;overflow:hidden;aspect-ratio:1/1;
  background:var(--light-grey);
}
.about-image img{width:100%;height:100%;object-fit:cover;}
.badge-row{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px;}
.badge-item{
  display:flex;align-items:center;gap:10px;background:var(--light-grey);
  padding:10px 16px;border-radius:12px;font-size:13px;font-weight:600;
}
.badge-item svg{width:18px;height:18px;stroke:var(--blue);flex-shrink:0;}

/* ============================================
   9. TRUST STRIP
   ============================================ */
.trust-strip{padding:40px 0;border-top:1px solid var(--border-grey);border-bottom:1px solid var(--border-grey);}
.trust-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
  max-width:var(--container);margin:0 auto;padding:0 24px;
}
.trust-item{display:flex;align-items:center;gap:12px;justify-content:center;}
.trust-item svg{width:26px;height:26px;stroke:var(--dark-grey);flex-shrink:0;}
.trust-item span{font-size:14px;font-weight:600;color:var(--mid-grey);}

/* ============================================
   10. DARK BANNER (CTA)
   ============================================ */
.cta-banner{
  background:var(--dark-grey-2);padding:70px 0;text-align:center;
}
.cta-banner h2{color:var(--white);font-size:32px;max-width:700px;margin:0 auto 14px;}
.cta-banner p{color:rgba(255,255,255,0.6);max-width:560px;margin:0 auto 30px;}
.cta-banner .hero-btns{justify-content:center;}

/* ============================================
   11. THREE-COL IMAGE FEATURE
   ============================================ */
.feature-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:28px;
}
.feature-card{position:relative;border-radius:20px;overflow:hidden;aspect-ratio:3/4;}
.feature-card img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;}
.feature-card .fallback-bg{
  position:absolute;inset:0;background:linear-gradient(160deg,var(--dark-grey),var(--dark-grey-2));
}
.feature-card .overlay{
  position:absolute;inset:0;background:linear-gradient(0deg,rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.1) 60%);
  display:flex;flex-direction:column;justify-content:flex-end;padding:26px;
}
.feature-card .icon-circle{background:rgba(255,255,255,0.15);margin-bottom:14px;}
.feature-card .icon-circle svg{stroke:var(--white);}
.feature-card h4{color:var(--white);font-size:19px;margin-bottom:6px;}
.feature-card p{color:rgba(255,255,255,0.75);font-size:14px;}

/* ============================================
   12. SERVICES GRID
   ============================================ */
.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:26px;
}
.service-card{
  background:var(--white);border:1px solid var(--border-grey);border-radius:var(--radius-card);
  padding:34px 28px;transition:box-shadow .25s ease, transform .25s ease;
}
.service-card:hover{box-shadow:var(--shadow);transform:translateY(-4px);}
.service-card .icon-circle{margin-bottom:22px;}
.service-card h4{font-size:19px;margin-bottom:10px;}
.service-card p{color:var(--mid-grey);font-size:14.5px;}

/* ============================================
   13. MISSION / DARK SPLIT SECTION
   ============================================ */
.mission{background:var(--dark-grey);}
.mission-inner{
  display:grid;grid-template-columns:1.1fr 1fr;gap:60px;align-items:center;
}
.mission h2{color:var(--white);}
.mission p{color:rgba(255,255,255,0.65);margin-bottom:16px;}
.mission .section-tag{color:var(--whatsapp);}
.mission-image{
  border-radius:20px;overflow:hidden;aspect-ratio:4/3;
  background:linear-gradient(135deg,#3a3a3e,var(--dark-grey-2));
}
.mission-image img{width:100%;height:100%;object-fit:cover;}
.mission-list{margin-top:24px;display:flex;flex-direction:column;gap:14px;}
.mission-list li{display:flex;align-items:flex-start;gap:12px;color:rgba(255,255,255,0.8);font-size:15px;}
.mission-list svg{width:20px;height:20px;stroke:var(--whatsapp);flex-shrink:0;margin-top:2px;}

/* ============================================
   14. WHY CHOOSE US (accordion + image)
   ============================================ */
.why-inner{
  display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;
}
.why-image{
  border-radius:20px;overflow:hidden;aspect-ratio:4/5;background:var(--light-grey);
}
.why-image img{width:100%;height:100%;object-fit:cover;}
.accordion-item{border-bottom:1px solid var(--border-grey);}
.accordion-item:first-child{border-top:1px solid var(--border-grey);}
.accordion-head{
  width:100%;background:none;border:none;text-align:left;cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;
  padding:22px 4px;font-size:16.5px;font-weight:600;color:var(--black);
}
.accordion-head .num{color:var(--blue);margin-right:12px;font-weight:700;}
.accordion-head .chevron{transition:transform .25s ease;flex-shrink:0;}
.accordion-head .chevron svg{width:18px;height:18px;stroke:var(--mid-grey);}
.accordion-item.active .chevron{transform:rotate(180deg);}
.accordion-body{max-height:0;overflow:hidden;transition:max-height .3s ease;}
.accordion-item.active .accordion-body{max-height:200px;}
.accordion-body p{padding:0 4px 22px 34px;color:var(--mid-grey);font-size:14.5px;}

/* ============================================
   15. TESTIMONIALS
   ============================================ */
.testimonials-inner{
  display:grid;grid-template-columns:1.2fr 0.8fr;gap:50px;
}
.testimonial-card{
  background:var(--light-grey);border-radius:var(--radius-card);padding:26px;margin-bottom:18px;
}
.stars{display:flex;gap:3px;margin-bottom:12px;}
.stars svg{width:16px;height:16px;fill:#f5a623;stroke:none;}
.testimonial-card p{font-size:15px;color:var(--black);margin-bottom:14px;}
.testimonial-author{display:flex;align-items:center;gap:12px;}
.author-avatar{
  width:40px;height:40px;border-radius:50%;background:var(--dark-grey);color:var(--white);
  display:flex;align-items:center;justify-content:center;font-weight:700;font-size:14px;
}
.testimonial-author strong{display:block;font-size:14px;}
.testimonial-author span{font-size:12.5px;color:var(--mid-grey);}
.google-review-box{
  background:var(--dark-grey);border-radius:var(--radius-card);padding:36px 28px;
  color:var(--white);text-align:center;height:fit-content;
}
.google-review-box .g-score{font-size:46px;font-weight:800;margin:10px 0;}
.google-review-box p{color:rgba(255,255,255,0.65);font-size:14px;margin-bottom:20px;}

/* ============================================
   16. BOOKING FORM
   ============================================ */
.booking{background:var(--light-grey);}
.booking-box{
  background:var(--white);border-radius:24px;padding:50px;box-shadow:var(--shadow);
  display:grid;grid-template-columns:1fr 1.2fr;gap:50px;
}
.booking-info h2{font-size:30px;margin-bottom:14px;}
.booking-info p{color:var(--mid-grey);margin-bottom:26px;}
.booking-info .contact-line{display:flex;align-items:center;gap:12px;margin-bottom:16px;}
.booking-info .contact-line svg{width:20px;height:20px;stroke:var(--blue);flex-shrink:0;}
.booking-info .contact-line strong{display:block;font-size:15px;}
.booking-info .contact-line span{font-size:13px;color:var(--mid-grey);}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
.form-grid .full{grid-column:1/-1;}
.form-grid label{display:block;font-size:13px;font-weight:600;margin-bottom:8px;}
.form-grid input,.form-grid select,.form-grid textarea{
  width:100%;padding:13px 16px;border:1px solid var(--border-grey);border-radius:12px;
  font-family:inherit;font-size:14.5px;background:var(--light-grey);
}
.form-grid textarea{resize:vertical;min-height:100px;}
.form-grid input:focus,.form-grid select:focus,.form-grid textarea:focus{
  outline:none;border-color:var(--blue);background:var(--white);
}
.form-note{font-size:12.5px;color:var(--mid-grey);margin-top:10px;}

/* ============================================
   17. FAQ (2 column)
   ============================================ */
.faq-cols{display:grid;grid-template-columns:1fr 1fr;gap:0 50px;}

/* ============================================
   18. FOOTER
   ============================================ */
.site-footer{background:var(--dark-grey-2);color:rgba(255,255,255,0.7);padding-top:70px;}
.footer-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:40px;padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-grid h4{color:var(--white);font-size:16px;margin-bottom:20px;}
.footer-grid .logo{color:var(--white);margin-bottom:16px;}
.footer-about p{font-size:14px;line-height:1.7;margin-bottom:20px;}
.footer-social{display:flex;gap:10px;}
.footer-social a{
  width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,0.08);
  display:flex;align-items:center;justify-content:center;
}
.footer-social svg{width:17px;height:17px;stroke:var(--white);}
.footer-grid ul li{margin-bottom:12px;font-size:14px;}
.footer-grid ul li a:hover{color:var(--white);}
.footer-contact li{display:flex;align-items:flex-start;gap:10px;font-size:14px;margin-bottom:16px;}
.footer-contact svg{width:18px;height:18px;stroke:var(--whatsapp);flex-shrink:0;margin-top:2px;}
.footer-bottom{
  padding:24px 0;text-align:center;font-size:13px;color:rgba(255,255,255,0.4);
}

/* ============================================
   19. FLOATING BUTTONS
   ============================================ */
.floating-btns{position:fixed;bottom:24px;right:24px;z-index:999;display:flex;flex-direction:column;gap:12px;}
.floating-btn{
  width:58px;height:58px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,0.25);transition:transform .2s ease;
}
.floating-btn:hover{transform:scale(1.08);}
.floating-btn svg{width:26px;height:26px;stroke:var(--white);}
.floating-btn.whatsapp{background:var(--whatsapp);}
.floating-btn.call{background:var(--blue);}

/* ============================================
   20. RESPONSIVE
   ============================================ */
@media(max-width:980px){
  .hero-inner,.about-inner,.mission-inner,.why-inner,.testimonials-inner,.booking-box{
    grid-template-columns:1fr;
  }
  .mission-inner .mission-image,.about-inner .about-image{order:-1;}
  .stats-grid,.trust-grid{grid-template-columns:repeat(2,1fr);}
  .feature-grid,.services-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .faq-cols{grid-template-columns:1fr;}
  .form-grid{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .main-nav{
    position:fixed;top:73px;left:0;right:0;bottom:0;background:var(--white);
    flex-direction:column;padding:30px;gap:22px;transform:translateX(100%);
    transition:transform .3s ease;overflow-y:auto;
  }
  .main-nav.open{transform:translateX(0);}
  .hamburger{display:flex;}
  .header-actions .btn-call span{display:none;}
  .header-actions .btn-call{padding:14px;}
  .hero h1{font-size:32px;}
  .stats-grid,.trust-grid,.feature-grid,.services-grid{grid-template-columns:1fr;}
  section{padding:60px 0;}
  .booking-box{padding:28px;}
  .footer-grid{grid-template-columns:1fr;}
}/* =========================================================
   OASISFLOW PREMIUM BRANDING
   ========================================================= */

:root {
  --brand-navy: #0B1220;
  --brand-navy-light: #111B2E;
  --brand-cyan: #22D3EE;
  --brand-cyan-dark: #06B6D4;
  --brand-amber: #F59E0B;
  --brand-white: #F8FAFC;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 18, 32, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}


.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 13px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  text-decoration: none !important;

  flex-shrink: 0;
}


/* Logo symbol */

.logo-symbol {
  width: 49px;
  height: 49px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}


.logo-symbol svg {
  width: 100%;
  height: 100%;
  display: block;
}


/* Logo background */

.logo-bg {
  fill: var(--brand-navy);
}


/* Flow / road */

.logo-flow {
  fill: none;
  stroke: var(--brand-cyan);
  stroke-width: 3;
  stroke-linecap: round;
}


/* Truck body */

.logo-truck {
  fill: var(--brand-cyan);
}


/* Truck wheels */

.logo-wheel {
  fill: var(--brand-navy);
  stroke: var(--brand-white);
  stroke-width: 1.5;
}


/* Tow hook */

.logo-hook {
  fill: none;
  stroke: var(--brand-amber);
  stroke-width: 2.5;
  stroke-linecap: round;
}


/* =========================================================
   COMPANY NAME
   ========================================================= */

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;

  line-height: 1;
}


.logo-name {
  font-family: "Space Grotesk", sans-serif;

  font-size: 22px;
  font-weight: 700;

  letter-spacing: -0.8px;

  white-space: nowrap;
}


.logo-oasis {
  color: var(--brand-navy);
}


.logo-flow-text {
  color: var(--brand-cyan-dark);
}


/* =========================================================
   TAGLINE
   ========================================================= */

.logo-tagline {
  margin-top: 5px;

  font-family: "Space Grotesk", sans-serif;

  font-size: 7.5px;
  font-weight: 600;

  letter-spacing: 1.55px;

  color: #64748B;

  white-space: nowrap;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}


.main-nav a {
  font-family: "Space Grotesk", sans-serif;

  font-size: 13px;
  font-weight: 600;

  color: #334155;

  text-decoration: none;

  position: relative;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}


.main-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 2px;

  background: var(--brand-cyan);

  border-radius: 10px;

  transition: width 0.25s ease;
}


.main-nav a:hover {
  color: var(--brand-navy);
}


.main-nav a:hover::after {
  width: 100%;
}


/* =========================================================
   HEADER CALL BUTTON
   ========================================================= */

.header-call {
  font-family: "Space Grotesk", sans-serif;

  border-radius: 12px !important;

  padding: 11px 17px !important;

  font-size: 12px;

  font-weight: 700;

  box-shadow:
    0 5px 18px rgba(11, 18, 32, 0.16);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.header-call:hover {
  transform: translateY(-2px);

  box-shadow:
    0 9px 25px rgba(11, 18, 32, 0.22);
}


/* =========================================================
   HAMBURGER
   ========================================================= */

.hamburger {
  border: 0;
  background: transparent;

  padding: 7px;

  cursor: pointer;

  display: none;
}


.hamburger span {
  display: block;

  width: 24px;
  height: 2px;

  margin: 5px 0;

  background: var(--brand-navy);

  border-radius: 5px;

  transition: 0.25s ease;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

  .header-inner {
    padding: 11px 18px;
  }


  .main-nav {
    display: none;
  }


  .header-call span {
    display: none;
  }


  .header-call {
    padding: 11px !important;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
  }


  .hamburger {
    display: block;
  }


  .logo-symbol {
    width: 43px;
    height: 43px;
  }


  .logo-name {
    font-size: 20px;
  }


  .logo-tagline {
    font-size: 6.5px;
    letter-spacing: 1.2px;
  }

}


@media (max-width: 480px) {

  .logo-tagline {
    display: none;
  }


  .logo-name {
    font-size: 19px;
  }


  .logo-symbol {
    width: 40px;
    height: 40px;
  }

}/* ===== OASISFLOW LOGO ONLY ===== */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-name {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.7px;
  line-height: 1;
  white-space: nowrap;
}

.logo-oasis {
  color: #0B1220;
}

.logo-flow {
  color: #06B6D4;
}/* =====================================================
   KEEP NAVIGATION FONT UNCHANGED
   ===================================================== */

.main-nav,
.main-nav a {
    font-family: inherit !important;
}