/* =========================================
InfoTrend — Global Styles
========================================= */

@import url(‘https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&family=Roboto:wght@300;400;500&display=swap’);

:root {
–red: #E30613;
–black: #0a0a0a;
–dark: #111111;
–white: #ffffff;
–gray: #f5f5f7;
–gray-mid: #888;
–glass-bg: rgba(255,255,255,0.08);
–glass-border: rgba(255,255,255,0.15);
–nav-height: 80px;
–transition: 0.4s cubic-bezier(0.25,0.8,0.25,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
font-family: ‘Roboto’, sans-serif;
background: var(–white);
color: var(–black);
overflow-x: hidden;
line-height: 1.6;
}

h1, h2, h3, h4, h5 {
font-family: ‘Poppins’, sans-serif;
line-height: 1.2;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* =========================================
NAVIGATION — Glass
========================================= */

.nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 1000;
height: var(–nav-height);
display: flex;
align-items: center;
padding: 0 5%;
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
background: rgba(255,255,255,0.75);
border-bottom: 1px solid rgba(0,0,0,0.06);
transition: background var(–transition), box-shadow var(–transition);
}

.nav.scrolled {
background: rgba(255,255,255,0.95);
box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.nav__logo {
display: flex;
align-items: center;
gap: 10px;
font-family: ‘Poppins’, sans-serif;
font-weight: 800;
font-size: 1.5rem;
color: var(–black);
}

.nav__logo img {
height: 40px;
width: auto;
}

.nav__links {
display: flex;
align-items: center;
gap: 36px;
margin-left: auto;
list-style: none;
}

.nav__links a {
font-family: ‘Roboto’, sans-serif;
font-size: 0.95rem;
font-weight: 500;
color: var(–black);
position: relative;
transition: color var(–transition);
}

.nav__links a::after {
content: ‘’;
position: absolute;
bottom: -3px; left: 0;
width: 0; height: 2px;
background: var(–red);
transition: width var(–transition);
}

.nav__links a:hover { color: var(–red); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
background: var(–red);
color: var(–white) !important;
padding: 10px 24px;
border-radius: 4px;
font-weight: 600 !important;
transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}

.nav__cta:hover {
background: #c0000f !important;
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(227,6,19,0.35) !important;
}

.nav__cta::after { display: none !important; }

/* Burger */
.nav__burger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
margin-left: auto;
padding: 8px;
}

.nav__burger span {
width: 24px; height: 2px;
background: var(–black);
transition: var(–transition);
border-radius: 2px;
}

/* =========================================
HERO
========================================= */

.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
overflow: hidden;
padding: 0 5%;
padding-top: var(–nav-height);
}

.hero__bg {
position: absolute;
inset: 0;
background-image: url(’../images/background.png’);
background-size: cover;
background-position: center;
filter: brightness(0.45);
transform: scale(1.05);
animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
from { transform: scale(1.05); }
to   { transform: scale(1.12); }
}

.hero__overlay {
position: absolute;
inset: 0;
background: linear-gradient(
135deg,
rgba(0,0,0,0.85) 0%,
rgba(227,6,19,0.18) 60%,
rgba(0,0,0,0.5) 100%
);
}

.hero__content {
position: relative;
z-index: 2;
max-width: 680px;
}

.hero__badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(227,6,19,0.15);
border: 1px solid rgba(227,6,19,0.4);
color: #ff6b6b;
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
padding: 6px 16px;
border-radius: 40px;
margin-bottom: 28px;
animation: fadeInUp 0.8s ease both;
}

.hero__badge::before {
content: ‘’;
width: 6px; height: 6px;
background: var(–red);
border-radius: 50%;
animation: pulse 1.5s infinite;
}

@keyframes pulse {
0%,100% { opacity: 1; transform: scale(1); }
50%      { opacity: 0.4; transform: scale(1.4); }
}

.hero__title {
font-size: clamp(2.4rem, 5.5vw, 4.2rem);
font-weight: 800;
color: var(–white);
margin-bottom: 24px;
animation: fadeInUp 0.9s 0.15s ease both;
}

.hero__title span { color: var(–red); }

.hero__subtitle {
font-size: 1.1rem;
color: rgba(255,255,255,0.75);
max-width: 560px;
margin-bottom: 40px;
animation: fadeInUp 1s 0.3s ease both;
font-weight: 300;
}

.hero__actions {
display: flex;
gap: 16px;
flex-wrap: wrap;
animation: fadeInUp 1s 0.45s ease both;
}

.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 15px 32px;
border-radius: 4px;
font-family: ‘Poppins’, sans-serif;
font-weight: 600;
font-size: 0.95rem;
cursor: pointer;
border: 2px solid transparent;
transition: all 0.3s ease;
white-space: nowrap;
}

