/**
 * OPEROSUS - Custom Stylesheet
 * Modern, clean design for home transformation services
 * Orange Theme - Flat Colors, Poppins Font
 */

/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --primary-color: #FF6600;        /* Main Orange */
    --primary-dark: #E55A00;         /* Darker Orange */
    --primary-light: #FF8533;        /* Light Orange */
    --primary-lighter: #FFB380;      /* Lighter Orange */
    --primary-pale: #FFE6D5;         /* Very Light Orange */
    
    --secondary-color: #333333;      /* Dark Gray */
    --success-color: #28A745;        /* Green */
    --danger-color: #DC3545;         /* Red */
    --warning-color: #FFA500;        /* Orange Yellow */
    --info-color: #17A2B8;           /* Teal */
    
    --light-color: #F9F9F9;          /* Off White */
    --dark-color: #2C2C2C;           /* Almost Black */
    --white: #FFFFFF;
    --gray-light: #E0E0E0;
    --gray-medium: #999999;
    
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    position: relative;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-family: var(--font-heading);
}

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

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.65rem;
    color: var(--secondary-color);
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin-top: 2px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar .btn-primary {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--primary-color);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-content h1,
.hero-content p,
.hero-content .display-3,
.hero-content .lead,
.hero-content .fs-3,
.hero-content .fs-5 {
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.animate-fade-in {
    animation: fadeIn 1s ease;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s backwards;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease 0.9s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 100px 0 80px;
    background: var(--primary-color);
    background-image: url('../images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.45) 0%, rgba(229, 90, 0, 0.50) 100%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1,
.page-header .display-4 {
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--white);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-icon i {
    display: inline-block;
}

/* Service Cards with Images */
.service-card-image {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-card-content {
    padding: 1.5rem;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.feature-icon i {
    display: inline-block;
}

.feature-box {
    background: var(--light-color);
    border-radius: 10px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-style: italic;
    color: var(--secondary-color);
    line-height: 1.8;
    font-size: 1rem;
}

.testimonial-author h6 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.rating i {
    font-size: 1rem;
    color: var(--primary-color);
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

/* Pricing Preview (Homepage) */
.pricing-preview-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.pricing-preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-preview-item-last {
    border-bottom: none;
}

.pricing-preview-info {
    flex: 1;
}

.pricing-preview-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.pricing-preview-subtitle {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.pricing-preview-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    margin-left: 1rem;
}

.pricing-benefits-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2rem 1.75rem;
    height: 100%;
}

.pricing-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-benefits-list li {
    display: flex;
    align-items: flex-start;
    padding: 0.875rem 0;
    color: var(--dark-color);
}

.pricing-benefits-list li i {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-right: 0.875rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.pricing-benefits-list li span {
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-header i {
    color: var(--primary-color);
}

.price-tag {
    color: var(--primary-color);
}

/* New Clean Pricing Cards */
.pricing-card-clean {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.pricing-card-clean:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.pricing-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
}

.pricing-card-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1.2;
}

.price-currency {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.pricing-card-subtitle {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-card-features li {
    padding: 0.5rem 0;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.pricing-card-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

/* Ribbon for featured (middle) card */
.pricing-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.pricing-card-clean .btn {
    margin-top: 0.75rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--primary-color);
    color: var(--white);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filter .btn {
    margin: 0.25rem;
}

.gallery-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-card:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-info {
    color: var(--white);
    text-align: center;
    padding: 1rem;
}

.gallery-info h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.contact-icon i {
    display: inline-block;
}

/* Map Container */
.map-container {
    border: 3px solid var(--gray-light);
    background: var(--white);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.business-hours-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #dee2e6;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.map-placeholder {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
}

.promise-item {
    padding: 1.25rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    text-align: center;
}

.promise-icon {
    color: var(--primary-color);
    font-size: 1.75rem;
}

.promise-intro {
    max-width: 860px;
    margin: 0 auto 0.75rem;
    color: var(--secondary-color);
}

.promise-grid {
    margin-top: 1.5rem !important;
}

.promise-quote {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--primary-dark);
    font-style: italic;
}

.location-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

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

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    font-size: 1.5rem;
}

.service-badge i {
    display: inline-block;
}

.service-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.process-step {
    padding: 2rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-pale);
    font-family: var(--font-heading);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    margin-top: auto;
    background: #1a1a1a !important;
}

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

.footer-brand h4 {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-text {
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.875rem;
    color: #b3b3b3;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 0.625rem;
    margin-top: 0.125rem;
    font-size: 1rem;
}

.footer-contact a {
    color: #b3b3b3;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-hours {
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-hours strong {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 0.625rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.125rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
}

.footer-copyright {
    color: #999999;
    font-size: 0.9rem;
}

.footer-tagline-bottom {
    color: #999999;
    font-size: 0.9rem;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--primary-color);
}

.stat-item {
    padding: 1rem 0.5rem;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.stat-icon i {
    font-size: 1.25rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    letter-spacing: 0.5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

/* ============================================
   UTILITIES
   ============================================ */
.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-section {
        min-height: 70vh;
        background-attachment: scroll;
        background-position: center center;
    }
    
    .navbar-nav {
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 100vh;
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.75);
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .navbar-logo {
        height: 50px;
        width: 50px;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .brand-tagline {
        font-size: 0.6rem;
    }
}

/* ============================================
   PLACEHOLDER IMAGES
   ============================================ */
.gallery-image img[src*="gallery/"],
.service-image-wrapper img,
.about-image-wrapper img {
    background: var(--primary-pale);
}

/* ============================================
   ADDITIONAL ORANGE ACCENTS
   ============================================ */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

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

a {
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-dark);
}

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

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25) !important;
}

/* Orange check marks */
.bi-check-circle-fill {
    color: var(--primary-color) !important;
}

/* Bootstrap badge overrides */
.badge.bg-primary {
    background-color: var(--primary-color) !important;
}

.badge.bg-success {
    background-color: var(--primary-light) !important;
}

.badge.bg-warning {
    background-color: var(--warning-color) !important;
}

.badge.bg-info {
    background-color: var(--primary-lighter) !important;
}

.badge.bg-danger {
    background-color: var(--primary-dark) !important;
}

/* Alert styles */
.alert-success {
    background-color: var(--primary-pale);
    border-color: var(--primary-light);
    color: var(--primary-dark);
}

.alert-info {
    background-color: #E8F4F8;
    border-color: #B3D9E6;
    color: #0C5460;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .footer,
    .cta-section,
    .btn,
    .scroll-indicator {
        display: none !important;
    }
}

