/**
 * Xigox Computer Laptop Repair Sales Service Center
 * Main Stylesheet - Ultra-Premium, Modern, SEO-Optimized
 * Mobile-First Responsive Design
 * @version 1.0.0
 */

/* ===================================
   CSS Variables & Root Styles
   =================================== */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #ff6b35;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --gray-color: #6c757d;
    --border-color: #dee2e6;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    --transition-base: all 0.3s ease;
    --box-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --box-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --border-radius: 8px;
}

/* Premium Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes bounce-slow {
    0%, 100% { 
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
    50% { 
        transform: translateY(-10%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 102, 204, 0.4); }
    50% { box-shadow: 0 0 40px rgba(0, 102, 204, 0.8); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-slow 4s ease-in-out infinite;
}

.animate-bounce-slow {
    animation: bounce-slow 2s infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* ===================================
   Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.min-vh-75 {
    min-height: 75vh;
}

/* ===================================
   Top Bar Styles
   =================================== */
.topbar {
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar a {
    transition: var(--transition-base);
}

.topbar a:hover {
    opacity: 0.8;
}

/* ===================================
   Navigation Styles
   =================================== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition-base);
}

.navbar.sticky-top {
    background-color: var(--white-color) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.navbar-brand i {
    font-size: 1.75rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--primary-color) !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===================================
   Floating Action Buttons
   =================================== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-float {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white-color);
    box-shadow: var(--box-shadow-lg);
    transition: var(--transition-base);
    animation: pulse 2s infinite;
}

.btn-float.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.btn-float.call {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.btn-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: var(--white-color);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 102, 204, 0.1) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230066cc' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content .badge {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.hero-section h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-section .lead {
    font-size: 1.15rem;
    line-height: 1.8;
}

.hero-features .feature-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.hero-features i {
    font-size: 1.25rem;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 102, 204, 0.2));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-item p {
    opacity: 0.9;
}

/* ===================================
   Section Headers
   =================================== */
.section-header h2 {
    font-size: 2.25rem;
    color: var(--dark-color);
}

.section-header .badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

/* ===================================
   Service Cards
   =================================== */
.service-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 102, 204, 0.1) 100%);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    transform: translate(50%, -50%) scale(1.5);
    opacity: 0.8;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 2.25rem;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.service-card:hover .service-icon i {
    color: var(--white-color) !important;
}

.service-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

/* ===================================
   Why Choose Section
   =================================== */
.why-choose-card {
    background: var(--white-color);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    transition: var(--transition-base);
}

.why-choose-card:hover .icon-box {
    transform: scale(1.15);
}

/* ===================================
   Brand Logos
   =================================== */
.brand-logo {
    padding: 1.5rem 2rem;
    background: var(--white-color);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gray-color);
    transition: var(--transition-base);
    display: inline-block;
    width: 100%;
}

.brand-logo:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--box-shadow-sm);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

/* ===================================
   Testimonial Cards
   =================================== */
.testimonials-swiper {
    padding: 2rem 0 3rem;
}

.testimonial-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
    position: relative;
    height: auto;
    min-height: 280px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0, 102, 204, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: var(--box-shadow-md);
    transform: translateY(-5px);
}

.stars i {
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-color);
    line-height: 1.8;
}

/* Swiper Custom Styles */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: var(--white-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-base);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* ===================================
   FAQ Accordion
   =================================== */
.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--white-color);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0, 102, 204, 0.05);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--gray-color);
    line-height: 1.8;
}

/* ===================================
   Footer
   =================================== */
.footer {
    margin-top: 4rem;
}

.footer h5 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

.contact-info li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.social-links .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links .btn:hover {
    background-color: var(--white-color);
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

.brands-section .badge {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.copyright-bar {
    font-size: 0.95rem;
}

/* ===================================
   Back to Top Button
   =================================== */
.btn-back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-color) 0%, #333 100%);
    color: var(--white-color);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 1039;
    box-shadow: var(--box-shadow-md);
    transition: var(--transition-base);
}

.btn-back-to-top.show {
    display: flex;
}

.btn-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #003366 100%);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-md);
}

.btn-success {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.btn-success:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* ===================================
   Problem & Location Templates
   =================================== */
.breadcrumbs {
    font-size: 0.95rem;
    color: var(--gray-color);
    margin-bottom: 1.25rem;
}

.breadcrumbs a {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumbs a:hover {
    color: var(--primary-dark);
}

.hero-problem,
.hero-problem-location {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-problem::before,
.hero-problem-location::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 102, 204, 0.1) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-problem .hero-content,
.hero-problem-location .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .hero-problem .hero-content,
    .hero-problem-location .hero-content {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
    }
}

.hero-problem h1,
.hero-problem-location h1 {
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--dark-color);
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.25rem 0;
}

.stat-item {
    background: var(--white-color);
    padding: 0.85rem 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    min-width: 160px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 600;
    margin-top: 0.25rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
}

.problem-overview,
.problem-location-overview,
.related-services,
.service-locations,
.reviews-section,
.faq-section,
.location-services,
.local-reviews-section,
.local-faq-section,
.why-choose-us,
.why-choose-local,
.final-cta-location {
    padding: 60px 0;
}

.problem-overview,
.problem-location-overview {
    background: var(--white-color);
}

.section-description {
    color: var(--gray-color);
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.services-grid,
.locations-grid,
.reviews-grid,
.features-grid {
    display: grid;
    gap: 1.25rem;
}

.services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reviews-grid {
    grid-template-columns: 1fr;
}

.features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .locations-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .locations-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.service-card,
.location-card,
.review-card,
.feature {
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.service-card:hover,
.location-card:hover,
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-md);
}

.location-card {
    display: block;
    color: inherit;
}

.service-icon,
.location-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.btn-link {
    display: inline-block;
    font-weight: 700;
    margin-top: 0.75rem;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--white-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1rem;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-answer {
    display: none;
    padding: 0 1rem 1rem 1rem;
    color: var(--gray-color);
}

.faq-item.open .faq-answer {
    display: block;
}

.final-cta-location {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white-color);
}

.final-cta-location h2,
.final-cta-location p {
    color: var(--white-color);
}

/* ===================================
   Responsive Media Queries
   =================================== */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 20px 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        background: var(--white-color);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow-sm);
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .service-card,
    .why-choose-card,
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .btn-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin: 0 0 0.75rem 0 !important;
    }
    
    .cta-section .btn {
        width: 100%;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.bg-primary-subtle {
    background-color: rgba(0, 102, 204, 0.1) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .navbar,
    .footer,
    .floating-buttons,
    .btn-back-to-top,
    .cta-section {
        display: none !important;
    }
}
