/*
Theme Name: Focus 1 Logistics
Theme URI: https://www.focus1logistics.com/
Author: Antigravity
Author URI: https://agentic-coding.com/
Description: Modern, tech-forward logistics theme for Focus 1 Logistics.
Version: 1.0.0
Text Domain: focus-1-logistics
*/

h1#ftitle {
    font-size: 50px;
}

.box-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box-title p {
    font-size: 20px;
    color: #ffffff;
    margin: 0;
    text-align: center;
}
.btn-group
{
    display: flex;
    gap: 20px;
    justify-content: center;
}
a.btn-theme {
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px  ;
    color: rgb(255, 255, 255) !important;
    text-decoration: none;
    font-size: 20px !important;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: inline-block;
}

/* Hover effect: glass highlight + swapped border radius */
a.btn-theme:hover {
    background: rgba(255, 255, 255, 0.4);
   
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    transform: scale(1.05);
}
h1#intro {
    font-size: 50px;
}

.box-header h1
 
 {
    margin: 0px;
    margin-top: 33vh;
    text-align: lef;
}
.box.box-header p
 
 {
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.btn-group-header
{
    display: flex;
    gap: 20px;
    justify-content: left;
}

.card-home-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 300px;
    background-color: #dddddd52;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
display: flex;
    flex-direction: column;
    gap: 15px;
}
.card h3 {
    margin: 0;
    font-size: 20px !important;
   
}
.card p {
    margin: 0;
    
    font-size: 16px;
}
.card img {
    width: 60px;
    height: 60px;
    
}

 

.card-home-wrapper2 .card img {
    width: 95% !important;
    height: 200px !important;
    object-fit: contain;
    background: white;
    border-radius: 10px;
}

h2#about-us,h2#how-ltl-pricing-works,h2#how-to-ship-ltl-freight-the-right-way, h2.freight-class, h2#services  {
    text-align: center;

    font-family: 'Grumpy 24';
    font-size: 35px;
    text-transform: capitalize;
}

/* accordions */

/* ====== SECTION WRAPPER ====== */
.pricing-faq {
  background: var(--bg-light);
  padding: 0px;
  font-family: "Poppins", sans-serif;
}

.pricing-faq h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 2rem;
}

/* ====== ACCORDION CONTAINER ====== */
.accordion {
 
  margin: 0 auto;
}

.accordion-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

/* ====== HEADER ====== */
.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: 'Grumpy 24';
}

.accordion-header:hover {
  color: var(--brand-accent);
}

.accordion-header .icon {
  font-size: 1.4rem;
  color: var(--brand-primary);
  transition: transform 0.3s ease;
}

/* Rotate icon when active */
.accordion-item.active .icon {
  transform: rotate(45deg);
  color: var(--brand-accent);
}

/* ====== CONTENT ====== */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
  background: #fff;
  transition: all 0.35s ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px; /* enough for 2–3 lines */
  padding: 0 1.5rem 1.2rem;
}

.accordion-content p {
    font-size: 20px !important;
}

/* ===== GRID LAYOUT ===== */
#ltl-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0;
  list-style: none;
}

/* ===== GLASS CARD STYLE ===== */
#ltl-steps li {
  position: relative;
  padding: 2rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  color: #fff;
  transition: all 0.4s ease;
  cursor: pointer;
}

#ltl-steps li:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===== ICONS ===== */
.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.step-icon img {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

#ltl-steps li:hover .step-icon img {
  transform: scale(1.1);
  opacity: 1;
}

/* ===== STEP TITLES ===== */
#ltl-steps h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-top: 0.5rem;
}

/* ===== TOOLTIP (hover text) ===== */
#ltl-steps li::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 74, 173, 0.9);
  color: #fff;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

#ltl-steps li:hover::after {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  #ltl-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  #ltl-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  #ltl-steps {
    grid-template-columns: 1fr;
  }
}

 

ul#aa-loghi img
 
 {
    width: 65px;
    height: auto;
}

ul#aa-loghi p
 
 {
    font-family: 'Aerial', sans-serif;
    font-size: 20px;
    text-align: center;
    width: 90%;
}

body.animated .customer-awwwards li span {
    color: rgb(243 243 243 / 18%) !important;
}