.btn–primary {
background: var(–red);
color: var(–white);
border-color: var(–red);
}

.btn–primary:hover {
background: #c0000f;
border-color: #c0000f;
transform: translateY(-3px);
box-shadow: 0 12px 32px rgba(227,6,19,0.4);
}

.btn–outline {
background: transparent;
color: var(–white);
border-color: rgba(255,255,255,0.5);
}

.btn–outline:hover {
border-color: var(–white);
background: rgba(255,255,255,0.08);
transform: translateY(-3px);
}

.btn–dark {
background: var(–black);
color: var(–white);
border-color: var(–black);
}

.btn–dark:hover {
background: #222;
transform: translateY(-3px);
box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.hero__scroll {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
color: rgba(255,255,255,0.5);
font-size: 0.75rem;
letter-spacing: 0.1em;
text-transform: uppercase;
animation: fadeIn 1.5s 1s both;
}

.hero__scroll-line {
width: 1px; height: 48px;
background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
0%   { transform: scaleY(0); transform-origin: top; }
50%  { transform: scaleY(1); transform-origin: top; }
51%  { transform: scaleY(1); transform-origin: bottom; }
100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================
STATS BAR
========================================= */

.stats {
background: var(–black);
padding: 40px 5%;
}

.stats__inner {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
max-width: 1200px;
margin: 0 auto;
}

.stats__item {
text-align: center;
padding: 20px;
border-right: 1px solid rgba(255,255,255,0.08);
opacity: 1;
transform: none;
transition: opacity 0.6s ease, transform 0.6s ease;
}

.stats__item:last-child { border-right: none; }
.stats__item.animate { opacity: 0; transform: translateY(20px); }
.stats__item.visible { opacity: 1; transform: none; }

.stats__num {
font-family: ‘Poppins’, sans-serif;
font-size: 2.5rem;
font-weight: 800;
color: var(–red);
line-height: 1;
}

.stats__label {
color: rgba(255,255,255,0.55);
font-size: 0.85rem;
margin-top: 6px;
}

/* =========================================
SECTIONS SHARED
========================================= */

.section { padding: 100px 5%; }

.section__label {
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(–red);
margin-bottom: 12px;
display: block;
}

.section__title {
font-size: clamp(1.8rem, 3.5vw, 2.8rem);
font-weight: 800;
margin-bottom: 16px;
}

.section__subtitle {
font-size: 1.05rem;
color: var(–gray-mid);
max-width: 600px;
font-weight: 300;
}

.text-center {
text-align: center;
}

.text-center .section__subtitle {
margin: 0 auto;
}

/* Fade-in on scroll */
.fade-in {
opacity: 1;
transform: none;
transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.will-animate {
opacity: 0;
transform: translateY(36px);
}

.fade-in.visible {
opacity: 1;
transform: none;
}

/* =========================================
SERVICES
========================================= */

.services { background: var(–gray); }

.services__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 60px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}

.service-card {
background: var(–white);
border-radius: 12px;
padding: 44px 36px;
position: relative;
overflow: hidden;
transition: transform 0.35s ease, box-shadow 0.35s ease;
cursor: default;
}

.service-card::before {
content: ‘’;
position: absolute;
bottom: 0; left: 0; right: 0;
height: 3px;
background: var(–red);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}

.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
width: 64px; height: 64px;
margin-bottom: 24px;
filter: none;
}

.service-card__title {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 12px;
}

.service-card__text {
color: var(–gray-mid);
font-size: 0.95rem;
line-height: 1.7;
}

/* =========================================
HOW IT WORKS
========================================= */

.how { background: var(–white); }

.how__steps {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 32px;
margin-top: 60px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
position: relative;
}

.how__steps::before {
content: ‘’;
position: absolute;
top: 38px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
height: 2px;
background: linear-gradient(to right, var(–red), transparent);
z-index: 0;
}

.how__step {
text-align: center;
position: relative;
z-index: 1;
}

.how__step-num {
width: 76px; height: 76px;
background: var(–black);
color: var(–white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: ‘Poppins’, sans-serif;
font-size: 1.4rem;
font-weight: 800;
margin: 0 auto 20px;
border: 4px solid var(–white);
box-shadow: 0 0 0 2px var(–red);
transition: background 0.3s, transform 0.3s;
}

.how__step:hover .how__step-num {
background: var(–red);
transform: scale(1.1);
}

.how__step-title {
font-size: 1rem;
font-weight: 700;
margin-bottom: 8px;
}

.how__step-text {
font-size: 0.88rem;
color: var(–gray-mid);
}

/* =========================================
TRUST / WHY US
========================================= */

.trust { background: var(–black); color: var(–white); }

.trust__grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 0;
margin-top: 60px;
max-width: 1100px;
margin-left: auto;
margin-right: auto;
}

.trust__item {
padding: 40px 44px;
border-bottom: 1px solid rgba(255,255,255,0.06);
border-right: 1px solid rgba(255,255,255,0.06);
display: flex;
gap: 20px;
transition: background 0.3s;
}

.trust__item:hover { background: rgba(255,255,255,0.03); }
.trust__item:nth-child(2n) { border-right: none; }
.trust__item:nth-last-child(-n+2) { border-bottom: none; }

.trust__icon {
font-size: 2rem;
flex-shrink: 0;
margin-top: 4px;
}

.trust__title {
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 8px;
}

.trust__text {
font-size: 0.9rem;
color: rgba(255,255,255,0.5);
line-height: 1.7;
}

/* =========================================
PACKAGES
========================================= */

.packages { background: var(–gray); }

.packages__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 60px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}

