/*==========================================
CENTURY CARGO
LUGGAGE TRANSPORT CSS
Part 1
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================================
ROOT VARIABLES
==========================================*/

:root{

--primary:#0057d9;
--secondary:#0b2e6d;
--accent:#ff7a00;
--success:#16a34a;

--white:#ffffff;
--light:#f6f9ff;
--dark:#202124;
--text:#666;

--border:#e8eef8;

--shadow:0 15px 45px rgba(0,0,0,.08);
--shadow-lg:0 25px 70px rgba(0,0,0,.12);

--radius:22px;

--transition:.35s ease;

}

/*==========================================
GLOBAL
==========================================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

font-size:16px;

line-height:1.8;

background:#fff;

color:var(--dark);

overflow-x:hidden;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

transition:var(--transition);

}

.container{

width:100%;

max-width:1280px;

margin:auto;

padding:0 20px;

}

section{

padding:90px 0;

}

/*==========================================
SECTION HEADING
==========================================*/

.section-heading{

text-align:center;

margin-bottom:60px;

}

.section-subtitle{

display:inline-block;

padding:8px 22px;

border-radius:50px;

background:#edf4ff;

color:var(--primary);

font-size:14px;

font-weight:700;

letter-spacing:1px;

text-transform:uppercase;

margin-bottom:18px;

}

.section-heading h2{

font-size:42px;

line-height:1.3;

font-weight:800;

color:var(--secondary);

margin-bottom:18px;

}

.section-heading p{

max-width:950px;

margin:auto;

font-size:17px;

line-height:1.9;

color:#666;

}

/*==========================================
BREADCRUMB
==========================================*/

.breadcrumb-area{

padding:18px 0;

background:#f7faff;

border-bottom:1px solid var(--border);

}

.breadcrumb{

display:flex;

flex-wrap:wrap;

gap:10px;

list-style:none;

}

.breadcrumb li{

font-size:15px;

font-weight:500;

color:#666;

}

.breadcrumb li a{

color:var(--primary);

font-weight:600;

}

.breadcrumb li:not(:last-child)::after{

content:">";

margin-left:10px;

color:#999;

}

/*==========================================
HERO
==========================================*/

.luggage-hero{

background:linear-gradient(135deg,#0b2e6d,#0057d9);

position:relative;

overflow:hidden;

padding:120px 0;

}

.luggage-hero::before{

content:"";

position:absolute;

top:-120px;

right:-120px;

width:380px;

height:380px;

border-radius:50%;

background:rgba(255,255,255,.06);

}

.luggage-hero::after{

content:"";

position:absolute;

bottom:-120px;

left:-120px;

width:320px;

height:320px;

border-radius:50%;

background:rgba(255,255,255,.05);

}

.hero-grid{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:70px;

align-items:center;

position:relative;

z-index:2;

}

/*==========================================
BADGE
==========================================*/

.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 24px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(10px);

border-radius:50px;

color:#fff;

font-weight:600;

margin-bottom:25px;

}

.hero-badge i{

color:#FFD54F;

font-size:18px;

}

/*==========================================
CONTENT
==========================================*/

.hero-content h1{

font-size:58px;

font-weight:800;

line-height:1.15;

color:#fff;

margin-bottom:25px;

}

.hero-content h1 span{

display:block;

color:#FFD54F;

}

.hero-content p{

font-size:18px;

line-height:1.9;

color:#eef5ff;

margin-bottom:35px;

}

/*==========================================
POINTS
==========================================*/

.hero-points{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-bottom:35px;

}

.hero-points div{

display:flex;

align-items:center;

gap:12px;

padding:16px 18px;

border-radius:14px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(10px);

font-weight:600;

color:#fff;

}

.hero-points i{

font-size:22px;

color:#FFD54F;

}

/*==========================================
BUTTONS
==========================================*/

.hero-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

}

.quote-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

background:var(--accent);

color:#fff;

border-radius:12px;

font-weight:700;

}

.call-btn-hero{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

background:#fff;

color:var(--primary);

border-radius:12px;

font-weight:700;

}

.quote-btn:hover,

.call-btn-hero:hover{

transform:translateY(-4px);

}

/*==========================================
ICON HERO
==========================================*/

.hero-icon-box{

display:flex;

justify-content:center;

align-items:center;

}

.hero-circle{

width:340px;

height:340px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

background:rgba(255,255,255,.10);

backdrop-filter:blur(12px);

border:2px solid rgba(255,255,255,.15);

animation:luggageFloat 4s ease-in-out infinite;

box-shadow:0 25px 80px rgba(0,0,0,.18);

}

