/* ============================================
   Lucia Printing & Advertising - Main Stylesheet
   All styles integrated into one file
   ============================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
    --primary-red: #dc3545;
    --primary-red-rgb: 220, 53, 69;
    --primary-orange: #fd7e14;
    --primary-orange-rgb: 253, 126, 20;
    --primary-yellow: #f59e0b;
    --dark-bg: #1a1a2e;
    --dark-bg-secondary: #16213e;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius-sm: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --border-radius-round: 50%;
}

/* ==================== RESET & BASE ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; overflow-x: hidden; line-height: 1.6; color: var(--text-dark); }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
a { text-decoration: none; transition: color var(--transition-fast); }
img { max-width: 100%; height: auto; }

/* ==================== GRADIENT UTILITIES ==================== */
.gradient-text { background: linear-gradient(135deg, var(--primary-red), var(--primary-orange), var(--primary-yellow)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-bg { background: linear-gradient(135deg, var(--primary-red), var(--primary-orange)); }
.gradient-bg-animated { background: linear-gradient(135deg, var(--primary-red), var(--primary-orange), var(--primary-yellow)); background-size: 200% 200%; animation: gradientShift 3s ease infinite; }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* ==================== NAVBAR ==================== */
.navbar-transparent { transition: all var(--transition-normal); padding-top: 0.75rem; padding-bottom: 0.75rem; }
.navbar-scrolled { background: rgba(255, 255, 255, 0.97) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: var(--shadow-md); padding-top: 0.5rem; padding-bottom: 0.5rem; }
.nav-link-custom { font-weight: 500; transition: color var(--transition-fast); position: relative; }
.nav-link-custom::after { content: ''; position: absolute; bottom: -2px; left: 50%; width: 0; height: 2px; background: var(--primary-red); transition: all var(--transition-normal); transform: translateX(-50%); }
.nav-link-custom:hover::after, .nav-link-custom.active::after { width: 100%; }
.nav-link-custom:hover, .nav-link-custom.active { color: var(--primary-red) !important; }

/* Navbar scroll states */
.navbar-scrolled .nav-link-custom { color: #333 !important; }
.navbar-scrolled .navbar-brand small { color: #666 !important; }

/* Mobile navbar */
@media (max-width: 991.98px) {
    .navbar-transparent { background: var(--dark-bg) !important; }
    .navbar-scrolled { background: rgba(255, 255, 255, 0.97) !important; }
}

/* ==================== HERO SECTION ==================== */
.hero-section { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7)); z-index: 1; }
.hero-content { position: relative; z-index: 2; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }

/* Beautiful Hero (from index page) */
.hero-gradient { background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7)); }
.floating-particle { position: fixed; pointer-events: none; z-index: 0; border-radius: 50%; }

/* ==================== ABOUT PAGE ==================== */
.about-hero { min-height: 60vh; background-size: cover; background-position: center; background-attachment: fixed; position: relative; }
.about-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)); }
.about-story-img { height: 400px; object-fit: cover; }
@media (max-width: 767.98px) { .about-story-img { height: 250px; } }

/* ==================== DARK HERO SECTIONS (Feedback-style) ==================== */
.about-hero-section, .announcement-hero, .services-hero, .media-hero-section, 
.service-hero, .terms-hero, .privacy-hero, .faq-hero, .contact-hero, .feedback-hero {
    background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg-secondary));
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute; inset: 0; opacity: 0.05;
    background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); }
.hero-orb-top-right, .hero-orb-right { width: 250px; height: 250px; background: rgba(220,53,69,0.15); top: -50px; right: -50px; animation: floatOrb 8s ease-in-out infinite; }
.hero-orb-bottom-left, .hero-orb-left { width: 180px; height: 180px; background: rgba(253,126,20,0.12); bottom: -30px; left: -30px; animation: floatOrb 6s ease-in-out infinite; animation-delay: 3s; }

