/*==========================================
CENTURY CARGO
COURIER SERVICE 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:#062B63;
--accent:#00B8D9;
--orange:#FF7A00;

--white:#ffffff;
--light:#F4F9FF;
--dark:#1F2937;
--text:#5B6475;

--border:#E4EDF8;

--shadow:0 15px 40px rgba(0,0,0,.08);
--shadow-lg:0 25px 70px rgba(0,0,0,.14);

--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;

color:var(--dark);

background:#fff;

overflow-x:hidden;

}

.container{

width:100%;

max-width:1280px;

margin:auto;

padding:0 20px;

}

section{

padding:90px 0;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

transition:var(--transition);

}

ul{

list-style:none;

}

/*==========================================
SECTION HEADING
==========================================*/

.section-heading{

text-align:center;

margin-bottom:60px;

}

.section-subtitle{

display:inline-block;

padding:9px 24px;

border-radius:50px;

background:#EAF5FF;

color:var(--primary);

font-size:14px;

font-weight:700;

letter-spacing:1px;

text-transform:uppercase;

margin-bottom:18px;

}

.section-heading h2{

font-size:42px;

font-weight:800;

line-height:1.3;

color:var(--secondary);

margin-bottom:18px;

}

.section-heading p{

max-width:950px;

margin:auto;

font-size:17px;

line-height:1.9;

color:#667085;

}

/*==========================================
BREADCRUMB
==========================================*/

.breadcrumb-area{

background:#F8FBFF;

padding:18px 0;

border-bottom:1px solid var(--border);

}

.breadcrumb{

display:flex;

gap:12px;

flex-wrap:wrap;

align-items:center;

}

.breadcrumb li{

font-size:15px;

color:#666;

}

.breadcrumb li a{

color:var(--primary);

font-weight:600;

}

.breadcrumb li:not(:last-child)::after{

content:">";

margin-left:12px;

color:#999;

}

/*==========================================
HERO
==========================================*/

.courier-hero{

background:linear-gradient(135deg,#062B63,#0057D9,#0084FF);

position:relative;

overflow:hidden;

padding:120px 0;

}

.courier-hero::before{

content:"";

position:absolute;

width:420px;

height:420px;

right:-130px;

top:-130px;

border-radius:50%;

background:rgba(255,255,255,.06);

}

.courier-hero::after{

content:"";

position:absolute;

width:320px;

height:320px;

left:-120px;

bottom:-120px;

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(12px);

border-radius:50px;

color:#fff;

font-weight:600;

margin-bottom:28px;

}

.hero-badge i{

color:#8EF0FF;

font-size:18px;

}

/*==========================================
CONTENT
==========================================*/

.hero-content h1{

font-size:60px;

line-height:1.15;

font-weight:800;

color:#fff;

margin-bottom:24px;

}

.hero-content h1 span{

display:block;

color:#8EF0FF;

}

.hero-content p{

font-size:18px;

line-height:1.9;

color:#EAF5FF;

margin-bottom:35px;

}

/*==========================================
FEATURES
==========================================*/

.hero-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-bottom:35px;

}

.hero-features div{

display:flex;

align-items:center;

gap:12px;

padding:18px;

border-radius:15px;

background:rgba(255,255,255,.10);

backdrop-filter:blur(12px);

color:#fff;

font-weight:600;

}

.hero-features i{

font-size:22px;

color:#8EF0FF;

}

/*==========================================
BUTTONS
==========================================*/

.hero-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

}

.quote-btn{

padding:16px 34px;

background:var(--orange);

color:#fff;

font-weight:700;

border-radius:12px;

display:inline-flex;

align-items:center;

justify-content:center;

}

.hero-call{

padding:16px 34px;

background:#fff;

color:var(--primary);

font-weight:700;

border-radius:12px;

display:inline-flex;

align-items:center;

justify-content:center;

}

.quote-btn:hover,

.hero-call:hover{

transform:translateY(-4px);

}

/*==========================================
ANIMATED PAPER PLANE
==========================================*/

.hero-icon{

display:flex;

justify-content:center;

align-items:center;

}

.hero-circle{

width:340px;

height:340px;

border-radius:50%;

background:rgba(255,255,255,.10);

backdrop-filter:blur(15px);

display:flex;

justify-content:center;

align-items:center;

border:2px solid rgba(255,255,255,.12);

box-shadow:0 25px 80px rgba(0,0,0,.20);

animation:planeFloat 4s ease-in-out infinite;

}

