/* Navbar */
.navbar-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 992px) {
    .navbar-logo {
        height: 55px;
    }
}

.nav-link {
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #fd7e14 !important;
}

.nav-link.active {
    color: var(--primary-accent) !important;
    font-weight: 500;
}

.nav-cta {
    background: linear-gradient(135deg, #fd7e14 0%, #e8590c 100%);
    border: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(253, 126, 20, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #e8590c 0%, #fd7e14 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(253, 126, 20, 0.45);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(253, 126, 20, 0.25);
}

/* Layout: stick footer to bottom on short pages */
html { scroll-behavior: smooth; }

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-wrap {
    flex: 1 0 auto;
}

/* ========== Footer ========== */
.site-footer {
    background: linear-gradient(180deg, #1a1d24 0%, #15171c 100%);
    color: #e8eaed;
    position: relative;
    margin-top: auto;
}

.footer-accent {
    height: 4px;
    background: linear-gradient(90deg, #fd7e14 0%, #e8590c 50%, #0d6efd 100%);
    opacity: 0.95;
}

.footer-brand {
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s ease;
}

.footer-brand:hover {
    color: #fff;
    opacity: 0.9;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 260px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-heading.tracking {
    letter-spacing: 0.1em;
}

.footer-links a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.2rem 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #fd7e14;
    transform: translateX(2px);
}

.footer-contact .footer-icon {
    width: 20px;
    text-align: center;
    color: #fd7e14;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.footer-contact li {
    margin-bottom: 0.85rem;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: #fd7e14;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
    background: #fd7e14;
    color: #fff;
    transform: translateY(-2px);
}

.footer-cta {
    background: linear-gradient(135deg, #fd7e14 0%, #e8590c 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 14px rgba(253, 126, 20, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.footer-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 126, 20, 0.45);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
    font-size: 0.8rem;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: #fd7e14;
}

/* ========== Floating WhatsApp ========== */
.whatsapp-float {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
    color: #fff;
    background: #20bd5a;
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
}

/* ========== Homepage ========== */
:root {
    --primary-accent: #fd7e14;
    --primary-accent-dark: #e8590c;
    --primary-blue: #0d6efd;
}

.text-primary-accent { color: var(--primary-accent) !important; }

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(26, 29, 36, 0.92) 0%, rgba(26, 29, 36, 0.75) 50%, rgba(26, 29, 36, 0.5) 100%);
}

.min-vh-75 { min-height: 75vh; }

.hero-badge {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    line-height: 1.6;
}

.btn-hero-cta {
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(253, 126, 20, 0.4);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-weight: 500;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-hero-outline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* Section common */
.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-accent);
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1d24;
    letter-spacing: -0.02em;
}

.section-lead {
    max-width: 560px;
    font-size: 1rem;
}

/* Service cards */
.service-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
}

.service-card-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.06);
}

.service-icon {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 1.2rem;
    box-shadow: 0 4px 14px rgba(253, 126, 20, 0.4);
}

.service-card .card-title {
    color: #1a1d24;
    font-weight: 600;
}

.service-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card .card-body .card-title,
.service-card .card-body .card-text {
    text-align: center;
}

.product-card-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #25d366;
    color: #fff !important;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.product-card-whatsapp:hover {
    background: #20bd5a;
    color: #fff;
    transform: translateY(-1px);
}

/* Posters section */
.section-posters .poster-card {
    cursor: pointer;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.section-posters .poster-card:focus {
    outline: 2px solid var(--primary-accent);
    outline-offset: 2px;
}

.section-posters .poster-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-4px);
}

.poster-card .poster-play-icon,
.poster-card .poster-view-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.poster-card:hover .poster-play-icon,
.poster-card:hover .poster-view-icon {
    opacity: 1;
}

.poster-media {
    display: block;
    height: 320px;
    object-fit: cover;
    object-position: top center;
}

.section-posters .poster-card video.poster-media {
    height: 320px;
    object-fit: cover;
    background: #000;
}

/* Navbar sticky */
.navbar.sticky-top {
    z-index: 1030;
}

/* Poster gallery modal */
#posterGalleryModal .modal-body {
    padding: 1rem;
}

#posterGalleryContent img,
#posterGalleryContent video {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

#posterGalleryContent video {
    background: #000;
}

/* About */
.about-list li {
    padding: 0.35rem 0;
    color: #374151;
}

.about-list li i {
    font-size: 1rem;
}

.about-img-wrap img {
    transition: transform 0.4s ease;
}

.about-img-wrap:hover img {
    transform: scale(1.03);
}

/* Why choose us */
.why-card {
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
    border-color: rgba(253, 126, 20, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.why-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(253, 126, 20, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Contact */
.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(253, 126, 20, 0.12);
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-wrap {
    border-radius: 16px;
}

.contact-form .form-control {
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.contact-form .form-control:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(253, 126, 20, 0.15);
}

.btn-contact-submit {
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info a:hover { color: var(--primary-accent) !important; }

/* Legal pages (Privacy, Terms) */
.legal-content {
    max-width: 720px;
}

.legal-content ul {
    padding-left: 1.25rem;
}

.legal-content ul li {
    margin-bottom: 0.35rem;
}
