/* styles.css */

:root {
    --primary-color: #4a90e2;
    --secondary-color: #2c3e50;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, rgba(42, 67, 101, 0.95), rgba(74, 144, 226, 0.95));
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: white !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2a4365 0%, #4a90e2 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}

.hero-subtitle {
    letter-spacing: 3px;
    font-weight: 600;
    opacity: 0.9;
}

.hero-icon {
    font-size: 15rem;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Icon Display */
.icon-display i {
    font-size: 12rem;
    opacity: 0.15;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.05); opacity: 0.2; }
}

/* Cards */
.card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.icon-box {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4a90e2, #2a4365);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
    animation: rotate-gentle 10s linear infinite;
}

.icon-box i {
    font-size: 3rem;
    color: white;
}

@keyframes rotate-gentle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* Contact Section */
.contact-icon {
    font-size: 10rem;
    opacity: 0.3;
    animation: swing 4s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #4a90e2, #2a4365);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #2a4365, #4a90e2);
}

.btn-outline-primary {
    border: 2px solid #4a90e2;
    color: #4a90e2;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #4a90e2, #2a4365);
    border-color: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Modal */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-control {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a, #2c3e50);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-icon {
        font-size: 8rem;
    }
    
    .icon-display i {
        font-size: 6rem;
    }
    
    .contact-icon {
        font-size: 5rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .hero-section > * {
    animation: fadeIn 0.8s ease-out;
}




/* Добавьте эти стили в существующий файл styles.css */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2a4365 0%, #4a90e2 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.pricing-header-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.pricing-card-header {
    background: linear-gradient(135deg, #4a90e2, #2a4365);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-card-header i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.pricing-card-body {
    padding: 2rem;
}

/* Price Items */
.price-item {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.price-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.price-item.highlighted {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(42, 67, 101, 0.1));
    border: 2px solid #4a90e2;
}

.price-label {
    font-weight: 500;
    color: #333;
}

.price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4a90e2;
}

.price-value small {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
}

/* Small Price Items */
.price-item-small {
    padding: 0.75rem;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.price-item-small:last-child {
    border-bottom: none;
}

.price-item-small:hover {
    background: #f8f9fa;
    padding-left: 1rem;
}

/* Pricing Categories */
.pricing-category {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s ease;
}

.pricing-category:hover {
    border-color: #4a90e2;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.1);
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a4365;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
}

.price-list {
    margin-top: 1rem;
}

/* Delivery Options */
.delivery-option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.delivery-option:hover {
    border-color: #4a90e2;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.15);
}

.delivery-option i {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.delivery-option .price {
    font-size: 2rem;
    font-weight: 700;
    color: #2a4365;
    margin-top: 1rem;
}

.delivery-option.free {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(25, 135, 84, 0.1));
    border-color: #28a745;
}

.delivery-option.free i {
    color: #28a745;
}

.delivery-option.free .price {
    color: #28a745;
    font-size: 2.5rem;
}

/* Alerts */
.alert {
    border-radius: 12px;
    border: none;
}

.alert-info {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.1), rgba(11, 172, 204, 0.1));
    color: #0dcaf0;
}

.alert-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 167, 38, 0.1));
    color: #dc8b00;
}

/* CTA Section */
.cta-icon {
    font-size: 5rem;
    opacity: 0.9;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-header-icon {
        font-size: 4rem;
    }
    
    .pricing-card-header {
        padding: 1.5rem;
    }
    
    .pricing-card-header i {
        font-size: 2rem;
    }
    
    .pricing-card-body {
        padding: 1.5rem;
    }
    
    .delivery-option {
        margin-bottom: 1rem;
    }
    
    .cta-icon {
        font-size: 3rem;
    }
}




/* FAQ Specific Styles */

.faq-category {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.category-header {
    background: linear-gradient(135deg, #4a90e2, #2a4365);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-header i {
    font-size: 2rem;
    opacity: 0.9;
}

.category-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Accordion Customization */
.accordion-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    background-color: white;
    color: #2a4365;
    box-shadow: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(42, 67, 101, 0.05));
    color: #4a90e2;
}

.accordion-button:hover {
    background: #f8f9fa;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234a90e2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234a90e2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem 2rem 2rem;
    background: white;
    color: #555;
    line-height: 1.8;
}

/* Custom List Styling */
.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Service Cards in FAQ */
.service-card {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(42, 67, 101, 0.05));
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.1);
}