.hero-circle i{

font-size:145px;

color:#8EF0FF;

transform:rotate(-18deg);

}

@keyframes planeFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

/*==========================================
COURIER NETWORK
==========================================*/

.courier-network{

background:#fff;

}

.network-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

margin-top:55px;

}

.network-card{

background:#fff;

padding:35px 28px;

border-radius:22px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

}

.network-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-lg);

}

.network-card i{

width:82px;

height:82px;

margin:auto auto 20px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#EAF8FF;

color:#0095C8;

font-size:34px;

}

.network-card h3{

font-size:24px;

margin-bottom:15px;

color:var(--secondary);

}

.network-card p{

font-size:15px;

line-height:1.9;

color:#666;

}

/*==========================================
TRUST STRIP
==========================================*/

.trust-strip{

background:#F8FBFF;

}

.trust-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:22px;

}

.trust-card{

background:#fff;

padding:28px 18px;

text-align:center;

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:40px;

color:#00A4D6;

margin-bottom:18px;

}

.trust-card h3{

font-size:20px;

color:var(--secondary);

margin-bottom:8px;

}

.trust-card p{

font-size:15px;

color:#666;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-features{

grid-template-columns:1fr;

}

.hero-buttons{

justify-content:center;

}

.network-grid{

grid-template-columns:repeat(2,1fr);

}

.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%;

}

.network-grid,

.trust-grid{

grid-template-columns:1fr;

}

.hero-circle{

width:210px;

height:210px;

}

.hero-circle i{

font-size:82px;

}

}








/*==========================================
ABOUT COURIER
==========================================*/

.about-courier{

background:linear-gradient(180deg,#ffffff,#f7fbff);

position:relative;

overflow:hidden;

}

.about-courier::before{

content:"";

position:absolute;

width:280px;

height:280px;

border-radius:50%;

background:rgba(0,184,217,.06);

top:60px;

right:-120px;

}

.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:#5f6674;

text-align:justify;

}

/*==========================================
ABOUT SIDE CARDS
==========================================*/

.about-side{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:22px;

}

.about-card{

background:#fff;

padding:30px 24px;

border-radius:22px;

box-shadow:var(--shadow);

transition:.35s;

border-top:4px solid transparent;

}

.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;

margin-bottom:20px;

border-radius:18px;

background:#EAF8FF;

color:#0098D6;

font-size:30px;

}

.about-card h3{

font-size:22px;

color:var(--secondary);

margin-bottom:14px;

line-height:1.4;

}

.about-card p{

font-size:15px;

line-height:1.8;

color:#666;

}

/*==========================================
COURIER CATEGORIES
==========================================*/

.courier-categories{

background:#fff;

}

.category-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

margin-top:55px;

}

.category-card{

background:#fff;

padding:35px 28px;

border-radius:22px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

position:relative;

overflow:hidden;

}

.category-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#00A4D6,#0057D9);

transform:scaleX(0);

transition:.35s;

}

.category-card:hover::before{

transform:scaleX(1);

}

.category-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-lg);

}

.category-card i{

width:80px;

height:80px;

display:flex;

align-items:center;

justify-content:center;

margin:auto auto 20px;

border-radius:50%;

background:#EDF9FF;

font-size:34px;

color:#00A4D6;

transition:.35s;

}

.category-card:hover i{

background:#00A4D6;

color:#fff;

transform:rotate(-10deg);

}

.category-card h3{

font-size:23px;

margin-bottom:14px;

color:var(--secondary);

}

.category-card p{

font-size:15px;

line-height:1.9;

color:#666;

}

/*==========================================
WHY COURIER
==========================================*/

.why-courier{

background:linear-gradient(180deg,#f8fbff,#ffffff);

}

.why-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:55px;

}

.why-card{

background:#fff;

padding:35px;

display:flex;

align-items:flex-start;

gap:22px;

border-radius:24px;

box-shadow:var(--shadow);

transition:.35s;

}

.why-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.why-card i{

width:78px;

height:78px;

min-width:78px;

display:flex;

align-items:center;

justify-content:center;

border-radius:20px;

background:linear-gradient(135deg,#00B8D9,#0057D9);

color:#fff;

font-size:30px;

}

.why-card h3{

font-size:24px;

margin-bottom:12px;

color:var(--secondary);

}

.why-card p{

font-size:16px;

line-height:1.9;

color:#666;

}

/*==========================================
AIR • SURFACE • EXPRESS
==========================================*/

.courier-services{

background:#fff;

}

.courier-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

margin-top:55px;

}