.hero-circle i{

font-size:150px;

color:#FFD54F;

}

@keyframes luggageFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}

/*==========================================
TRUST STRIP
==========================================*/

.trust-strip{

background:#fff;

padding:45px 0;

}

.trust-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:22px;

}

.trust-card{

padding:30px 20px;

text-align:center;

background:#fff;

border-radius:20px;

box-shadow:var(--shadow);

transition:.35s;

}

.trust-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.trust-card i{

font-size:42px;

color:var(--primary);

margin-bottom:18px;

}

.trust-card h3{

font-size:22px;

margin-bottom:10px;

color:var(--secondary);

}

.trust-card p{

font-size:15px;

line-height:1.8;

color:#666;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-points{

grid-template-columns:1fr;

}

.hero-buttons{

justify-content:center;

}

.trust-grid{

grid-template-columns:repeat(2,1fr);

}

.hero-circle{

width:260px;

height:260px;

}

.hero-circle i{

font-size:110px;

}

.section-heading h2{

font-size:34px;

}

}

@media(max-width:576px){

section{

padding:70px 0;

}

.hero-content h1{

font-size:38px;

}

.hero-content p{

font-size:16px;

}

.hero-buttons a{

width:100%;

}

.trust-grid{

grid-template-columns:1fr;

}

.hero-circle{

width:210px;

height:210px;

}

.hero-circle i{

font-size:85px;

}

}







/*==========================================
ABOUT LUGGAGE
==========================================*/

.about-luggage{

background:linear-gradient(180deg,#ffffff,#f7fbff);

position:relative;

overflow:hidden;

}

.about-luggage::before{

content:"";

position:absolute;

right:-140px;

top:80px;

width:300px;

height:300px;

border-radius:50%;

background:rgba(0,87,217,.05);

}

.about-grid{

display:grid;

grid-template-columns:1.2fr .8fr;

gap:60px;

align-items:start;

position:relative;

z-index:2;

}

.about-content p{

font-size:17px;

line-height:2;

margin-bottom:22px;

color:#555;

text-align:justify;

}

/*==========================================
ABOUT CARDS
==========================================*/

.about-cards{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:22px;

}

.about-card{

background:#fff;

padding:30px 25px;

border-radius:22px;

box-shadow:var(--shadow);

border-top:4px solid transparent;

transition:.35s;

}

.about-card:hover{

transform:translateY(-10px);

border-top-color:var(--accent);

box-shadow:var(--shadow-lg);

}

.about-card i{

width:72px;

height:72px;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

border-radius:18px;

background:#edf5ff;

color:var(--primary);

margin-bottom:20px;

}

.about-card h3{

font-size:22px;

margin-bottom:14px;

color:var(--secondary);

line-height:1.4;

}

.about-card p{

font-size:15px;

line-height:1.8;

color:#666;

text-align:left;

margin:0;

}

/*==========================================
WHO NEEDS LUGGAGE
==========================================*/

.who-needs-luggage{

background:#fff;

}

.service-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

margin-top:55px;

}

.service-card{

background:#fff;

padding:35px 28px;

border-radius:22px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

position:relative;

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,var(--primary),var(--accent));

transform:scaleX(0);

transition:.35s;

}

.service-card:hover::before{

transform:scaleX(1);

}

.service-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-lg);

}

.service-card i{

width:80px;

height:80px;

display:flex;

align-items:center;

justify-content:center;

margin:auto auto 22px;

border-radius:50%;

background:#edf5ff;

color:var(--primary);

font-size:34px;

transition:.35s;

}

.service-card:hover i{

transform:rotate(-8deg) scale(1.08);

background:var(--primary);

color:#fff;

}

.service-card h3{

font-size:24px;

margin-bottom:15px;

color:var(--secondary);

}

.service-card p{

font-size:15px;

line-height:1.9;

color:#666;

}

/*==========================================
WHY LUGGAGE SERVICE
==========================================*/

.why-luggage-service{

background:linear-gradient(180deg,#f8fbff,#ffffff);

}

.why-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:55px;

}

.why-box{

background:#fff;

padding:35px;

border-radius:24px;

display:flex;

gap:22px;

align-items:flex-start;

box-shadow:var(--shadow);

transition:.35s;

}

.why-box:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.why-box i{

width:75px;

height:75px;

min-width:75px;

display:flex;

align-items:center;

justify-content:center;

border-radius:18px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

font-size:30px;

}

.why-box h3{

font-size:24px;

margin-bottom:12px;

color:var(--secondary);

}