/* Help Section */
.help-icon {
    font-size: 5rem;
    color: #4a90e2;
    opacity: 0.8;
    animation: pulse-gentle 2s ease-in-out infinite;
}

@keyframes pulse-gentle {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.2);
    color: #4a90e2;
}

.contact-link i {
    font-size: 2.5rem;
    color: #4a90e2;
}

.contact-link:hover i {
    animation: bounce-small 0.5s ease;
}

@keyframes bounce-small {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .category-header {
        padding: 1rem 1.5rem;
    }
    
    .category-header i {
        font-size: 1.5rem;
    }
    
    .category-header h2 {
        font-size: 1.25rem;
    }
    
    .accordion-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .help-icon {
        font-size: 3rem;
    }
    
    .contact-link {
        padding: 1rem;
    }
    
    .contact-link i {
        font-size: 2rem;
    }
}




/* Service Page Specific Styles */

.service-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #4a90e2 100%);
}

/* Title Divider */
.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #2a4365);
    border-radius: 2px;
    margin-top: 1rem;
}

/* Icon Feature Large */
.icon-feature-large {
    text-align: center;
    padding: 3rem;
}

.icon-feature-large i {
    font-size: 15rem;
    color: #4a90e2;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #4a90e2, #2a4365);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2, #2a4365);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
    z-index: 2;
    animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { 
        box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
        transform: translateX(-50%) scale(1);
    }
    50% { 
        box-shadow: 0 15px 40px rgba(74, 144, 226, 0.6);
        transform: translateX(-50%) scale(1.05);
    }
}

.timeline-icon i {
    font-size: 2.5rem;
    color: white;
}

.timeline-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(42, 67, 101, 0.1));
    color: #4a90e2;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.step-visual {
    text-align: center;
    padding: 2rem;
}

.step-visual i {
    font-size: 12rem;
    color: #4a90e2;
    opacity: 0.1;
    animation: rotate-gentle 10s linear infinite;
}

/* Mobile Timeline Adjustments */
@media (max-width: 992px) {
    .process-timeline::before {
        left: 40px;
    }
    
    .timeline-icon {
        left: 40px;
        width: 60px;
        height: 60px;
    }
    
    .timeline-icon i {
        font-size: 1.8rem;
    }
    
    .timeline-content {
        margin-left: 100px;
        padding: 2rem;
    }
    
    .step-visual i {
        font-size: 6rem;
    }
}

@media (max-width: 576px) {
    .timeline-content {
        margin-left: 80px;
        padding: 1.5rem;
    }
    
    .icon-feature-large i {
        font-size: 8rem;
    }
}

/* Delivery Option Updates for Service Page */
.delivery-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.delivery-option i {
    font-size: 3rem;
    flex-shrink: 0;
}

.delivery-option .price {
    font-size: 1.8rem;
    margin-top: 0.5rem;
}

/* Additional Responsive Adjustments */
@media (max-width: 768px) {
    .service-hero .display-3 {
        font-size: 2rem;
    }
    
    .step-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .delivery-option {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}




/* Dry Cleaning Page Specific Styles */

.dryclean-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #4a90e2 100%);
}

/* Pricing Category Simple */
.pricing-category-simple {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.03), rgba(42, 67, 101, 0.03));
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 3px solid #4a90e2;
    height: 100%;
    transition: all 0.3s ease;
}

.pricing-category-simple:hover {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08), rgba(42, 67, 101, 0.08));
    transform: translateX(3px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.1);
}

/* Stars icon animation */
@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.8; 
    }
    25% { 
        transform: scale(1.1) rotate(5deg); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1) rotate(-5deg); 
        opacity: 0.9; 
    }
    75% { 
        transform: scale(1.1) rotate(5deg); 
        opacity: 1; 
    }
}

.icon-feature-large .bi-stars {
    animation: sparkle 4s ease-in-out infinite;
}

/* Eco-friendly badge */
.eco-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(25, 135, 84, 0.1));
    color: #28a745;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.eco-badge i {
    font-size: 1.2rem;
}

/* Enhanced service cards for dry cleaning */
.service-card h5 {
    display: flex;
    align-items: center;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .dryclean-hero .display-3 {
        font-size: 2rem;
    }
    
    .pricing-category-simple {
        margin-bottom: 1rem;
    }
}




