/* Hyde Clean Team Custom Styles */

:root {
    --hyde-primary: #2563eb;
    --hyde-secondary: #f97316;
    --hyde-dark: #1e293b;
    --hyde-light: #f8fafc;
    --hyde-success: #10b981;
    --hyde-warning: #f59e0b;
    --hyde-danger: #ef4444;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--hyde-dark);
}

/* Logo Styles */
.hyde-logo {
    font-size: 1.5rem;
    color: var(--hyde-primary) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hyde-logo:hover {
    color: var(--hyde-secondary) !important;
    transform: scale(1.05);
}

/* Custom Colors */
.text-hyde-primary { color: var(--hyde-primary) !important; }
.text-hyde-secondary { color: var(--hyde-secondary) !important; }
.text-hyde-dark { color: var(--hyde-dark) !important; }
.bg-hyde-primary { background-color: var(--hyde-primary) !important; }
.bg-hyde-light { background-color: var(--hyde-light) !important; }

/* Buttons */
.btn-hyde-primary {
    background-color: var(--hyde-primary);
    border-color: var(--hyde-primary);
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
}

.btn-hyde-primary:hover {
    background-color: var(--hyde-secondary);
    border-color: var(--hyde-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Hero Section */
.hero-excellence {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(249, 115, 22, 0.8)), 
                url('/photo_storage/hero-background-353fc77733be084e096cd277d2fd2c3e.jpg') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Navigation */
.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 8px;
    transition: color 0.3s ease;
    color: var(--hyde-dark) !important;
}

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

/* Service Cards */
.service-excellence-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.service-excellence-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.service-image {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-excellence-card:hover .service-image {
    transform: scale(1.05);
}

.price-tag {
    background: linear-gradient(45deg, var(--hyde-primary), var(--hyde-secondary));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

/* Feature Icons */
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--hyde-primary), var(--hyde-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

/* Testimonials */
.testimonial-excellence-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-excellence-card:hover {
    transform: translateY(-5px);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Benefits List */
.benefit-excellence-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-item i {
    font-size: 1.5rem;
    margin-top: 5px;
}

/* Cookie Consent */
.cookie-excellence-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 3px solid var(--hyde-primary);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    padding: 20px 0;
}

.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 20px 30px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
}

.cookie-modal-body {
    padding: 30px;
}

.cookie-modal-footer {
    padding: 0 30px 30px 30px;
    text-align: right;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.form-check-input:checked {
    background-color: var(--hyde-primary);
    border-color: var(--hyde-primary);
}

/* Form Styles */
.form-control:focus {
    border-color: var(--hyde-primary);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-excellence {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .service-excellence-card {
        margin-bottom: 20px;
    }
    
    .benefit-item {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .cookie-excellence-banner .btn {
        width: 100%;
        margin: 5px 0;
    }
}

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

.service-excellence-card,
.testimonial-excellence-card,
.benefit-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.shadow-custom {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.rounded-custom {
    border-radius: 12px !important;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    opacity: 0.5;
    cursor: pointer;
}

.btn-close:hover {
    opacity: 1;
}