/* ============================================================
   EventPro - Main Frontend Stylesheet
   Bootstrap 5.3 + Custom Animations + AOS
   ============================================================ */

:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --secondary: #1d3557;
    --accent: #f4a261;
    --light-bg: #f8f9fa;
    --text-dark: #1d3557;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    --gradient-primary: linear-gradient(135deg, #e63946, #f4a261);
    --gradient-dark: linear-gradient(135deg, #1d3557, #2b4b7c);
    --shadow-sm: 0 2px 15px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* ─── Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; }

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ─── Section Title ─────────────────────────────────────── */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title .badge-label {
    display: inline-block;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.section-title h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.3;
}
.section-title p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 16px; }
.section-title .divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 15px auto;
    border-radius: 2px;
}

/* ─── Header / Navbar ───────────────────────────────────── */
#navbar {
    background: transparent;
    transition: all 0.4s ease;
    padding: 15px 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;
}

#navbar.scrolled {
    background: #fff;
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

#navbar .navbar-brand img {
    height: 50px;
    transition: all 0.4s ease;
    /* Invert to white on transparent dark navbar */
    filter: brightness(0) invert(1);
}
#navbar.scrolled .navbar-brand img {
    height: 42px;
    /* Restore natural dark colors on white sticky navbar */
    filter: none;
}

/* Text-only fallback logo */
#navbar:not(.scrolled) .navbar-brand .logo-text { color: #fff !important; }
#navbar.scrolled .navbar-brand .logo-text { color: var(--secondary) !important; }

#navbar .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 15px !important;
    position: relative;
    transition: var(--transition);
}

#navbar.scrolled .nav-link { color: var(--secondary) !important; }

#navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 15px;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

#navbar .nav-link:hover::after,
#navbar .nav-link.active::after { width: calc(100% - 30px); }

#navbar .nav-link:hover { color: var(--primary) !important; }
#navbar.scrolled .nav-link.active { color: var(--primary) !important; }

/* ─── Dropdown — hover open + slide-fade animation ──────────── */
#navbar .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px) scale(0.97);
    transition:
        opacity 0.25s cubic-bezier(0.4,0,0.2,1),
        transform 0.25s cubic-bezier(0.4,0,0.2,1),
        visibility 0s linear 0.25s;
    pointer-events: none;

    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 8px;
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    margin-top: 10px !important;
}

/* Small top arrow pointer */
#navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 22px;
    width: 14px; height: 14px;
    background: #fff;
    border-left: 1px solid rgba(0,0,0,0.08);
    border-top: 1px solid rgba(0,0,0,0.08);
    transform: rotate(45deg);
    border-radius: 3px 0 0 0;
}

/* Show state */
#navbar .dropdown-menu.dropdown-animate-in,
#navbar .nav-item.dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    transition:
        opacity 0.25s cubic-bezier(0.4,0,0.2,1),
        transform 0.25s cubic-bezier(0.4,0,0.2,1),
        visibility 0s linear 0s;
}

/* Dropdown items */
#navbar .dropdown-menu .dropdown-item {
    border-radius: 9px;
    padding: 9px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--secondary);
    transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
    display: flex;
    align-items: center;
    gap: 9px;
    position: relative;
}

#navbar .dropdown-menu .dropdown-item::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    transform: scale(0);
    transition: all 0.18s ease;
    flex-shrink: 0;
}

#navbar .dropdown-menu .dropdown-item:hover {
    background: rgba(230, 57, 70, 0.07);
    color: var(--primary);
    padding-left: 18px;
}

#navbar .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Dropdown toggle caret — custom animated arrow */
#navbar .nav-link.dropdown-toggle::after {
    display: inline-block;
    border: none;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f078';
    font-size: 9px;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform 0.25s ease;
}
#navbar .nav-item.dropdown:hover > .nav-link.dropdown-toggle::after,
#navbar .nav-item.dropdown.show > .nav-link.dropdown-toggle::after {
    transform: rotate(-180deg);
}