@keyframes floatOrb { 0%,100%{transform:translate(0,0)scale(1)} 50%{transform:translate(20px,-20px)scale(1.1)} }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes scrollBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ==================== CARDS ==================== */
.service-card { transition: all var(--transition-normal); border: 2px solid transparent; cursor: pointer; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: var(--primary-red); }
.value-card { transition: all var(--transition-normal); border: 2px solid transparent; }
.value-card:hover { transform: translateY(-5px); border-color: var(--primary-red); }
.team-card { transition: all var(--transition-normal); }
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.team-avatar { width: 120px; height: 120px; border-radius: 50%; border: 4px solid var(--primary-red); object-fit: cover; }
.achievement-card { transition: all var(--transition-normal); background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.achievement-card:hover { background: rgba(255,255,255,0.2); transform: scale(1.02); }
.gradient-border-card { position: relative; background: var(--white); border-radius: var(--border-radius-md); }
.gradient-border-card::before { content: ''; position: absolute; inset: -2px; border-radius: calc(var(--border-radius-md) + 2px); background: linear-gradient(135deg, var(--primary-red), var(--primary-orange)); z-index: -1; opacity: 0.7; }

/* Value Icon Circle */
.value-icon-circle { width: 60px; height: 60px; border-radius: 50%; background: rgba(220,53,69,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: transform var(--transition-normal); }
.value-card:hover .value-icon-circle { transform: scale(1.1); }

/* Media Cards */
.media-card { transition: all var(--transition-normal); cursor: pointer; border: none; }
.media-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important; }
.media-thumb { height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.media-card:hover .media-thumb { transform: scale(1.08); }
.media-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); opacity: 0; transition: opacity var(--transition-normal); display: flex; align-items: flex-end; padding: 1.5rem; }
.media-card:hover .media-overlay { opacity: 1; }
.media-type-badge { position: absolute; top: 12px; right: 12px; z-index: 5; }

/* Announcement Cards */
.announcement-card { transition: all var(--transition-normal); }
.announcement-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important; }
.announcement-card-img { height: 100%; min-height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.announcement-card:hover .announcement-card-img { transform: scale(1.1); }

/* Featured Announcement */
.featured-announcement { position: relative; height: 400px; border-radius: 1rem; overflow: hidden; }
.featured-announcement-img { width: 100%; height: 100%; object-fit: cover; }
.featured-announcement-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--primary-red), var(--primary-orange)); }
.featured-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3), transparent); }
.featured-content { position: absolute; bottom: 0; left: 0; padding: 2rem 3rem; color: white; z-index: 1; max-width: 700px; }
.featured-desc { color: rgba(255,255,255,0.85); }

/* Feedback Cards */
.feedback-card { transition: all var(--transition-normal); }
.feedback-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important; }

/* ==================== TIMELINE ==================== */
.timeline-section { position: relative; }
.timeline-line { position: absolute; left: 31px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary-red), var(--primary-orange)); }
.timeline-item { position: relative; padding-left: 80px; margin-bottom: 2rem; }
.timeline-dot { position: absolute; left: 22px; top: 0; width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-red), var(--primary-orange)); border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--primary-red); }

/* ==================== CTA SECTION ==================== */
.cta-section { background: linear-gradient(135deg, var(--primary-red), var(--primary-orange)); border-radius: var(--border-radius-xl); position: relative; overflow: hidden; }
.cta-pattern { position: absolute; inset: 0; opacity: 0.1; background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 30px 30px; }

/* ==================== FLOATING ACTIONS ==================== */
.floating-actions { position: fixed; bottom: 24px; right: 24px; z-index: 1050; display: flex; flex-direction: column; gap: 8px; }
.floating-actions .btn { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: transform var(--transition-fast); }
.floating-actions .btn:hover { transform: scale(1.1); }

/* ==================== COUNTER ==================== */
.counter { font-size: 3rem; font-weight: 800; }
.counter-up { transition: transform var(--transition-normal); }
.counter-up:hover { transform: scale(1.05); }

