/* ======================================================
   FIX FOR INLINE STYLE ATTRIBUTES - MOVE TO CSS CLASSES
   ====================================================== */

/* Spinner styles */
.spinner-large {
    width: 3rem !important;
    height: 3rem !important;
}

/* Navbar height controls */
.navbar-brand-tall {
    height: 125px;
}

.navbar-topbar {
    height: 45px;
    overflow: hidden;
    position: relative;
}

.navbar-main {
    height: 80px;
    position: relative;
    z-index: 1051;
}

/* Navigation link styles */
.nav-link-large {
    font-size: 1rem !important;
}

/* Skip link styles */
.skip-link {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Hero section text styles */
.hero-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-subtitle {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Featured image styles */
.featured-escort-image {
    height: 250px;
    object-fit: cover;
}

.about-section-image {
    max-height: 400px;
}

/* Contact CTA background */
.contact-cta {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('img/carousel-1.webp');
    background-size: cover;
    background-position: center;
}

/* WhatsApp and phone icon styles */
.whatsapp-icon {
    font-size: 20px;
    color: green;
}

/* Footer social media styles */
.social-icon-large {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: #007bff;
    color: white;
    text-decoration: none;
}

.social-icon-large:hover {
    background: #0056b3;
    color: white;
    transform: translateY(-2px);
}

/* Gallery image styles */
.gallery-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Service card hover effects */
.service-card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Back to top button styles */
.back-to-top-btn {
    background: #ff6b35;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.back-to-top-btn:hover {
    background: #0c1844;
    color: white;
}

/* Card overlay styles */
.card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
}

/* Testimonial styles */
.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .navbar-brand-tall {
        height: auto;
    }
    
    .featured-escort-image {
        height: 200px;
    }
    
    .about-section-image {
        max-height: 300px;
    }
    
    .contact-cta {
        background-attachment: scroll;
    }
}

/* Print styles */
@media print {
    .back-to-top-btn,
    .navbar,
    .footer {
        display: none !important;
    }
    
    .hero-title {
        text-shadow: none !important;
        color: #000 !important;
    }
    
    .hero-subtitle {
        text-shadow: none !important;
        color: #333 !important;
    }
}