/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background: var(--white);
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
}

/* ===== HEADER ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color);
    padding: 0.75rem 1rem;
    position: relative;
    transition: var(--transition);
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .text-primary {
    color: #ffd700 !important;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.feature-item i {
    font-size: 1.25rem;
    color: #ffd700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-hover);
    width: 100%;
    height: auto;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.py-5 {
    padding: 4rem 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--secondary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    background: var(--light-color);
}

.step-card {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.step-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.step-card p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* ===== PRICES SECTION ===== */
.prices-section {
    background: var(--white);
}

.prices-section .row {
    padding-top: 1rem;
}

.price-card {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.price-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    margin-top: 1rem;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-header {
    margin-bottom: 2rem;
    position: relative;
}

.price-card .badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
    z-index: 10;
    transform: rotate(-8deg);
    transition: var(--transition);
}

.price-card .badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 15px;
    pointer-events: none;
}

.price-card.featured:hover .badge {
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.price-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-features li i {
    color: var(--success-color);
    width: 16px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--dark-color);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-info .contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-item p {
    margin: 0;
    opacity: 0.8;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: var(--white);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
}

/* Footer Sections */
.footer-section {
    height: 100%;
}

.footer-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

/* Brand Section */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.footer-brand h5 {
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Contacts Section */
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info {
    flex: 1;
}

.contact-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Legal Section */
.footer-legal {
    margin-bottom: 1rem;
}

.legal-item {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

.legal-item strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.legal-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.legal-value {
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 0.5rem;
}

.legal-text {
    color: rgba(255, 255, 255, 0.75);
}

/* Working Hours */
.working-hours {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
}

.hours-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.days {
    font-weight: 500;
}

.time {
    color: var(--primary-color);
    font-weight: 600;
}

.support {
    color: var(--success-color);
    font-weight: 500;
    font-size: 0.85rem;
}

/* Footer Bottom */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0 1.5rem 0;
}

.footer-bottom {
    padding-top: 0.5rem;
}

.copyright-section {
    text-align: center;
    text-align: left;
}

.copyright {
    margin: 0 0 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.copyright-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-style: italic;
}

/* Social Links */
.footer-social {
    text-align: center;
}

.social-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .price-card.featured {
        transform: none;
        margin-top: 1rem;
    }
    
    .price-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .price-card .badge {
        top: -10px;
        right: -8px;
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        transform: rotate(-5deg);
    }
    
    .price-card.featured:hover .badge {
        transform: rotate(-5deg) scale(1.03);
    }
    
    /* Footer Tablet Styles */
    .footer-section {
        margin-bottom: 2.5rem;
    }
    
    .contact-item {
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .hours-item {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .copyright-section {
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Footer Responsive Styles */
    .footer-title::after {
        width: 25px;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        justify-content: center;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        margin-top: 0;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .hours-item {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .copyright-section {
        text-align: center;
    }
    
    .footer-social {
        margin-top: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .service-card,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem 0.5rem;
    }
    
    /* Footer Mobile Styles */
    .footer {
        padding: 3rem 0 2rem 0;
    }
    
    .footer-section {
        margin-bottom: 2.5rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .footer-contacts {
        gap: 1rem;
    }
    
    .contact-item {
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 8px;
        border-left: 2px solid var(--primary-color);
    }
    
    .contact-label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-link,
    .contact-text {
        font-size: 0.85rem;
    }
    
    .legal-item {
        text-align: center;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    
    .working-hours {
        margin-top: 1.5rem;
        padding: 0.75rem;
    }
    
    .hours-title {
        font-size: 0.9rem;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .hours-item {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .support {
        font-size: 0.8rem;
        margin-top: 0.25rem;
    }
    
    .footer-divider {
        margin: 2rem 0 1rem 0;
    }
    
    .copyright,
    .copyright-note {
        text-align: center;
        font-size: 0.8rem;
    }
    
    .copyright-note {
        margin-top: 0.5rem;
    }
    
    .social-title {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .social-links {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}