.why-box p{

font-size:16px;

line-height:1.9;

color:#666;

}

/*==========================================
SMALL ANIMATION
==========================================*/

.about-card,
.service-card,
.why-box{

animation:fadeUp .7s ease both;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px){

.about-grid{

grid-template-columns:1fr;

gap:40px;

}

.about-cards{

grid-template-columns:repeat(2,1fr);

}

.service-grid{

grid-template-columns:repeat(2,1fr);

}

.why-grid{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.about-content p{

font-size:16px;

text-align:left;

}

.about-cards,

.service-grid{

grid-template-columns:1fr;

}

.about-card,

.service-card,

.why-box{

padding:25px;

}

.about-card h3,

.service-card h3,

.why-box h3{

font-size:20px;

}

.why-box{

flex-direction:column;

text-align:center;

}

.why-box i{

margin:auto;

}

}










/*==========================================
LUGGAGE TYPES
==========================================*/

.luggage-types{

background:linear-gradient(180deg,#ffffff,#f7fbff);

}

.luggage-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

margin-top:55px;

}

.luggage-card{

background:#fff;

padding:35px 28px;

border-radius:24px;

text-align:center;

box-shadow:var(--shadow);

transition:var(--transition);

position:relative;

overflow:hidden;

}

.luggage-card::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:4px;

background:linear-gradient(90deg,var(--primary),var(--accent));

transform:scaleX(0);

transition:.35s;

}

.luggage-card:hover::after{

transform:scaleX(1);

}

.luggage-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-lg);

}

.luggage-card i{

width:82px;

height:82px;

margin:auto auto 22px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#edf5ff;

color:var(--primary);

font-size:34px;

transition:.35s;

}

.luggage-card:hover i{

background:var(--primary);

color:#fff;

transform:rotate(8deg) scale(1.08);

}

.luggage-card h3{

font-size:24px;

color:var(--secondary);

margin-bottom:15px;

}

.luggage-card p{

font-size:15px;

line-height:1.9;

color:#666;

}

/*==========================================
MOVING SOLUTIONS
==========================================*/

.moving-solutions{

background:#fff;

}

.solution-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:55px;

}

.solution-box{

background:#fff;

padding:35px;

border-radius:24px;

display:flex;

gap:22px;

align-items:flex-start;

box-shadow:var(--shadow);

transition:.35s;

}

.solution-box:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.solution-box i{

width:78px;

height:78px;

min-width:78px;

display:flex;

align-items:center;

justify-content:center;

border-radius:20px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

font-size:30px;

}

.solution-box h3{

font-size:24px;

margin-bottom:12px;

color:var(--secondary);

}

.solution-box p{

font-size:16px;

line-height:1.9;

color:#666;

}

/*==========================================
LUGGAGE BENEFITS
==========================================*/

.luggage-benefits{

background:linear-gradient(180deg,#f8fbff,#ffffff);

}

.benefits-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:55px;

}

.benefit-item{

background:#fff;

padding:35px;

border-radius:24px;

box-shadow:var(--shadow);

transition:.35s;

text-align:center;

}

.benefit-item:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.benefit-item i{

width:85px;

height:85px;

display:flex;

align-items:center;

justify-content:center;

margin:0 auto 22px;

border-radius:50%;

background:linear-gradient(135deg,var(--accent),#ff9d2f);

color:#fff;

font-size:34px;

}

.benefit-item h3{

font-size:24px;

margin-bottom:15px;

color:var(--secondary);

}

.benefit-item p{

font-size:16px;

line-height:1.9;

color:#666;

}

/*==========================================
PROCESS
==========================================*/

.luggage-process{

background:#fff;

}

.process-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:55px;

}

.process-card{

background:#fff;

padding:35px 25px;

border-radius:24px;

box-shadow:var(--shadow);

position:relative;

text-align:center;

transition:.35s;

}

.process-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-lg);

}

.step{

width:52px;

height:52px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:var(--primary);

color:#fff;

font-size:18px;

font-weight:700;

position:absolute;

top:-18px;

left:50%;

transform:translateX(-50%);

}

.process-card i{

font-size:42px;

color:var(--accent);

margin:28px 0 20px;

}

.process-card h3{

font-size:22px;

margin-bottom:15px;

color:var(--secondary);

}

.process-card p{

font-size:15px;

line-height:1.9;

color:#666;

}

/*==========================================
PACKING TIPS
==========================================*/

.packing-tips{

background:linear-gradient(180deg,#ffffff,#f8fbff);

}

.tips-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

margin-top:55px;

}

