/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #DC143C;
    --dark-red: #B8102F;
    --light-red: #FF6B6B;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --black: #000000;
    --shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
    --shadow-hover: 0 15px 40px rgba(220, 20, 60, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    text-align: center;
}

.loader-logo {
    font-size: 60px;
    color: var(--primary-red);
    margin-bottom: 20px;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.loader-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(220, 20, 60, 0.15);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-red);
}

.logo i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.admin-link {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white) !important;
    padding: 8px 15px;
    border-radius: 25px;
}

.admin-link::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape2 {
    width: 200px;
    height: 200px;
    background: var(--primary-red);
    transform: rotate(45deg);
    bottom: 100px;
    left: -100px;
    animation-delay: 3s;
}

.shape3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--light-red), var(--primary-red));
    border-radius: 30px;
    bottom: 200px;
    right: 100px;
    animation-delay: 6s;
}

.shape4 {
    width: 100px;
    height: 100px;
    background: var(--light-red);
    border-radius: 50%;
    top: 50%;
    left: 10%;
    animation-delay: 2s;
    opacity: 0.08;
}

.shape5 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-red), var(--light-red));
    transform: rotate(20deg);
    top: 20%;
    left: 60%;
    animation-delay: 4s;
    opacity: 0.08;
    border-radius: 15px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
    animation: slideIn 0.8s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.title-line:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    from {
        transform: translateX(-30px);
    }
}

.highlight {
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dream-text {
    color: var(--primary-red) !important;
    font-weight: 900 !important;
    letter-spacing: 3px !important;
    -webkit-text-fill-color: var(--primary-red) !important;
    background: none !important;
    filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.6)) 
            drop-shadow(0 0 40px rgba(220, 20, 60, 0.4));
    animation: slideIn 0.8s ease forwards, dreamPulse 3s ease-in-out infinite !important;
    animation-delay: 0.4s, 1.2s !important;
}

@keyframes dreamPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.6)) 
                drop-shadow(0 0 40px rgba(220, 20, 60, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(220, 20, 60, 0.9)) 
                drop-shadow(0 0 60px rgba(220, 20, 60, 0.6));
    }
}


.hero-subtitle {
    font-size: 22px;
    color: var(--gray);
    margin-bottom: 40px;
    animation: fadeIn 1s ease 0.8s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeIn 1s ease 1s backwards;
}

.btn {
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    animation: fadeIn 1s ease 1.2s backwards;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--gray);
    font-size: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-red);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

/* Title Decorator */
.title-decorator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.3s;
}

.deco-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.deco-icon {
    color: var(--primary-red);
    font-size: 16px;
    animation: spin 3s linear infinite;
}

/* Decorative Elements */
.decorative-element {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.03;
}

.deco-left {
    top: 10%;
    left: -100px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    animation: floatSlow 15s ease-in-out infinite;
}

.deco-right {
    bottom: 10%;
    right: -100px;
    background: radial-gradient(circle, var(--light-red) 0%, transparent 70%);
    animation: floatSlow 15s ease-in-out infinite reverse;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
}

