/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.65) 50%, rgba(10,10,10,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-bottom: 280px;
    padding-top: 120px;
}

.hero-left { max-width: 100%; width: 100%; }

.hero-line {
    width: 60px; height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
    animation: lineExpand 1s 0.3s var(--ease) both;
}

@keyframes lineExpand {
    from { width: 0; opacity: 0; }
    to { width: 60px; opacity: 1; }
}

.hero-tag {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 28px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.hero-title span { display: inline; }

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero bottom */
.hero-bottom {
    position: absolute;
    bottom: 40px;
    left: 0; right: 0;
    z-index: 2;
    padding: 0 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    writing-mode: vertical-lr;
}

.hero-stats { display: flex; gap: 50px; }

.hero-stat { text-align: right; }

.stat-num {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-txt {
    display: block;
    font-size: 0.7rem;
    color: var(--text);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Hero animations */
.anim-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: animFade 0.8s var(--ease) forwards;
}

.anim-slide {
    opacity: 0;
    transform: translateX(-40px);
    animation: animSlide 0.8s var(--ease) forwards;
}

@keyframes animFade {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes animSlide {
    to { opacity: 1; transform: translateX(0); }
}

.anim-fade, .anim-slide {
    animation-delay: var(--delay, 0s);
}

/* ===== VIDEO SHOWCASE ===== */
.video-showcase { background: var(--dark); }

.video-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-card-home {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.06);
}

.video-card-home video {
    width: 100% !important;
    height: 400px !important;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px !important; height: 60px !important;
    min-width: 60px; min-height: 60px;
    max-width: 60px; max-height: 60px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.video-play-btn svg {
    width: 22px !important; height: 22px !important;
    max-width: 22px !important; max-height: 22px !important;
    fill: #0A0A0A !important;
    margin-left: 3px;
    display: block;
}

.video-card-home:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gold);
}

.video-card-home.playing .video-play-btn {
    opacity: 0;
}

.video-card-home::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* ===== FEATURES ===== */
.features { background: var(--black); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feature-card {
    padding: 50px 36px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.6s var(--ease);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.feature-card:hover::after { opacity: 1; }

.feature-card:hover {
    background: var(--dark);
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(212,175,55,0.05);
}

.feature-card:hover .feature-num { color: var(--gold); }

.feature-num {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: rgba(212,175,55,0.4);
    letter-spacing: 2px;
    margin-bottom: 24px;
    transition: color 0.3s;
}

.feature-icon {
    width: 44px; height: 44px;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-icon svg { width: 100%; height: 100%; }

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===== FLEET PREVIEW ===== */
.fleet-preview { background: var(--dark); }

.fleet-scroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.fleet-card {
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
    transition: all 0.5s var(--ease);
    position: relative;
}

.fleet-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease);
    z-index: 2;
}

.fleet-card:hover::after { transform: scaleX(1); }

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212,175,55,0.1), 0 0 30px rgba(212,175,55,0.04);
    border-color: rgba(212, 175, 55, 0.2);
}

.fleet-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.fleet-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.fleet-card:hover .fleet-img img { transform: scale(1.08); }

.fleet-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.fleet-card:hover .fleet-overlay { opacity: 1; }

.fleet-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 14px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.fleet-info { padding: 28px; }

.fleet-info h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.fleet-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fleet-specs span {
    font-size: 0.72rem;
    color: var(--text);
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0.5px;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview { min-height: 600px; display: flex; align-items: center; }

.services-bg {
    position: absolute; inset: 0;
}

.services-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.services-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,10,0.88);
}

.services-content { position: relative; z-index: 2; }

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
    margin-top: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 36px;
    background: rgba(10,10,10,0.8);
    transition: all var(--transition);
    cursor: pointer;
}

.service-item:hover { background: rgba(212,175,55,0.08); }
.service-item:hover .service-arrow { color: var(--gold); transform: translateX(6px); }
.service-item:hover .service-num { color: var(--gold); }

.service-num {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: rgba(212,175,55,0.4);
    min-width: 30px;
    transition: color 0.3s;
}

.service-item h3 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    flex: 1;
}

.service-item p {
    color: var(--text);
    font-size: 0.8rem;
    display: none;
}

.service-arrow {
    font-size: 1.4rem;
    color: rgba(212,175,55,0.4);
    transition: all 0.3s;
}

/* ===== TRUST ===== */
.trust { background: var(--black); }

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.trust-desc {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

.trust-items { display: flex; flex-direction: column; gap: 24px; }

.trust-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-check {
    width: 36px; height: 36px;
    min-width: 36px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-top: 2px;
}

.trust-check svg { width: 16px; height: 16px; }

.trust-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.trust-item p {
    color: var(--text);
    font-size: 0.85rem;
}

.trust-right { position: relative; }

.trust-img {
    width: 100%;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.trust-badge {
    position: absolute;
    bottom: -20px; left: -20px;
    width: 110px; height: 110px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--black);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 15px rgba(212,175,55,0.3); }
    50% { box-shadow: 0 0 30px rgba(212,175,55,0.5), 0 0 60px rgba(212,175,55,0.15); }
}

.badge-big {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-small {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
}

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }

.cta-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,10,0.85);
}

.cta-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-desc {
    color: var(--text);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-scroll { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { gap: 50px; }
    .video-grid-home { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-content { padding-top: 90px; }
    .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); white-space: normal; letter-spacing: 0; }
    .hero-bottom { flex-direction: column; align-items: center; gap: 30px; }
    .hero-stats { gap: 30px; }
    .hero-stat { text-align: center; }
    .features-grid { grid-template-columns: 1fr; }
    .fleet-scroll { grid-template-columns: 1fr; }
    .services-list { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { justify-content: center; }
    .video-grid-home { grid-template-columns: 1fr 1fr; }
    .video-card-home video { height: 300px !important; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
