/* Version 1.1 - Force Cache Refresh */
:root {
    --bg-color: #050505;
    --bg-secondary: #0f0f0f;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    /* Brighter for better contrast */
    --accent-color: #e31e24;
    --accent-gradient: linear-gradient(135deg, #e31e24 0%, #a31115 100%);
    --silver-gradient: linear-gradient(135deg, #f5f5f5 0%, #9e9e9e 100%);
    --dark-gradient: linear-gradient(to bottom, #050505, #1a1a1a);

    --font-heading: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-body: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    --transition-slow: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: all 0.3s ease;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(227, 30, 36, 0.2);
}

/* Fix for Arabic typography: disable letter-spacing which breaks ligatures */
html[lang="ar"] * {
    letter-spacing: 0 !important;
}

/* Exception for specific English text if needed, but default to 0 for site consistency */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    /* Bolder */
    line-height: 1.4;
    color: #fff;
}

h1 strong,
h2 strong {
    color: var(--accent-color);
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 700;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-gradient);
    background-size: 200% auto;
    color: #fff;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.5);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.4);
}

.btn-text {
    color: var(--accent-color);
    margin-right: 20px;
    margin-left: 0;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}


/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Solid Navbar for Service Pages */
.navbar-solid {
    position: relative;
    /* Not fixed over content */
    background-color: #000;
    /* Solid Black */
    border-bottom: 1px solid rgba(227, 30, 36, 0.2);
    padding: 15px 0;
}

.service-page-body {
    padding-top: 0;
}

.service-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.service-content-detail {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    width: 80px;
    transition: width 0.3s ease;
}

.logo-img {
    width: 100%;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-cta {
    padding: 8px 24px;
    font-size: 0.8rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-image-wrapper {
    flex: 1.5;
    position: absolute;
    right: -5%;
    top: 0;
    height: 100%;
    width: 65%;
    z-index: -1;
    mask-image: linear-gradient(to right, transparent, black 20%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 400px;
}

/* Features Section */
/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-slow);
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(227, 30, 36, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    transition: var(--transition-fast);
    backdrop-filter: blur(5px);
}

.service-card:hover .service-overlay-icon {
    transform: translate(-50%, -50%) scale(1);
}

.service-content {
    padding: 25px;
    text-align: right;
}

.service-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #fff;
    font-family: var(--font-heading);
}

.service-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Modals */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(10px);
}

.modal-container.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    display: none;
    width: 90%;
    max-width: 900px;
    background: #111;
    border: 1px solid rgba(227, 30, 36, 0.3);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-container.active .modal.active {
    display: flex;
    transform: translateY(0);
}

.modal-content {
    display: flex;
    flex-direction: row;
    /* Desktop default */
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content img {
    width: 45%;
    object-fit: cover;
}

.modal-text {
    padding: 40px;
    flex: 1;
    text-align: right;
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--accent-color);
    color: black;
}

.modal h2 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 2rem;
    font-family: var(--font-heading);
}

.modal-intro {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.modal ul {
    list-style: none;
    margin-bottom: 30px;
}

.modal ul li {
    margin-bottom: 15px;
    padding-right: 25px;
    position: relative;
    color: var(--text-secondary);
}

.modal ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Mobile Modal */
@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
    }

    .modal-content img {
        width: 100%;
        height: 250px;
    }

    .modal-text {
        padding: 25px;
    }
}


/* Gallery Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Swiper Customization */
.gallery-slider-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 50px;
    /* Space for pagination if needed */
}

.swiper-slide {
    height: auto;
}

.gallery-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
    /* Zoom effect */
}

.gallery-overlay h4,
.gallery-overlay p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0) 100%);
    opacity: 1;
    /* Always visible */
    pointer-events: none;
    /* Let clicks pass through if needed */
}

/* Swiper Navigation Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(227, 30, 36, 0.3);
    transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-color);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.4);
}

@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1rem;
    }
}

/* Spotlight Section */
.spotlight-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.spotlight-image {
    flex: 1;
}

.spotlight-image img {
    width: 100%;
    border-radius: 2px;
    /* Slight soft edge */
    opacity: 0.9;
}

.spotlight-content {
    flex: 1;
}

.spotlight-title {
    font-size: 3rem;
    margin-bottom: 30px;
}