/* ==================== SCROLL ANIMATIONS ==================== */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(50px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.9); transition: opacity 0.5s ease, transform 0.5s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ==================== SERVICES HERO OFFER ==================== */
.special-offer-alert { animation: slideInRight 0.6s ease-out; }
@keyframes slideInRight { from{opacity:0;transform:translateX(-20px)} to{opacity:1;transform:translateX(0)} }
.offer-alert-box { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; border-radius: 1rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); }
.offer-icon-circle { width: 45px; height: 45px; border-radius: 50%; background: #ffc107; display: flex; align-items: center; justify-content: center; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.1)} }
.offer-alert-text { color: rgba(255,255,255,0.85); line-height: 1.6; }

.offer-card { position: relative; padding: 2rem 1.5rem; border-radius: 1rem; background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); animation: floatCard 3s ease-in-out infinite; }
.offer-ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--primary-red), var(--primary-orange)); color: white; padding: 5px 20px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; animation: ribbonPulse 2s ease-in-out infinite; }
@keyframes ribbonPulse { 0%,100%{box-shadow:0 0 15px rgba(220,53,69,0.4)} 50%{box-shadow:0 0 30px rgba(220,53,69,0.7)} }
.offer-percent { font-family: 'Montserrat', sans-serif; text-shadow: 0 0 30px rgba(255,193,7,0.5); }
.offer-card-subtitle { color: rgba(255,255,255,0.7); }
.offer-benefits { color: rgba(255,255,255,0.8); }
.offer-benefits li { margin-bottom: 0.5rem; }

.service-price { color: var(--primary-red); font-weight: 600; font-size: 0.85rem; }
.learn-more { transition: opacity var(--transition-normal); }
.service-card:hover .learn-more { opacity: 1; }