/* Services Section */
.services {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 36px;
    color: var(--white);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: var(--gray);
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Portfolio Section */
.portfolio {
    background: var(--white);
}

.portfolio-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 30px;
    border: 2px solid var(--primary-red);
    background: var(--white);
    color: var(--primary-red);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 300px;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item video.portfolio-image {
    object-fit: cover;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.9), rgba(184, 16, 47, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.portfolio-item:hover .portfolio-overlay h3 {
    transform: translateY(0);
}

.portfolio-overlay p {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s;
}

.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

/* Touch Indicator for Mobile */
.portfolio-overlay::before {
    content: '\f065';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .portfolio-overlay::before {
        opacity: 1;
    }
}

.portfolio-category {
    background: var(--white);
    color: var(--primary-red);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.portfolio-category i {
    font-size: 14px;
}

.portfolio-item:hover .portfolio-category {
    transform: translateY(0);
}

/* About Section */
.about {
    background: var(--off-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.about-badge i {
    font-size: 24px;
    color: var(--primary-red);
}

.about-badge span {
    font-weight: 600;
    color: var(--dark-gray);
}

.about-text .section-title {
    text-align: left;
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 20px;
}

.feature-item span {
    color: var(--dark-gray);
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.info-card {
    background: var(--off-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.info-card i {
    font-size: 36px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.info-card p {
    color: var(--gray);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form {
    background: var(--off-white);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--light-red);
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.footer-section ul li i {
    color: var(--primary-red);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.fab-btn span {
    position: absolute;
    right: 70px;
    background: var(--dark-gray);
    padding: 10px 20px;
    border-radius: 25px;
    white-space: nowrap;
    font-size: 14px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.fab-btn:hover span {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-btn {
    background: #25D366;
    animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
    background: #1ea952;
    transform: scale(1.1);
}

.call-btn {
    background: var(--primary-red);
    animation: bounce 2s infinite 1s;
}

.call-btn:hover {
    background: var(--dark-red);
    transform: scale(1.1);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .contact-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .dream-text {
        letter-spacing: 1px;
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 15px;
        justify-content: space-between;
        width: 100%;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
        padding: 10px 5px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-item p {
        font-size: 12px;
        line-height: 1.3;
    }

    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }

    .portfolio-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding-bottom: 20px;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-red) var(--light-gray);
    }
    
    .portfolio-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .portfolio-grid::-webkit-scrollbar-track {
        background: var(--light-gray);
        border-radius: 10px;
    }
    
    .portfolio-grid::-webkit-scrollbar-thumb {
        background: var(--primary-red);
        border-radius: 10px;
    }
    
    .portfolio-item {
        min-width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .portfolio-item:active {
        transform: scale(0.98);
    }
    
    .portfolio-filters {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }

    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .fab-btn span {
        display: none;
    }

    .back-to-top {
        bottom: 20px;
        left: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo i {
        font-size: 24px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .title-line {
        margin: 5px 0;
    }
    
    .dream-text {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: space-between;
        width: 100%;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
        padding: 8px 3px;
    }
    
    .stat-number {
        font-size: 28px;
        white-space: nowrap;
    }
    
    .stat-item p {
        font-size: 11px;
        line-height: 1.2;
    }

    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 50px 0;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .portfolio-grid {
        gap: 12px;
    }
    
    .portfolio-item {
        min-width: 90%;
        max-width: 90%;
        height: 250px;
    }
    
    .portfolio-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .scroll-indicator-portfolio {
        font-size: 13px;
        margin-top: 15px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-card i {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .fab-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .back-to-top {
        bottom: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-stats {
        gap: 8px;
    }
    
    .stat-number {
        font-size: 24px;
        margin-bottom: 3px;
    }
    
    .stat-item p {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .stat-item {
        padding: 8px 2px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease;
}

.slide-in-left {
    animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scale-in {
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Additional Graphics and Visual Enhancements */

/* Animated Background Particles */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Decorative Dots Pattern */
.services::before,
.portfolio::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--primary-red) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

.services,
.portfolio,
.about,
.contact {
    position: relative;
    overflow: hidden;
}

/* Floating Icons Animation */
.services::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--light-red) 0%, var(--primary-red) 100%);
    border-radius: 50%;
    opacity: 0.05;
    animation: floatSlow 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -20px) scale(1.1);
    }
    50% {
        transform: translate(-20px, -40px) scale(0.9);
    }
    75% {
        transform: translate(-40px, -20px) scale(1.05);
    }
}

/* Wave Pattern for Sections */
.about::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* Gradient Overlay on Cards */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-red) 50%, 
        transparent 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

/* Sparkle Effect */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-item::before {
    content: '✦';
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(50%);
    color: var(--primary-red);
    font-size: 20px;
    opacity: 0;
    animation: sparkle 3s ease-in-out infinite;
}

.stat-item {
    position: relative;
}

.stat-item:nth-child(2)::before {
    animation-delay: 1s;
}

.stat-item:nth-child(3)::before {
    animation-delay: 2s;
}

@media (max-width: 768px) {
    .stat-item::before {
        font-size: 14px;
        top: -5px;
    }
}

/* Glow Effect on Hover */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    border-radius: 50px;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::after {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.3;
}

/* Animated Border for Portfolio Items */
.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary-red);
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
    pointer-events: none;
}

.portfolio-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Ripple Effect on Contact Form */
.form-group {
    position: relative;
    overflow: hidden;
}

.form-group::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.form-group:focus-within::before {
    width: 300%;
    height: 300%;
}

/* Animated Gradient Text */
.hero-title .highlight {
    background: linear-gradient(45deg, 
        var(--primary-red), 
        var(--light-red), 
        var(--primary-red), 
        var(--light-red));
    background-size: 300% 300%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Icon Rotation on Hover */
.service-icon i,
.info-card i {
    transition: all 0.5s ease;
}

.service-card:hover .service-icon i {
    transform: rotateY(360deg) scale(1.1);
}

.info-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Animated Underline for Links */
.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.footer-section ul li {
    position: relative;
}

.footer-section ul li a:hover::before {
    width: 100%;
}

/* Breathing Animation for Badges */
.about-badge {
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-hover);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(220, 20, 60, 0.3);
    }
}

/* Stagger Animation for Service Features */
.service-features li {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease forwards;
}

.service-features li:nth-child(1) {
    animation-delay: 0.1s;
}

.service-features li:nth-child(2) {
    animation-delay: 0.2s;
}

.service-features li:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:hover .service-features li {
    animation: slideInLeft 0.5s ease forwards;
}

/* Continuous Border Animation */
@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.admin-link {
    position: relative;
    overflow: hidden;
}

.admin-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-red), 
        var(--light-red), 
        var(--primary-red), 
        var(--light-red));
    border-radius: 25px;
    z-index: -1;
    animation: rotateBorder 3s linear infinite;
    background-size: 400% 400%;
}

/* Pulse Animation for Floating Buttons */
@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-btn {
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulseRed {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(220, 20, 60, 0.6);
    }
}

.call-btn {
    animation: buttonPulseRed 2s ease-in-out infinite 1s;
}

/* Loading Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.portfolio-item {
    background: linear-gradient(
        90deg,
        var(--off-white) 0%,
        var(--light-gray) 50%,
        var(--off-white) 100%
    );
    background-size: 1000px 100%;
}

.portfolio-item:hover {
    animation: shimmer 2s infinite;
}

/* Mobile Specific Graphics */
@media (max-width: 768px) {
    .services::before,
    .portfolio::before,
    .services::after {
        width: 60px;
        height: 60px;
    }
    
    .geometric-shape {
        opacity: 0.05;
    }
    
    .shape1 {
        width: 200px;
        height: 200px;
    }
    
    .shape2,
    .shape3 {
        width: 100px;
        height: 100px;
    }
    
    .shape4,
    .shape5 {
        width: 60px;
        height: 60px;
    }
    
    .decorative-element {
        width: 100px;
        height: 100px;
    }
    
    .title-decorator {
        gap: 10px;
    }
    
    .deco-line {
        width: 40px;
    }
    
    .deco-icon {
        font-size: 14px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Better tap targets */
    .nav-link {
        padding: 12px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .filter-btn {
        min-height: 40px;
    }
    
    .fab-btn {
        min-width: 48px;
        min-height: 48px;
    }
    
    /* Disable hover animations on touch devices */
    .service-card:hover .service-icon {
        transform: none;
    }
    
    .portfolio-item:hover .portfolio-image {
        transform: scale(1);
    }
    
    /* Active state for touch feedback */
    .btn:active {
        transform: scale(0.95);
    }
    
    .service-card:active {
        transform: translateY(-5px);
    }
    
    .portfolio-item:active {
        transform: scale(0.98);
    }
}

/* High Resolution Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-icon,
    .info-card i,
    .stat-number {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 20px;
        flex-wrap: nowrap;
    }
    
    .stat-item {
        min-width: 0;
        flex: 1;
    }
    
    section {
        padding: 50px 0;
    }
}

/* Performance Optimization - Reduce Animations on Low-End Devices */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --off-white: #1a1a1a;
        --light-gray: #2a2a2a;
        --dark-gray: #f5f5f5;
    }
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-red), var(--dark-red));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

/* Selection Color */
::selection {
    background: var(--primary-red);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-red);
    color: var(--white);
}

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 3px solid var(--primary-red);
    outline-offset: 3px;
}

/* Portfolio Modal/Lightbox */
.portfolio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
    overflow: auto;
}

.portfolio-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.portfolio-modal-content img,
.portfolio-modal-content video {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.3);
}

.portfolio-modal-content video {
    background: #000;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    background: var(--dark-red);
    transform: rotate(90deg);
}

.modal-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    color: var(--white);
    text-align: center;
}

.modal-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.modal-info p {
    font-size: 14px;
    color: var(--light-gray);
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .portfolio-modal {
        padding: 10px;
    }
    
    .portfolio-modal-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
        background: rgba(220, 20, 60, 0.9);
    }
    
    .modal-info {
        position: static;
        margin-top: 15px;
        padding: 15px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 10px;
    }
    
    .modal-info h3 {
        font-size: 18px;
    }
    
    .modal-info p {
        font-size: 13px;
    }
}

/* Horizontal Scroll Indicator */
.scroll-indicator-portfolio {
    text-align: center;
    margin-top: 10px;
    color: var(--gray);
    font-size: 14px;
    display: none;
}

@media (max-width: 768px) {
    .scroll-indicator-portfolio {
        display: block;
        animation: fadeIn 1s ease 2s backwards;
    }
    
    .scroll-indicator-portfolio i {
        animation: slideLeft 1.5s ease-in-out infinite;
        display: inline-block;
    }
}

@keyframes slideLeft {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .floating-buttons,
    .back-to-top,
    .loading-screen,
    .portfolio-modal {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