.courier-card{

background:#fff;

padding:38px 30px;

border-radius:24px;

box-shadow:var(--shadow);

transition:.35s;

position:relative;

overflow:hidden;

}

.courier-card::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:4px;

background:linear-gradient(90deg,#00B8D9,#0057D9);

transform:scaleX(0);

transition:.35s;

}

.courier-card:hover::after{

transform:scaleX(1);

}

.courier-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-lg);

}

.courier-icon{

width:90px;

height:90px;

margin-bottom:24px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#EAF9FF;

}

.courier-icon i{

font-size:40px;

color:#009FD4;

}

.courier-card h3{

font-size:25px;

margin-bottom:15px;

color:var(--secondary);

}

.courier-card p{

font-size:15px;

line-height:1.9;

margin-bottom:18px;

color:#666;

}

.courier-card ul li{

display:flex;

align-items:center;

gap:10px;

margin-bottom:12px;

font-size:15px;

color:#555;

}

.courier-card ul i{

color:#10B981;

}

/*==========================================
ANIMATION
==========================================*/

.about-card,
.category-card,
.why-card,
.courier-card{

animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px){

.about-grid{

grid-template-columns:1fr;

}

.about-side{

grid-template-columns:repeat(2,1fr);

}

.category-grid,

.courier-grid{

grid-template-columns:repeat(2,1fr);

}

.why-grid{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.about-side,

.category-grid,

.courier-grid,

.why-grid{

grid-template-columns:1fr;

}

.about-content p{

text-align:left;

font-size:16px;

}

.about-card,

.category-card,

.courier-card{

padding:28px 22px;

}

.why-card{

flex-direction:column;

text-align:center;

padding:28px 22px;

}

.why-card i{

margin:auto;

}

.about-card h3,

.category-card h3,

.courier-card h3,

.why-card h3{

font-size:20px;

}

}







/*==========================================
BOOKING PROCESS
==========================================*/

.booking-process{

background:linear-gradient(180deg,#ffffff,#f6fbff);

}

.process-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:28px;

margin-top:55px;

}

.process-card{

position:relative;

background:#fff;

padding:45px 28px 30px;

border-radius:24px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

overflow:hidden;

}

.process-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-lg);

}

.process-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#00B8D9,#0057D9);

transform:scaleX(0);

transition:.35s;

}

.process-card:hover::before{

transform:scaleX(1);

}

.step-number{

position:absolute;

top:18px;

right:18px;

width:46px;

height:46px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#0057D9;

color:#fff;

font-size:15px;

font-weight:700;

}

.process-card i{

font-size:42px;

color:#00A7D7;

margin-bottom:22px;

}

.process-card h3{

font-size:22px;

margin-bottom:15px;

color:var(--secondary);

}

.process-card p{

font-size:15px;

line-height:1.9;

color:#666;

}

/*==========================================
PACKAGING GUIDE
==========================================*/

.packaging-guide{

background:#fff;

}

.guide-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

margin-top:55px;

}

.guide-card{

background:#fff;

padding:35px 28px;

border-radius:22px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

}

.guide-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-lg);

}

.guide-card i{

width:85px;

height:85px;

margin:auto auto 20px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#EDF9FF;

color:#00A6D8;

font-size:34px;

}

.guide-card h3{

font-size:22px;

margin-bottom:15px;

color:var(--secondary);

}

.guide-card p{

font-size:15px;

line-height:1.9;

color:#666;

}

/*==========================================
SHIPMENT TYPES
==========================================*/

.shipment-types{

background:linear-gradient(180deg,#f8fbff,#ffffff);

}

.shipment-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:55px;

}

.shipment-card{

background:#fff;

padding:35px 20px;

border-radius:22px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

}

.shipment-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.shipment-card i{

font-size:40px;

color:#009FD4;

margin-bottom:18px;

}

.shipment-card h3{

font-size:20px;

line-height:1.5;

color:var(--secondary);

}

/*==========================================
WHY CENTURY
==========================================*/

.why-century{

background:#fff;

}

.why-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:55px;

}