.tip-card{

background:#fff;

padding:35px;

border-radius:22px;

box-shadow:var(--shadow);

transition:.35s;

}

.tip-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.tip-card i{

font-size:38px;

color:var(--primary);

margin-bottom:18px;

}

.tip-card h3{

font-size:22px;

margin-bottom:14px;

color:var(--secondary);

}

.tip-card p{

font-size:15px;

line-height:1.9;

color:#666;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px){

.luggage-grid,

.tips-grid{

grid-template-columns:repeat(2,1fr);

}

.solution-grid,

.benefits-grid{

grid-template-columns:1fr;

}

.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.luggage-grid,

.solution-grid,

.benefits-grid,

.process-grid,

.tips-grid{

grid-template-columns:1fr;

}

.solution-box{

flex-direction:column;

text-align:center;

}

.solution-box i{

margin:auto;

}

.process-card,

.tip-card,

.luggage-card,

.benefit-item{

padding:28px 22px;

}

.luggage-card h3,

.solution-box h3,

.benefit-item h3,

.process-card h3,

.tip-card h3{

font-size:20px;

}

}








/*==========================================
TRANSPORT CHARGES
==========================================*/

.luggage-charges{

background:linear-gradient(180deg,#ffffff,#f8fbff);

}

.charges-table{

overflow-x:auto;

margin-top:50px;

border-radius:24px;

box-shadow:var(--shadow-lg);

}

.charges-table table{

width:100%;

border-collapse:collapse;

background:#fff;

min-width:760px;

}

.charges-table thead{

background:linear-gradient(135deg,var(--primary),var(--secondary));

}

.charges-table th{

padding:22px;

color:#fff;

font-size:17px;

text-align:left;

}

.charges-table td{

padding:18px 22px;

border-bottom:1px solid #edf1f8;

font-size:15px;

color:#555;

}

.charges-table tbody tr:hover{

background:#f8fbff;

}

.charges-note{

margin-top:25px;

padding:22px 25px;

border-left:5px solid var(--accent);

background:#fff7ef;

border-radius:16px;

line-height:1.9;

}

/*==========================================
PRICE FACTORS
==========================================*/

.pricing-factors{

background:#fff;

}

.factor-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

margin-top:55px;

}

.factor-box{

background:#fff;

padding:35px;

text-align:center;

border-radius:22px;

box-shadow:var(--shadow);

transition:.35s;

}

.factor-box:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.factor-box i{

width:78px;

height:78px;

display:flex;

align-items:center;

justify-content:center;

margin:0 auto 20px;

border-radius:50%;

background:#edf5ff;

color:var(--primary);

font-size:30px;

}

.factor-box h3{

font-size:22px;

margin-bottom:15px;

color:var(--secondary);

}

.factor-box p{

font-size:15px;

line-height:1.9;

color:#666;

}

/*==========================================
TRANSIT
==========================================*/

.luggage-transit{

background:linear-gradient(180deg,#f8fbff,#ffffff);

}

.transit-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:55px;

}

.transit-box{

background:#fff;

padding:40px;

border-radius:24px;

box-shadow:var(--shadow);

transition:.35s;

}

.transit-box:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.transit-box i{

font-size:42px;

color:var(--accent);

margin-bottom:20px;

}

.transit-box h2{

font-size:30px;

margin-bottom:18px;

color:var(--secondary);

}

.transit-box p{

line-height:1.9;

color:#666;

}

/*==========================================
CUSTOMER TYPES
==========================================*/

.customer-types{

background:#fff;

}

.customer-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

margin-top:55px;

}

.customer-card{

background:#fff;

padding:35px 20px;

text-align:center;

border-radius:22px;

box-shadow:var(--shadow);

transition:.35s;

}

.customer-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.customer-card i{

font-size:42px;

color:var(--primary);

margin-bottom:18px;

}

.customer-card h3{

font-size:22px;

color:var(--secondary);

}

/*==========================================
GUIDE / RESTRICTED / CHECKLIST
==========================================*/

.luggage-guide,
.restricted-luggage,
.student-checklist,
.arrival-guide{

background:#f8fbff;

}

.restricted-luggage{

background:#fff;

}

.guide-grid,
.restricted-grid,
.checklist-grid,
.arrival-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

margin-top:55px;

}

.guide-card,
.restricted-card,
.check-card,
.arrival-card{

background:#fff;

padding:32px;

border-radius:22px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

}