.pkg-card {
background: var(–white);
border-radius: 16px;
padding: 48px 36px;
position: relative;
transition: transform 0.35s ease, box-shadow 0.35s ease;
overflow: hidden;
}

.pkg-card:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(0,0,0,0.12); }

.pkg-card–featured {
background: var(–black);
color: var(–white);
transform: translateY(-8px);
box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.pkg-card–featured:hover { transform: translateY(-18px); box-shadow: 0 40px 80px rgba(0,0,0,0.3); }

.pkg-badge {
position: absolute;
top: 24px; right: 24px;
background: var(–red);
color: white;
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 4px 12px;
border-radius: 20px;
}

.pkg-name {
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(–red);
margin-bottom: 12px;
}

.pkg-title {
font-size: 1.6rem;
font-weight: 800;
margin-bottom: 6px;
}

.pkg-sub {
font-size: 0.9rem;
color: var(–gray-mid);
margin-bottom: 32px;
font-style: italic;
}

.pkg-card–featured .pkg-sub { color: rgba(255,255,255,0.5); }

.pkg-features {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 36px;
}

.pkg-features li {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 0.9rem;
color: var(–gray-mid);
}

.pkg-card–featured .pkg-features li { color: rgba(255,255,255,0.65); }

.pkg-features li::before {
content: ‘✓’;
color: var(–red);
font-weight: 700;
flex-shrink: 0;
margin-top: 1px;
}

/* =========================================
TESTIMONIALS
========================================= */

.testimonials { background: var(–white); }

.testimonials__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 60px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}

.testi-card {
background: var(–gray);
border-radius: 12px;
padding: 36px;
position: relative;
transition: transform 0.3s, box-shadow 0.3s;
}

.testi-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }

.testi-quote {
font-size: 3rem;
color: var(–red);
font-family: ‘Poppins’, sans-serif;
font-weight: 900;
line-height: 1;
margin-bottom: 16px;
opacity: 0.7;
}

.testi-text {
font-size: 0.95rem;
line-height: 1.8;
color: #333;
margin-bottom: 28px;
}

.testi-author {
display: flex;
align-items: center;
gap: 14px;
}

.testi-avatar {
width: 44px; height: 44px;
border-radius: 50%;
background: var(–red);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-family: ‘Poppins’, sans-serif;
font-weight: 700;
font-size: 1rem;
}

.testi-name {
font-weight: 600;
font-size: 0.95rem;
}

.testi-role {
font-size: 0.8rem;
color: var(–gray-mid);
}

.testi-stars {
color: var(–red);
font-size: 0.85rem;
margin-top: 2px;
}

/* =========================================
CTA SECTION
========================================= */

.cta {
background: var(–red);
padding: 100px 5%;
text-align: center;
position: relative;
overflow: hidden;
}

.cta::before {
content: ‘’;
position: absolute;
top: -60px; left: -60px;
width: 300px; height: 300px;
background: rgba(255,255,255,0.05);
border-radius: 50%;
}

.cta::after {
content: ‘’;
position: absolute;
bottom: -80px; right: -80px;
width: 400px; height: 400px;
background: rgba(0,0,0,0.08);
border-radius: 50%;
}

.cta__title {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
color: var(–white);
margin-bottom: 16px;
position: relative;
z-index: 1;
}

.cta__text {
color: rgba(255,255,255,0.8);
font-size: 1.1rem;
margin-bottom: 40px;
position: relative;
z-index: 1;
}

.btn–white {
background: var(–white);
color: var(–red);
border-color: var(–white);
position: relative;
z-index: 1;
}

.btn–white:hover {
background: var(–black);
color: var(–white);
border-color: var(–black);
transform: translateY(-3px);
box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

/* =========================================
CONTACT FORM
========================================= */

.contact { background: var(–white); }

.contact__inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
max-width: 1100px;
margin: 60px auto 0;
align-items: start;
}