.spotlight-text {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.spotlight-list li {
    margin-bottom: 15px;
    padding-right: 20px;
    padding-left: 0;
    position: relative;
    color: var(--text-primary);
}

.spotlight-list li::before {
    content: '';
    position: absolute;
    right: 0;
    left: auto;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--text-primary);
    border-radius: 50%;
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    text-align: center;
    padding: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 30, 36, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    opacity: 0.9;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: white;
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Article Page Specifics */
.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-meta {
    justify-content: center;
    margin-top: 15px;
}

.article-body {
    background: var(--glass-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-body h2 {
    color: var(--accent-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.article-body p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-body ul {
    list-style: disc;
    margin-right: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.article-body li {
    margin-bottom: 10px;
}

/* Related Articles */
.related-articles {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Testimonials */
.testimonials-slider {
    padding: 20px;
    /* Space for hover transform and shadows */
    margin: 0 -20px;
    /* Offset margin to align with container */
}

/* Remove old grid styles if any remaining, though replaced in HTML */


.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    border-color: rgba(227, 30, 36, 0.3);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.stars {
    color: #FFD700;
    /* Gold */
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.quote {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-style: normal;
}

.author-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.author-details {
    font-size: 0.9rem;
    color: var(--accent-color);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #4CAF50;
    /* Green for verified */
    margin-top: 5px;
    font-weight: 500;
}

.verified-badge svg {
    fill: #4CAF50;
}

/* Booking Section */
.booking {
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
}

.booking-content {
    max-width: 600px;
    margin: 0 auto;
}

.booking-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.map-wrapper {
    background: var(--glass-bg);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 100%;
}

.map-wrapper iframe {
    border-radius: 4px;
    width: 100%;
    height: 100%;
    min-height: 300px;
    filter: grayscale(100%) invert(92%) contrast(83%);
    /* Dark Map Style */
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--glass-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.contact-item:hover {
    border-color: rgba(227, 30, 36, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.icon-box-small {
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Location */
@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo-link {
    display: block;
    width: 80px;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 100%;
    height: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-form input {
    background: none;
    border: none;
    color: white;
    padding: 10px 0;
    outline: none;
    width: 200px;
}

.newsletter-form button {
    background: none;
    border: none;
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    letter-spacing: 1px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-image-wrapper {
        position: relative;
        width: 100%;
        right: auto;
        height: 50vh;
        mask-image: none;
        -webkit-mask-image: none;
        order: -1;
        margin-bottom: -50px;
        z-index: 0;
    }

    .hero-image-wrapper::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to top, var(--bg-color), transparent);
    }

    .hero-content {
        z-index: 2;
        padding: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    /* Mobile Menu Styles */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        padding-top: 60px;
        /* Space for close button */
        display: flex;
        /* Override display:none */
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-cta {
        display: none;
        /* Hide CTA for now on mobile or add to menu */
    }
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.btn-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition-fast);
    color: white;
}

.btn-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-call {
    background-color: var(--accent-color);
}

.btn-float svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .btn-float {
        width: 50px;
        height: 50px;
    }

    .btn-float svg {
        width: 25px;
        height: 25px;
    }
}

/* Balanced Preloader - Logo Only */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 180px;
    margin-bottom: 0;
    animation: quickPulse 2s infinite ease-in-out;
}

@keyframes quickPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

/* Animations Hub */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Accordion */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(227, 30, 36, 0.05);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    padding: 0 25px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 10px 25px 25px 25px;
}

@media (max-width: 768px) {
    .comparison-slider {
        aspect-ratio: 4/3;
    }

    .handle-circle {
        width: 36px;
        height: 36px;
    }
}

/* Footer Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--accent-gradient);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Promo Modal - Opening Offer */
.promo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-modal.active {
    opacity: 1;
    visibility: visible;
}

.promo-content {
    background: var(--bg-secondary);
    width: 90%;
    max-width: 500px;
    padding: 50px 30px;
    border-radius: 20px;
    position: relative;
    text-align: center;
    border: 1px solid rgba(227, 30, 36, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(227, 30, 36, 0.1);
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-modal.active .promo-content {
    transform: scale(1) translateY(0);
}

.promo-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.promo-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.promo-badge {
    display: inline-block;
    background: var(--accent-gradient);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.4);
}

.promo-body h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.promo-service {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.promo-pricing {
    background: rgba(227, 30, 36, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px dashed rgba(227, 30, 36, 0.3);
}

.price-current {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    text-shadow: 0 0 20px rgba(227, 30, 36, 0.3);
    animation: pricePulse 2s infinite;
}

.price-current span {
    font-size: 1rem;
    font-weight: 500;
    margin-right: -5px;
}

.price-old {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
    margin-top: 10px;
}

.promo-note {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.promo-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

@keyframes pricePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .promo-body h2 {
        font-size: 1.8rem;
    }

    .price-current {
        font-size: 2.8rem;
    }
}
/* Image Modal Styles */
.image-modal {
    padding: 0 !important;
    background: transparent !important;
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    position: relative;
    border: none !important;
    box-shadow: none !important;
}

.promo-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.image-modal .promo-close {
    top: 10px;
    right: 10px;
    left: auto;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    z-index: 10;
}

.image-modal .promo-close:hover {
    background: var(--accent-color);
}


/* Light Mode Overrides */
body.light-mode {
    --bg-color: #f0f2f5;
    --bg-secondary: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: 1px solid rgba(0, 0, 0, 0.1);
    --dark-gradient: linear-gradient(to bottom, #f0f2f5, #ffffff);
}
/* Specific Light Mode Adjustments */
body.light-mode h1, body.light-mode h2, body.light-mode h3, body.light-mode h4 { color: #1a1a1a; }
body.light-mode .navbar { background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid rgba(0,0,0,0.1); }
body.light-mode .navbar.scrolled { background: #ffffff; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); }
body.light-mode .nav-links a { color: #1a1a1a; }
body.light-mode .feature-item, body.light-mode .gallery-card, body.light-mode .testimonial-card, body.light-mode .service-card, body.light-mode .faq-item {
    background: #ffffff; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); border: 1px solid rgba(0, 0, 0, 0.05);
}
body.light-mode .hero-text, body.light-mode .section-subtitle, body.light-mode p { color: #4a4a4a; }
body.light-mode .footer { background: #1a1a1a; color: #ffffff; }
body.light-mode .footer p { color: #ccc; }