.guide-card:hover,
.restricted-card:hover,
.check-card:hover,
.arrival-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.guide-card i,
.restricted-card i,
.check-card i,
.arrival-card i{

font-size:38px;

color:var(--accent);

margin-bottom:18px;

}

.guide-card h3,
.restricted-card h3,
.arrival-card h3{

font-size:22px;

margin-bottom:14px;

color:var(--secondary);

}

.guide-card p,
.restricted-card p,
.check-card p,
.arrival-card p{

font-size:15px;

line-height:1.9;

color:#666;

}

/*==========================================
CTA
==========================================*/

.luggage-cta{

background:linear-gradient(135deg,var(--secondary),var(--primary));

color:#fff;

text-align:center;

}

.cta-content{

max-width:900px;

margin:auto;

}

.cta-content i{

font-size:80px;

color:#FFD54F;

margin-bottom:25px;

}

.cta-content h2{

font-size:44px;

margin-bottom:20px;

}

.cta-content p{

font-size:18px;

line-height:2;

margin-bottom:35px;

color:#eef5ff;

}

/*==========================================
TESTIMONIALS
==========================================*/

.luggage-testimonials{

background:#fff;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:55px;

}

.testimonial-card{

background:#fff;

padding:35px;

border-radius:22px;

box-shadow:var(--shadow);

transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.stars{

color:#FFC107;

font-size:22px;

margin-bottom:15px;

}

.testimonial-card p{

line-height:1.9;

margin-bottom:20px;

color:#666;

}

.testimonial-card h3{

font-size:22px;

color:var(--secondary);

margin-bottom:6px;

}

.testimonial-card span{

font-size:14px;

color:#777;

}

/*==========================================
QUOTE FORM
==========================================*/

.quote-section{

background:#f8fbff;

}

.quote-form{

background:#fff;

padding:40px;

border-radius:24px;

box-shadow:var(--shadow-lg);

}

.quote-form input,
.quote-form select,
.quote-form textarea{

width:100%;

padding:16px;

margin-bottom:18px;

border:1px solid var(--border);

border-radius:12px;

font-family:Poppins,sans-serif;

}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{

outline:none;

border-color:var(--primary);

}

.quote-form button{

width:100%;

padding:18px;

background:var(--accent);

border:none;

border-radius:12px;

font-size:18px;

font-weight:700;

color:#fff;

cursor:pointer;

}

/*==========================================
FAQ
==========================================*/

.faq-section{

background:#fff;

}

.faq-item{

background:#fff;

padding:28px;

margin-bottom:20px;

border-radius:18px;

box-shadow:var(--shadow);

}

.faq-item h3{

font-size:21px;

margin-bottom:14px;

color:var(--secondary);

}

.faq-item p{

line-height:1.9;

color:#666;

}

/*==========================================
FOOTER
==========================================*/

.footer{

background:#0b2e6d;

color:#fff;

padding:80px 0 30px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:40px;

}

.footer h3{

margin-bottom:20px;

font-size:22px;

}

.footer p,
.footer li{

color:#dce7ff;

line-height:2;

}

.footer ul{

list-style:none;

}

.footer a{

color:#dce7ff;

}

.footer a:hover{

color:#fff;

}

.copyright{

margin-top:40px;

padding-top:20px;

border-top:1px solid rgba(255,255,255,.15);

text-align:center;

}

/*==========================================
FLOATING BUTTONS
==========================================*/

.sticky-call,
.whatsapp-btn{

position:fixed;

bottom:20px;

z-index:999;

display:flex;

align-items:center;

justify-content:center;

box-shadow:var(--shadow-lg);

}

.sticky-call{

left:20px;

padding:14px 22px;

border-radius:50px;

background:var(--primary);

color:#fff;

font-weight:600;

}

.whatsapp-btn{

right:20px;

width:60px;

height:60px;

border-radius:50%;

background:#25D366;

color:#fff;

font-size:28px;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px){

.factor-grid,
.customer-grid,
.guide-grid,
.restricted-grid,
.checklist-grid,
.arrival-grid,
.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

.transit-grid,
.quote-grid,
.footer-grid{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.factor-grid,
.customer-grid,
.guide-grid,
.restricted-grid,
.checklist-grid,
.arrival-grid,
.testimonial-grid{

grid-template-columns:1fr;

}

.cta-content h2{

font-size:30px;

}

.transit-box{

padding:28px;

}

.quote-form{

padding:25px;

}

.sticky-call{

left:12px;

bottom:12px;

padding:12px 18px;

font-size:14px;

}

.whatsapp-btn{

right:12px;

bottom:12px;

width:55px;

height:55px;

font-size:24px;

}

}