h2#how-to-ship-ltl-freight-the-right-way {
    text-align: center;
}

.box-flex-left-custom, .box-flex-right-custom {
    width: 50%;
}

.box-flex-right-custom p {
    font-size: 25px;
    margin-bottom: 30px;
}

 .world-map {
    width: 100%;
    height: auto;
    margin-bottom: 30px;}

    .box-flex-services {
    display: flex
;
    flex-direction: column;
}

 
.work {
    background-color: #ffffff22;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.work.animated h3 {
    font-size: 20px !important;
}

.box-works-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 20px; /* space between items */
}

.box-works-services > *:nth-child(n+4) {
  grid-column: span 1; /* ensures the 4th and 5th start a new row */
}

.work {
    width: 100% !important;
    margin:  0 !important;
    display: flex;
    flex-direction: row;
}


.work img {
    width: 20% !important;
    margin:  0 !important;
}

.work {
    width: 100% !important;
    margin: 0 !important;
    display: flex
;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


.table-wrapper {
 
  padding: 10px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th {
  background: #f4f4f458;
  color: #333;
  font-weight: 600;
   font-size: 20px;
  padding: 10px 10px;
  border-bottom: 1px solid #dddddd8a;
}

.comparison-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  color: #444;
  font-size: 20px;
}

.comparison-table tr:hover {
  background: #fafafa55;
}

@media (max-width: 600px) {
  .comparison-table, .comparison-table thead, .comparison-table tbody, .comparison-table th, .comparison-table td, .comparison-table tr {
    display: block;
  }

  .comparison-table tr {
    margin-bottom: 12px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
  }

  .comparison-table td {
    padding: 8px 10px;
    border: none;
  }

  .comparison-table td:first-child {
    font-weight: bold;
    color: #222;
  }
}

body #mytopnav2 img {
   
    width: 300px;
}

div#mytopnav2 ul
 
 {
    display: flex;
    gap: 20px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}


div#mytopnav2 ul li
 {
     font-size: 16px;
     position: relative;
     padding: 10px 15px;
     cursor: pointer;
     transition: background-color 0.3s ease;
}

div#mytopnav2 ul li:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

div#mytopnav2 ul li a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Dropdown container */
div#mytopnav2 ul li .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    color: #000;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-radius: 4px;
    margin-top: -5px;
    overflow: hidden;
}

div#mytopnav2 ul li .dropdown-content a {
    color: #000000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

div#mytopnav2 ul li .dropdown-content a:hover {
    background-color: #ffffff;
    color: #000;
}

div#mytopnav2 ul li:hover .dropdown-content {
    display: block;
}

.topnav2
 
 {
    overflow: visible;
    background-color: rgba(255, 255, 255, 0);
    position: fixed;
    top: 20px;
    right: 10%;
    z-index: 999;
}

#logo img {
    width: 190px;
    z-index: 1;
}

h2.freight-class {
    text-align: left;
}

.box.about-section .headings h4 {
    font-size: 22px;
    text-align: center;
}

h2#aboutdaniel {
    font-family: 'Grumpy 24';
    font-size: 35px;
    text-align: center;
}

.img-wrap {
    transform: scale(1.2);
}

.about-text p {
    padding-left: 40px;
}

/* Dark overlay */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  z-index: 999;
}

.video-wrapper {
  position: fixed;
  width: 720px;
  height: 405px; /* 16:9 */
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 1000;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.close-btn {
  position: absolute;
  top: -14px;
  right: -14px;
  background: #000;
  color: #fff;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.video-btn {
  margin-top: 10px;
  padding: 8px 14px;
  background: #ffffff3d;
  color: #fff;
  border: none;
  cursor: pointer;
  border: 1px solid gray;
  border-radius: 10px;
}


.card-sm {
    width: 200px;
    background-color: #dddddd52;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
display: flex;
    flex-direction: column;
    gap: 15px;
}
.card-sm h3 {
    margin: 0;
    font-size: 14px !important;
    font-weight: 500;
   
}
.card-sm p {
    margin: 0;
    
    font-size: 16px;
}
.card-sm img {
    width: 60px;
    height: 60px;
    
}