/* ===========================================
   MACKY'S CLEANING SERVICES - MAIN STYLESHEET
   Updated with 200px LARGE LOGO
============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Updated Color Scheme to Match Logo - Blue Theme */
:root {
    --primary-blue: #2563eb;
    --primary-blue-dark: #1e40af;
    --primary-blue-light: #3b82f6;
    --accent-green: #10b981;
    --accent-green-dark: #059669;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f8fafc;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 50%, var(--primary-blue-light) 100%);
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-blue), var(--primary-blue-light));
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-accent {
    background: linear-gradient(to right, var(--accent-green), var(--accent-green-dark));
    transition: all 0.3s ease;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
}

.testimonial-card {
    background: var(--background-light);
    border-left: 4px solid var(--primary-blue);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

.section-padding {
    padding: 80px 0;
}

.star-rating {
    direction: rtl;
    display: inline-block;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    color: #ddd;
    font-size: 24px;
    padding: 0 3px;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type="radio"]:checked ~ label {
    color: #fbbf24;
}

.social-media-hover {
    transition: all 0.3s ease;
}

.social-media-hover:hover {
    transform: translateY(-5px);
}

.review-image-preview {
    max-width: 100px;
    max-height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s;
}

.scroll-top-btn.show {
    opacity: 1;
}

.loading-spinner {
    display: none;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-blue);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===========================================
   LOGO STYLING - 200px SIZE
============================================= */

.logo-container {
    display: flex;
    align-items: center;
}

/* FORCE 200px LOGO SIZE */
.logo-img {
    height: 200px !important;
    width: auto !important;
    min-height: 200px !important;
    max-height: 250px !important;
    transition: all 0.3s ease;
    display: block !important;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Fallback text logo for when image doesn't load */
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-size: 3.0rem !important;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 1.5rem !important;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.logo-icon {
    background: var(--primary-blue);
    color: white;
}

/* ===========================================
   RESPONSIVE LOGO SIZES FOR 200px BASE
============================================= */

/* Tablet */
@media (max-width: 1024px) {
    .logo-img {
        height: 160px !important;
    }
    .logo-main {
        font-size: 2.5rem !important;
    }
    .logo-subtitle {
        font-size: 1.3rem !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    .logo-img {
        height: 140px !important;
    }
    .logo-main {
        font-size: 2.2rem !important;
    }
    .logo-subtitle {
        font-size: 1.1rem !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo-img {
        height: 120px !important;
    }
    .logo-main {
        font-size: 2.0rem !important;
    }
    .logo-subtitle {
        font-size: 1.0rem !important;
    }
}

/* ===========================================
   EXTRA LOGO OVERRIDES - Ensures size sticks
============================================= */

/* Override any potential conflicts */
header img.logo-img,
.sticky-top-0 .logo-img,
nav .logo-img,
.logo-container > img,
a[href*="index"] .logo-img,
img[alt*="Macky"],
img[src*="logo"] {
    height: 200px !important;
    width: auto !important;
}

/* Career Section Styles */
.career-benefits {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
}

.benefit-item {
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.file-upload-area {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--primary-blue);
    background-color: #f0f7ff;
}

.file-upload-area.dragover {
    border-color: var(--primary-blue);
    background-color: #e0f2fe;
}

/* ===========================================
   ADDITIONAL OVERRIDES FOR HEADER SPACING
============================================= */

/* Make header taller to accommodate 200px logo */
header.sticky-top-0 {
    padding: 40px 0 !important;
    min-height: 150px !important;
}

/* Add spacing around logo */
.logo-container {
    margin-right: 50px !important;
    padding: 15px 0 !important;
}

/* Ensure navigation has enough space */
nav {
    margin-top: 35px !important;
}

/* ===========================================
   ULTIMATE LOGO FIX - Added last for maximum priority
============================================= */

img.logo-img {
    height: 200px !important;
    width: auto !important;
    min-height: 200px !important;
    max-height: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}