.contact__info h3 {
font-size: 1.5rem;
margin-bottom: 16px;
}

.contact__info p {
color: var(–gray-mid);
margin-bottom: 32px;
line-height: 1.8;
}

.contact__detail {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 20px;
font-size: 0.95rem;
}

.contact__detail-icon {
width: 44px; height: 44px;
background: var(–gray);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
flex-shrink: 0;
}

.contact__form {
display: flex;
flex-direction: column;
gap: 16px;
}

.form-group {
display: flex;
flex-direction: column;
gap: 6px;
}

.form-group label {
font-size: 0.85rem;
font-weight: 600;
color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
padding: 14px 18px;
border: 2px solid #e5e5e5;
border-radius: 8px;
font-family: ‘Roboto’, sans-serif;
font-size: 0.95rem;
color: var(–black);
background: var(–white);
transition: border-color 0.25s, box-shadow 0.25s;
outline: none;
resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
border-color: var(–red);
box-shadow: 0 0 0 4px rgba(227,6,19,0.08);
}

.form-group textarea { height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =========================================
FOOTER
========================================= */

.footer {
background: var(–black);
color: var(–white);
padding: 70px 5% 30px;
}

.footer__inner {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 48px;
max-width: 1200px;
margin: 0 auto;
}

.footer__brand img {
height: 36px;
margin-bottom: 16px;
filter: brightness(0) invert(1);
}

.footer__desc {
font-size: 0.9rem;
color: rgba(255,255,255,0.45);
line-height: 1.8;
margin-bottom: 24px;
}

.footer__social {
display: flex;
gap: 12px;
}

.footer__social a {
width: 38px; height: 38px;
background: rgba(255,255,255,0.07);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1rem;
transition: background 0.25s, transform 0.25s;
}

.footer__social a:hover {
background: var(–red);
transform: translateY(-3px);
}

.footer__col h4 {
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(255,255,255,0.4);
margin-bottom: 20px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer__col ul a {
font-size: 0.9rem;
color: rgba(255,255,255,0.6);
transition: color 0.25s, padding-left 0.25s;
}

.footer__col ul a:hover {
color: var(–white);
padding-left: 6px;
}

.footer__bottom {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 60px;
padding-top: 28px;
border-top: 1px solid rgba(255,255,255,0.06);
font-size: 0.85rem;
color: rgba(255,255,255,0.3);
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}

/* =========================================
PAGE PLACEHOLDER (for sub-pages)
========================================= */

.page-placeholder {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 120px 5% 80px;
}

.page-placeholder h1 { font-size: 3rem; margin-bottom: 16px; }
.page-placeholder p { color: var(–gray-mid); font-size: 1.1rem; margin-bottom: 32px; }

/* =========================================
ANIMATIONS
========================================= */

@keyframes fadeInUp {
from { opacity: 0; transform: translateY(28px); }
to   { opacity: 1; transform: none; }
}

@keyframes fadeIn {
from { opacity: 0; }
to   { opacity: 1; }
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 1024px) {
.services__grid,
.packages__grid,
.testimonials__grid {
grid-template-columns: repeat(2, 1fr);
}

.stats__inner { grid-template-columns: repeat(2, 1fr); }
.stats__item:nth-child(2) { border-right: none; }
.stats__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }

.how__steps { grid-template-columns: repeat(2, 1fr); }
.how__steps::before { display: none; }

.footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
:root { –nav-height: 68px; }

.nav__links { display: none; }
.nav__burger { display: flex; }

.nav__links.open {
display: flex;
flex-direction: column;
position: fixed;
top: var(–nav-height); left: 0; right: 0;
background: rgba(255,255,255,0.97);
backdrop-filter: blur(20px);
padding: 24px 5% 32px;
gap: 0;
border-bottom: 1px solid #eee;
box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.nav__links.open li { width: 100%; }
.nav__links.open a {
display: block;
padding: 14px 0;
font-size: 1.1rem;
border-bottom: 1px solid #f0f0f0;
}

.nav__cta { margin-top: 12px; text-align: center; border-radius: 8px; }

.services__grid,
.packages__grid,
.testimonials__grid,
.how__steps,
.trust__grid {
grid-template-columns: 1fr;
}

.trust__item { border-right: none; }
.pkg-card–featured { transform: none; }

.contact__inner { grid-template-columns: 1fr; gap: 40px; }
.form-row { grid-template-columns: 1fr; }

.footer__inner { grid-template-columns: 1fr; gap: 32px; }
.footer__bottom { flex-direction: column; gap: 10px; text-align: center; }

.hero__actions { flex-direction: column; }
.btn { justify-content: center; }

.stats__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
.section { padding: 70px 5%; }
.stats__inner { grid-template-columns: 1fr 1fr; }
}