/* Mobile: keep Bootstrap click-open, just show without animation */
@media (max-width: 991px) {
    #navbar .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        display: none;
        box-shadow: none;
        border: 1px solid rgba(0,0,0,0.06);
        margin-top: 4px !important;
        border-radius: 10px;
    }
    #navbar .dropdown-menu::before { display: none; }
    #navbar .dropdown-menu.show { display: block; }
}

.navbar-enquiry-btn {
    background: var(--gradient-primary);
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 22px !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.35);
    transition: var(--transition);
}

.navbar-enquiry-btn::after { display: none !important; }
.navbar-enquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
    color: #fff !important;
}

/* ─── Hero Slider ───────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29,53,87,0.85) 0%, rgba(230,57,70,0.5) 100%);
    z-index: 1;
}

.hero-slide .container { position: relative; z-index: 2; }

.hero-badge {
    display: inline-block;
    background: rgba(244, 162, 97, 0.25);
    border: 1px solid rgba(244, 162, 97, 0.5);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 580px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-btn-group { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-hero-primary {
    background: var(--gradient-primary);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.55);
    color: #fff;
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: #fff;
    transform: translateY(-3px);
    color: #fff;
}

/* Swiper custom controls */
.hero-swiper .swiper-pagination-bullet {
    width: 10px; height: 10px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}
.hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ─── About Strip ─────────────────────────────────────── */
.about-strip {
    background: var(--gradient-dark);
    padding: 25px 0;
}

.about-strip .stat-item { text-align: center; color: #fff; }
.about-strip .stat-number { font-size: 36px; font-weight: 800; color: var(--accent); }
.about-strip .stat-label { font-size: 13px; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }

/* ─── Service Cards ─────────────────────────────────────── */
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

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

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

.service-card-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px; height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(230,57,70,0.4);
}

.service-card-body { padding: 30px 25px 25px; }
.service-card-body h5 { font-weight: 700; margin-bottom: 10px; color: var(--secondary); }
.service-card-body p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

.service-card .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.service-card .read-more:hover { gap: 10px; }

/* ─── Gallery ──────────────────────────────────────────── */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 35px; }

.gallery-filter .filter-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter .filter-btn.active,
.gallery-filter .filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

.gallery-item img {
    width: 100%; height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(29,53,87,0.85), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay .title { color: #fff; font-weight: 600; font-size: 15px; }
.gallery-overlay .zoom-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px;
    backdrop-filter: blur(5px);
}

/* ─── Testimonial ───────────────────────────────────────── */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.testimonial-card .quote-icon {
    font-size: 60px;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 20px; right: 25px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card .stars { color: #ffc107; margin-bottom: 15px; font-size: 15px; }
.testimonial-card .message { color: var(--text-muted); font-size: 15px; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-card .author-photo {
    width: 55px; height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}
.testimonial-card .author-name { font-weight: 700; color: var(--secondary); }
.testimonial-card .author-title { font-size: 13px; color: var(--text-muted); }

/* ─── Clients Marquee ──────────────────────────────────── */
.clients-section { background: var(--light-bg); }

.clients-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.clients-track:hover { animation-play-state: paused; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo-item img {
    height: 60px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
}

.client-logo-item img:hover { filter: grayscale(0%) opacity(1); }

.clients-marquee-wrap { overflow: hidden; }

/* ─── FAQ Accordion ─────────────────────────────────────── */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--secondary);
    background: #fff;
    font-size: 15px;
    padding: 18px 22px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(230, 57, 70, 0.04);
    color: var(--primary);
    box-shadow: none;
}

.faq-accordion .accordion-button::after { filter: invert(0); }
.faq-accordion .accordion-button:not(.collapsed)::after { filter: none; }

.faq-accordion .accordion-body {
    color: var(--text-muted);
    padding: 5px 22px 20px;
    font-size: 15px;
    line-height: 1.7;
}

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-section {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px; height: 500px;
    background: rgba(230, 57, 70, 0.15);
    border-radius: 50%;
}

.cta-section h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: #fff; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 17px; }

/* ─── Page Banner ─────────────────────────────────────────── */
.page-banner {
    background: var(--gradient-dark);
    padding: 130px 0 70px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/images/pattern.png') repeat;
    opacity: 0.05;
}

.page-banner h1 { color: #fff; font-weight: 800; font-size: clamp(30px, 4vw, 50px); }
.page-banner .breadcrumb-item { color: rgba(255,255,255,0.7); }
.page-banner .breadcrumb-item.active { color: var(--accent); }
.page-banner .breadcrumb-item a { color: rgba(255,255,255,0.8); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ─── Contact ─────────────────────────────────────────────── */
.contact-info-card {
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    color: #fff;
    height: 100%;
}

.contact-info-card .info-item { display: flex; gap: 18px; margin-bottom: 28px; align-items: flex-start; }
.contact-info-card .info-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--accent);
}
.contact-info-card .info-label { font-size: 13px; opacity: 0.7; margin-bottom: 3px; }
.contact-info-card .info-value { font-weight: 600; }

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    box-shadow: var(--shadow-md);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.75);
    padding-top: 70px;
}

/* Footer logo — dark bg so invert to white */
.footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.3s ease;
}
.footer-logo:hover { opacity: 1; }

.footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer .footer-links li { margin-bottom: 10px; }
.footer .footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 13.5px;
    transition: var(--transition);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}
.footer .footer-links a:hover { color: var(--accent); padding-left: 4px; }

/* Service links in footer — keep on single line with small icon */
.footer-service-link {
    display: flex !important;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.footer-service-link::before { display: none !important; }

.footer .social-links { display: flex; gap: 10px; margin-top: 15px; }
.footer .social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: var(--transition);
}
.footer .social-links a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
}

/* ─── Sticky Buttons ─────────────────────────────────────── */
.sticky-buttons {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-btn {
    width: 55px; height: 55px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    transition: var(--transition);
    border: none;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.sticky-btn:hover { transform: scale(1.15); }
.sticky-btn-whatsapp { background: #25D366; color: #fff; }
.sticky-btn-call { background: var(--primary); color: #fff; animation: pulse-ring 2s ease-out infinite; }

.sticky-btn .tooltip-text {
    position: absolute;
    right: 65px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.sticky-btn:hover .tooltip-text { opacity: 1; }

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(230, 57, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

/* ─── Enquiry Modal ─────────────────────────────────────── */
.modal-enquiry .modal-content { border-radius: var(--radius-lg); border: none; overflow: hidden; }
.modal-enquiry .modal-header {
    background: var(--gradient-dark);
    color: #fff;
    padding: 25px 30px;
}
.modal-enquiry .modal-header .modal-title { font-weight: 700; font-size: 20px; }
.modal-enquiry .modal-header .btn-close { filter: invert(1); }
.modal-enquiry .modal-body { padding: 30px; }
.modal-enquiry .form-control, .modal-enquiry .form-select {
    border-radius: 10px;
    padding: 11px 15px;
    border-color: var(--border-color);
}
.modal-enquiry .btn-submit {
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 700;
    color: #fff;
    width: 100%;
}

/* ─── Scroll to Top ─────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 45px; height: 45px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9998;
    border: none;
    box-shadow: var(--shadow-sm);
}

.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ─── Animations ─────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,57,70,0.4);
    color: #fff;
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
    .section-pad { padding: 60px 0; }
    .hero-title { font-size: 32px; }
    .hero-desc { font-size: 15px; }
    .sticky-buttons { bottom: 20px; right: 12px; }
    .sticky-btn { width: 48px; height: 48px; font-size: 18px; }
    .footer h5 { margin-top: 30px; }
    #navbar .nav-link { color: var(--secondary) !important; }
    .navbar-collapse { background: #fff; padding: 15px; border-radius: 12px; box-shadow: var(--shadow-md); margin-top: 10px; }
}

/* ─── Preloader ───────────────────────────────────────────── */
.preloader {
    position: fixed; inset: 0;
    background: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.preloader.hide { opacity: 0; pointer-events: none; }

.preloader-inner { text-align: center; }
.preloader-spinner {
    width: 50px; height: 50px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin { to { transform: rotate(360deg); } }