/* ==================== CATEGORY SECTION ==================== */
.category-section { margin-bottom: 3rem; }
.category-section:last-child { margin-bottom: 0; }
.category-header { margin-bottom: 1.5rem; }
.category-icon-circle { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-icon-circle { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ==================== STAT CARDS ==================== */
.stat-card { transition: all var(--transition-normal); }
.stat-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important; }
.stat-icon-circle { width: 55px; height: 55px; transition: transform var(--transition-normal); }
.stat-card:hover .stat-icon-circle { transform: scale(1.1); }

/* ==================== PROCESS STEPS ==================== */
.process-steps .step-arrow { display: none; }
@media (min-width: 992px) { .process-steps .step-arrow { display: block; } }
.process-card { transition: all var(--transition-normal); border: 2px solid transparent; }
.process-card:hover { transform: translateY(-5px); border-color: var(--primary-red); }

/* ==================== FILTER BAR ==================== */
.filter-bar { position: sticky; top: 80px; z-index: 10; }
.filter-btn.active { background: var(--primary-red) !important; color: white !important; }

/* ==================== DETAIL PAGE ==================== */
.detail-hero { position: relative; min-height: 350px; background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.detail-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3)); }
.detail-hero-content { max-width: 700px; }
.detail-article { border: none; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 1rem; color: #6c757d; font-size: 0.85rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #e9ecef; }
.detail-content { font-size: 1.05rem; line-height: 1.9; color: #333; margin-bottom: 1.5rem; }
.detail-content img { max-width: 100%; border-radius: 12px; margin: 20px 0; }
.detail-tags { margin-bottom: 1.5rem; display: flex; flex-wrap: wrap; gap: 8px; }
.detail-tags .badge { font-weight: 500; padding: 8px 14px; transition: all var(--transition-normal); }
.detail-tags .badge:hover { background: var(--primary-red) !important; color: white !important; }
.detail-share { border-top: 1px solid #e9ecef; padding-top: 1.5rem; margin-top: 1.5rem; }

/* Bullet List */
.bullet-list { list-style: none; padding-left: 0; }
.bullet-list li { padding: 10px 0 10px 30px; position: relative; line-height: 1.6; }
.bullet-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-red); font-weight: bold; }

/* Share Buttons */
.share-btn { width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: white !important; text-decoration: none; transition: all var(--transition-normal); font-size: 1.1rem; }
.share-btn:hover { transform: scale(1.15); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }
.share-wa { background: #25d366; }
.share-tg { background: #0088cc; }

/* Related Items */
.related-item { transition: all var(--transition-normal); text-decoration: none; }
.related-item:hover { transform: translateX(5px); }
.related-item:last-child { margin-bottom: 0 !important; padding-bottom: 0 !important; border-bottom: none !important; }
.related-thumb { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.related-thumb-placeholder { width: 70px; height: 70px; background: #f8f9fa; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Newsletter Sidebar */
.newsletter-sidebar { background: linear-gradient(135deg, var(--primary-red), var(--primary-orange)); }

/* ==================== PRICE CARD ==================== */
.price-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); animation: floatCard 3s ease-in-out infinite; }
.sticky-specs { position: sticky; top: 100px; z-index: 10; background: linear-gradient(135deg, #fff5f5, #fff8f0); }
.feature-item { transition: all var(--transition-normal); }
.feature-item:hover { transform: translateX(5px); }

/* ==================== FAQ STYLES ==================== */
.faq-category-btn { transition: all var(--transition-normal); border: 2px solid transparent; cursor: pointer; }
.faq-category-btn:hover, .faq-category-btn.active { border-color: var(--primary-red); background: rgba(220,53,69,0.05); }
.faq-item { border-bottom: 1px solid #eee; padding: 1.25rem 0; transition: all var(--transition-normal); }
.faq-item:last-child { border-bottom: none; }
.faq-question { cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.faq-question:hover { color: var(--primary-red); }
.faq-question .faq-icon { transition: transform var(--transition-normal); font-size: 1.2rem; color: var(--primary-red); flex-shrink: 0; margin-top: 3px; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; color: #666; line-height: 1.8; }
.faq-answer.open { max-height: 500px; padding-top: 1rem; }

/* ==================== LIGHTBOX ==================== */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.lightbox-content { width: 90vw; max-width: 1000px; position: relative; }
.lightbox-content img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.lightbox-content video { width: 100%; max-height: 80vh; border-radius: 8px; }
.lightbox-content iframe { width: 100%; height: 500px; border-radius: 8px; }
.lightbox-info { color: white; text-align: center; margin-top: 15px; }
.lightbox-close { position: absolute; top: -40px; right: 0; color: white; font-size: 2rem; cursor: pointer; z-index: 5; background: rgba(255,255,255,0.2); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { background: rgba(255,255,255,0.4); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: white; font-size: 1.5rem; cursor: pointer; background: rgba(255,255,255,0.2); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; transition: all var(--transition-normal); }
.lightbox-nav:hover { background: rgba(255,255,255,0.4); }
.lightbox-prev { left: -55px; }
.lightbox-next { right: -55px; }

/* ==================== RATING STARS ==================== */
.rating-stars { display: flex; gap: 8px; }
.rating-star { font-size: 2rem; cursor: pointer; color: #ddd; transition: all 0.2s ease; }
.rating-star:hover, .rating-star.active { color: #ffc107; transform: scale(1.2); }

/* ==================== HOVER EFFECTS ==================== */
.hover-danger:hover { color: var(--primary-red) !important; }
.hover-lift:hover { transform: translateY(-5px); }
.hover-shadow { transition: box-shadow var(--transition-normal); }
.hover-shadow:hover { box-shadow: var(--shadow-xl) !important; }
.hover-scale { transition: transform var(--transition-fast); }
.hover-scale:hover { transform: scale(1.05); }

/* ==================== SERVICES MEGA MENU ==================== */
.services-mega-menu { width: 750px; max-height: 80vh; overflow-y: auto; border-radius: var(--border-radius-lg); border: none; box-shadow: 0 20px 60px rgba(0,0,0,0.2); padding: 1.5rem; left: 50% !important; transform: translateX(-50%) !important; right: auto !important; }
.services-mega-menu .category-header { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid; }
.services-mega-menu .service-link { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.5rem; border-radius: 0.5rem; transition: all 0.2s ease; font-size: 0.85rem; color: #333; text-decoration: none; }
.services-mega-menu .service-link:hover { background: #f8f9fa; transform: translateX(5px); }
.services-mega-menu .service-link .emoji { font-size: 1.2rem; width: 24px; text-align: center; }
@media (min-width: 992px) { .dropdown:hover .dropdown-menu { display: block; } }
@media (max-width: 991.98px) { .services-mega-menu { width: 100%; max-height: 60vh; left: 0 !important; transform: none !important; } }

/* ==================== FOOTER ==================== */
.footer { background: var(--dark-bg); color: var(--white); }
.footer a { color: var(--text-light); transition: color var(--transition-fast); }
.footer a:hover { color: var(--primary-red); }
.footer-social-btn { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); transition: all var(--transition-fast); text-decoration: none; }
.footer-social-btn:hover { background: var(--primary-red); color: var(--white) !important; transform: translateY(-3px); }

/* ==================== PAGINATION ==================== */
.pagination-custom .page-link { color: var(--primary-red); border-radius: var(--border-radius-sm); margin: 0 2px; transition: all var(--transition-fast); }
.pagination-custom .page-link:hover { background: var(--primary-red); color: var(--white); }
.pagination-custom .active .page-link { background: var(--primary-red); border-color: var(--primary-red); }

/* ==================== BACK TO TOP ==================== */
.back-to-top { position: fixed; bottom: 80px; right: 24px; z-index: 1040; opacity: 0; visibility: hidden; transition: all var(--transition-normal); width: 45px; height: 45px; }
.back-to-top.visible { opacity: 1; visibility: visible; }

/* ==================== SECRET LOGIN ==================== */
.secret-login { position: fixed; bottom: 10px; left: 10px; opacity: 0.05; font-size: 10px; color: #ccc; z-index: 9999; transition: opacity 0.3s; }
.secret-login:hover { opacity: 1; }

/* ==================== TESTIMONIAL FORM ==================== */
.success-animation { animation: successPop 0.6s ease-out; }
@keyframes successPop { 0%{transform:scale(0.5);opacity:0} 70%{transform:scale(1.1)} 100%{transform:scale(1);opacity:1} }

/* ==================== BADGE ==================== */
.badge { font-weight: 500; letter-spacing: 0.02em; }

/* ==================== KEYFRAMES ==================== */
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes float { 0%,100%{transform:translate(0,0)rotate(0deg)} 25%{transform:translate(20px,-20px)rotate(90deg)} 50%{transform:translate(-10px,-40px)rotate(180deg)} 75%{transform:translate(-30px,-10px)rotate(270deg)} }
@keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
@keyframes spin-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* ==================== UTILITY CLASSES ==================== */
.object-fit-cover { object-fit: cover; }
.cursor-pointer { cursor: pointer; }
.text-truncate-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.text-truncate-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.bg-glass { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.bg-glass-dark { background: rgba(0,0,0,0.2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.shadow-hover { transition: box-shadow var(--transition-normal); }
.shadow-hover:hover { box-shadow: var(--shadow-xl); }
.rounded-4 { border-radius: 1rem !important; }
.rounded-5 { border-radius: 1.5rem !important; }
.border-white-25 { border-color: rgba(255,255,255,0.25) !important; }
.tracking-wider { letter-spacing: 0.05em; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991.98px) {
    .display-1 { font-size: 2.5rem; }
    .display-2 { font-size: 2rem; }
    .display-3 { font-size: 2rem; }
    .display-4 { font-size: 1.8rem; }
    .display-5 { font-size: 1.5rem; }
    .timeline-item { padding-left: 60px; }
    .timeline-dot { left: 15px; }
    .timeline-line { left: 24px; }
    .services-mega-menu { width: 100%; left: 0 !important; transform: none !important; }
    .featured-announcement { height: 300px; }
    .featured-content { padding: 1.5rem; }
    .detail-hero { min-height: 250px; }
    .offer-card { margin-top: 2rem; }
}

@media (max-width: 767.98px) {
    .hero-section { min-height: 80vh; }
    .about-hero { min-height: 50vh; }
    .counter { font-size: 2rem; }
    .floating-actions { bottom: 16px; right: 16px; }
    .cta-section { border-radius: var(--border-radius-md); }
    .featured-announcement { height: 250px; }
    .detail-hero { min-height: 200px; }
    .detail-meta { gap: 0.5rem; }
    .detail-content { font-size: 1rem; }
    .share-btn { width: 36px; height: 36px; }
    .about-story-img { height: 250px; }
    .faq-item { padding: 1rem 0; }
    .faq-question { font-size: 0.95rem; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 10px; right: 10px; }
}

@media (max-width: 575.98px) {
    .display-1 { font-size: 2rem; }
    .timeline-item { padding-left: 50px; }
    .timeline-dot { left: 10px; width: 16px; height: 16px; }
    .timeline-line { left: 17px; }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .navbar, .floating-actions, .back-to-top, .footer { display: none !important; }
    body { color: black; background: white; }
    a { color: black; text-decoration: underline; }
}