.why-card{

display:flex;

gap:22px;

align-items:flex-start;

background:#fff;

padding:35px;

border-radius:24px;

box-shadow:var(--shadow);

transition:.35s;

}

.why-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.why-card i{

width:80px;

height:80px;

min-width:80px;

display:flex;

align-items:center;

justify-content:center;

border-radius:20px;

background:linear-gradient(135deg,#00B8D9,#0057D9);

color:#fff;

font-size:32px;

}

.why-card h3{

font-size:23px;

margin-bottom:12px;

color:var(--secondary);

}

.why-card p{

font-size:15px;

line-height:1.9;

color:#666;

}

/*==========================================
ANIMATION
==========================================*/

.process-card,
.guide-card,
.shipment-card,
.why-card{

animation:slideUp .8s ease both;

}

@keyframes slideUp{

0%{

opacity:0;

transform:translateY(35px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

.guide-grid{

grid-template-columns:repeat(2,1fr);

}

.shipment-grid{

grid-template-columns:repeat(2,1fr);

}

.why-grid{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.process-grid,

.guide-grid,

.shipment-grid,

.why-grid{

grid-template-columns:1fr;

}

.process-card,

.guide-card,

.shipment-card{

padding:30px 22px;

}

.why-card{

flex-direction:column;

text-align:center;

padding:30px 22px;

}

.why-card i{

margin:auto;

}

.process-card h3,

.guide-card h3,

.shipment-card h3,

.why-card h3{

font-size:20px;

}

}







/*==========================================
COURIER CHARGES
==========================================*/

.courier-pricing{

background:linear-gradient(180deg,#ffffff,#f7fbff);

}

.price-table{

overflow-x:auto;

margin-top:50px;

border-radius:24px;

box-shadow:var(--shadow-lg);

}

.price-table table{

width:100%;

min-width:900px;

border-collapse:collapse;

background:#fff;

}

.price-table thead{

background:linear-gradient(135deg,#0057D9,#00B8D9);

}

.price-table th{

padding:20px;

text-align:left;

font-size:16px;

font-weight:700;

color:#fff;

}

.price-table td{

padding:18px 20px;

font-size:15px;

color:#555;

border-bottom:1px solid #EDF2F7;

}

.price-table tbody tr:hover{

background:#F8FCFF;

}

.pricing-note{

margin-top:25px;

padding:22px;

display:flex;

gap:15px;

align-items:flex-start;

background:#EDF9FF;

border-left:5px solid #00B8D9;

border-radius:16px;

}

.pricing-note i{

font-size:24px;

color:#00A6D8;

margin-top:2px;

}

/*==========================================
COMPARISON
==========================================*/

.courier-comparison{

background:#fff;

}

.comparison-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:55px;

}

.comparison-card{

background:#fff;

padding:35px;

border-radius:24px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

}

.comparison-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-lg);

}

.comparison-card i{

font-size:48px;

color:#00A6D8;

margin-bottom:20px;

}

.comparison-card h3{

font-size:24px;

margin-bottom:18px;

color:var(--secondary);

}

.comparison-card ul{

padding:0;

margin:0;

}

.comparison-card li{

padding:10px 0;

border-bottom:1px solid #EEF4FA;

font-size:15px;

color:#666;

}

.comparison-card li:last-child{

border:none;

}

/*==========================================
FACTORS
==========================================*/

.pricing-factors{

background:#F8FBFF;

}

.factor-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

margin-top:55px;

}

.factor-card{

background:#fff;

padding:35px;

border-radius:22px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

}

.factor-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.factor-card i{

font-size:42px;

color:#00A6D8;

margin-bottom:20px;

}

.factor-card h3{

font-size:22px;

margin-bottom:15px;

color:var(--secondary);

}

.factor-card p{

line-height:1.9;

color:#666;

}

/*==========================================
ACCEPTED / RESTRICTED / CHECKLIST
==========================================*/

.accepted-shipments,
.dispatch-checklist{

background:#fff;

}

.restricted-items{

background:#F8FBFF;

}

.accepted-grid,
.restricted-grid,
.checklist-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

margin-top:55px;

}

.accepted-card,
.restricted-card,
.check-card{

background:#fff;

padding:35px 28px;

text-align:center;

border-radius:22px;

box-shadow:var(--shadow);

transition:.35s;

}

.accepted-card:hover,
.restricted-card:hover,
.check-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.accepted-card i,
.restricted-card i,
.check-card i{

font-size:40px;

color:#00A6D8;

margin-bottom:20px;

}

.accepted-card h3,
.restricted-card h3{

font-size:22px;

margin-bottom:15px;

color:var(--secondary);

}

.accepted-card p,
.restricted-card p,
.check-card p{

line-height:1.9;

color:#666;

}

/*==========================================
BUSINESS OPERATIONS
==========================================*/

.daily-courier{

background:#fff;

}

.daily-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:55px;

}

