/* ===== FOOTER ===== */
.footer-premium {
    background: var(--accent-orange-dark);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--gold), var(--accent-orange));
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-01);
}

.footer-brand-text {
    font-family: var(--font-01);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-brand-text span {
    color: var(--accent-orange);
}

.footer-desc {
    color: #fff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
    background: var(--accent-orange-dark);
    border-color: var(--accent-orange-dark);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-03);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 16px;
}

.footer-contact-item i {
    color: var(--accent-orange);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.40);
    margin-top: 10px;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    font-size: 16px;
}

.footer-bottom-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-bottom-links a:hover {
    color: var(--primary-blue);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top-premium {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    border: none;
    box-shadow: 0 8px 25px rgba(232, 101, 42, 0.4);
    font-size: 1.2rem;
}

.scroll-top-premium.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-premium:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(232, 101, 42, 0.6);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
}

.footer-middle {
  padding-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.40);
}
.footer-middle h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-middle p {
  color: #fff;
  margin-bottom: 10px;
  font-size: 18px;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-side-image {
        width: 320px;
        height: 420px;
        right: 3%;
    }
}

@media (max-width: 992px) {
    .hero-slide-title {
        font-size: 3.5rem;
    }
    .about-content-premium {
        padding-left: 0;
        margin-top: 3rem;
    }
    .section-title-premium {
        font-size: 2.5rem;
    }
    .stat-number-premium {
        font-size: 4rem;
    }

    .nav-hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-slide-title {
        font-size: 2.5rem;
    }
    .hero-slide-desc {
        font-size: 1rem;
    }
    .section-premium {
        padding: 80px 0;
    }
    .section-title-premium {
        font-size: 2rem;
    }
    .stat-card-premium::after {
        display: none;
    }
    .trust-badges {
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .custom-cursor, .cursor-dot {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-slide-title {
        font-size: 2rem;
    }
    .hero-slide-buttons {
        flex-direction: column;
    }
    .btn-premium-primary, .btn-premium-secondary {
        width: 100%;
        justify-content: center;
    }
    .stat-number-premium {
        font-size: 3rem;
    }
    .footer-middle h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}
}