.daily-card{

background:#fff;

padding:35px;

border-radius:24px;

box-shadow:var(--shadow);

text-align:center;

transition:.35s;

}

.daily-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.daily-card i{

font-size:45px;

color:#00A6D8;

margin-bottom:18px;

}

.daily-card h3{

font-size:22px;

margin-bottom:15px;

color:var(--secondary);

}

.daily-card p{

line-height:1.9;

color:#666;

}

/*==========================================
CTA
==========================================*/

.courier-cta{

background:linear-gradient(135deg,#0057D9,#00B8D9);

color:#fff;

text-align:center;

}

.cta-content{

max-width:900px;

margin:auto;

}

.cta-content i{

font-size:70px;

margin-bottom:20px;

}

.cta-content h2{

font-size:42px;

margin-bottom:20px;

}

.cta-content p{

font-size:18px;

line-height:1.9;

margin-bottom:35px;

}

/*==========================================
TESTIMONIAL
==========================================*/

.client-testimonials{

background:#F8FBFF;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

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:20px;

margin-bottom:18px;

}

.testimonial-card p{

line-height:1.9;

margin-bottom:18px;

color:#666;

}

.testimonial-card h3{

font-size:22px;

margin-bottom:5px;

color:var(--secondary);

}

.testimonial-card span{

font-size:14px;

color:#777;

}

/*==========================================
QUOTE
==========================================*/

.quote-section{

background:#fff;

}

.quote-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

}

.quote-form{

background:#F8FBFF;

padding:35px;

border-radius:24px;

box-shadow:var(--shadow);

}

.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 button{

width:100%;

padding:16px;

border:none;

border-radius:12px;

background:#FF7A00;

color:#fff;

font-size:17px;

font-weight:700;

cursor:pointer;

}

/*==========================================
FAQ
==========================================*/

.faq-section{

background:#F8FBFF;

}

.faq-item{

background:#fff;

padding:28px;

margin-bottom:20px;

border-radius:18px;

box-shadow:var(--shadow);

}

.faq-item h3{

font-size:21px;

margin-bottom:12px;

color:var(--secondary);

}

.faq-item p{

line-height:1.9;

color:#666;

}

/*==========================================
RELATED SERVICES
==========================================*/

.related-services{

background:#fff;

}

.related-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:22px;

margin-top:50px;

}

.related-grid a{

display:flex;

align-items:center;

gap:12px;

padding:22px;

background:#F8FBFF;

border-radius:18px;

font-weight:600;

color:var(--secondary);

box-shadow:var(--shadow);

transition:.35s;

}

.related-grid a:hover{

background:#0057D9;

color:#fff;

}

.related-grid i{

font-size:22px;

}

/*==========================================
FOOTER
==========================================*/

.footer{

background:#062B63;

color:#fff;

padding:70px 0 30px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:35px;

}

.footer h3{

margin-bottom:20px;

font-size:22px;

}

.footer ul{

list-style:none;

}

.footer li{

margin-bottom:10px;

}

.footer p,
.footer a{

color:#D7E7FF;

line-height:1.9;

}

.footer a:hover{

color:#fff;

}

.copyright{

margin-top:35px;

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:#0057D9;

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){

.comparison-grid,
.factor-grid,
.accepted-grid,
.restricted-grid,
.checklist-grid,
.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

.daily-grid,
.quote-grid,
.footer-grid{

grid-template-columns:1fr;

}

.related-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.comparison-grid,
.factor-grid,
.accepted-grid,
.restricted-grid,
.checklist-grid,
.daily-grid,
.testimonial-grid,
.related-grid{

grid-template-columns:1fr;

}

.cta-content h2{

font-size:30px;

}

.quote-form{

padding:25px;

}

.sticky-call{

left:12px;

bottom:12px;

font-size:14px;

padding:12px 18px;

}

.whatsapp-btn{

right:12px;

bottom:12px;

width:55px;

height:55px;

font-size:24px;

}

}


