/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: #ffffff;
}

h2 {
    font-size: 2.5rem;
    color: #ffffff;
}

h3 {
    font-size: 1.8rem;
    color: #ffffff;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #b46eff, #9b4dff);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(180, 110, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 110, 255, 0.4);
    background: linear-gradient(135deg, #c57fff, #a85bff);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #b46eff;
    padding: 15px 30px;
    border: 2px solid #b46eff;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: #b46eff;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: #333333;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #444444;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(180, 110, 255, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #b46eff;
}

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

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #cccccc;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav a:hover,
.nav a.active {
    color: #b46eff;
    background: rgba(180, 110, 255, 0.1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #b46eff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding-top: 80px;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.mobile-menu-content a {
    color: #cccccc;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.mobile-menu-content a:hover,
.mobile-menu-content a.active {
    color: #b46eff;
    background: rgba(180, 110, 255, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b4e 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #b46eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2d1b4e, #1a1a1a);
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(180, 110, 255, 0.2);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* Company Info Section */
.company-info {
    padding: 100px 0;
    background: #222222;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.info-card {
    background: #2d2d2d;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(180, 110, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(180, 110, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #b46eff, #9b4dff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: #1a1a1a;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-item {
    background: #2d2d2d;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(180, 110, 255, 0.1);
}

.advantage-item:hover {
    transform: translateY(-5px);
    border-color: rgba(180, 110, 255, 0.3);
}

.advantage-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    filter: invert(57%) sepia(86%) saturate(1745%) hue-rotate(259deg) brightness(103%) contrast(101%);
}

.advantage-item h3 {
    color: #b46eff;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #222222;
}

.tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: #333333;
    color: #cccccc;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: #b46eff;
    color: #ffffff;
}

.tab-content {
    background: #2d2d2d;
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(180, 110, 255, 0.1);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #cccccc;
}

.service-text li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b46eff;
    font-weight: bold;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Achievements Section */
.achievements {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d1b4e, #1a1a1a);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
}

.achievement-number {
    font-size: 4rem;
    font-weight: 900;
    color: #b46eff;
    margin-bottom: 1rem;
}

.achievement-text {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 500;
}

/* Conditions Section */
.conditions {
    padding: 100px 0;
    background: #222222;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.condition-item {
    background: #2d2d2d;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(180, 110, 255, 0.1);
    transition: all 0.3s ease;
}

.condition-item:hover {
    transform: translateY(-5px);
    border-color: rgba(180, 110, 255, 0.3);
}

.condition-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    filter: invert(57%) sepia(86%) saturate(1745%) hue-rotate(259deg) brightness(103%) contrast(101%);
}

.condition-item h3 {
    color: #b46eff;
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #1a1a1a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.review-item {
    background: #2d2d2d;
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(180, 110, 255, 0.1);
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    border-color: rgba(180, 110, 255, 0.3);
}

.review-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.review-rating img {
    width: 20px;
    height: 20px;
    filter: invert(57%) sepia(86%) saturate(1745%) hue-rotate(259deg) brightness(103%) contrast(101%);
}

.review-author {
    color: #b46eff;
    font-weight: 500;
    margin-top: 1.5rem;
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d1b4e, #1a1a1a);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #333333;
    border: 2px solid rgba(180, 110, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b46eff;
    box-shadow: 0 0 0 3px rgba(180, 110, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

/* Footer */
.footer {
    background: #0d0d0d;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(180, 110, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #b46eff;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-section h3 {
    color: #b46eff;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #b46eff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #b46eff;
    transform: translateY(-2px);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-item img {
    width: 20px;
    height: 20px;
    filter: invert(57%) sepia(86%) saturate(1745%) hue-rotate(259deg) brightness(103%) contrast(101%);
    margin-top: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(180, 110, 255, 0.1);
    color: #888888;
}

/* Catalog Specific Styles */
.catalog-filters {
    padding: 2rem 0;
    background: #222222;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #333333;
    color: #cccccc;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #b46eff;
    color: #ffffff;
}

.catalog {
    padding: 60px 0;
    background: #1a1a1a;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.car-card {
    background: #2d2d2d;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(180, 110, 255, 0.1);
}

.car-card:hover {
    transform: translateY(-10px);
    border-color: rgba(180, 110, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.car-image {
    height: 250px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.05);
}

.car-info {
    padding: 2rem;
}

.car-info h3 {
    color: #b46eff;
    margin-bottom: 1rem;
}

.car-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.car-rating img {
    width: 16px;
    height: 16px;
    filter: invert(57%) sepia(86%) saturate(1745%) hue-rotate(259deg) brightness(103%) contrast(101%);
}

.car-rating span {
    color: #b46eff;
    font-weight: 500;
    margin-left: 0.5rem;
}

.car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.feature {
    background: rgba(180, 110, 255, 0.2);
    color: #b46eff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.car-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #b46eff;
}

.period {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Rental Process */
.rental-process {
    padding: 100px 0;
    background: #222222;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b46eff, #9b4dff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d1b4e, #1a1a1a);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-content {
    padding: 60px 0;
    background: #1a1a1a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #2d2d2d;
    border-radius: 10px;
    border: 1px solid rgba(180, 110, 255, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b46eff, #9b4dff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-text h3 {
    color: #b46eff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-text p {
    color: #cccccc;
    margin-bottom: 0.2rem;
}

.contact-text small {
    color: #888888;
    font-size: 0.9rem;
}

.business-hours {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(180, 110, 255, 0.1);
    margin-top: 2rem;
}

.business-hours h3 {
    color: #b46eff;
    margin-bottom: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(180, 110, 255, 0.1);
}

.hours-item.special {
    color: #b46eff;
    font-weight: 600;
    border-bottom: none;
}

.hours-item:last-child {
    border-bottom: none;
}

.contact-form {
    background: #2d2d2d;
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(180, 110, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    color: #b46eff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-custom {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(180, 110, 255, 0.3);
    border-radius: 4px;
    background: #333333;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #b46eff;
    border-color: #b46eff;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom:after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #b46eff;
    text-decoration: underline;
}

/* Quick Contact */
.quick-contact {
    padding: 60px 0;
    background: #222222;
    text-align: center;
}

.quick-contact-content h2 {
    margin-bottom: 1rem;
}

.quick-contact-content p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quick-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-contact-buttons a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.quick-contact-buttons img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(180, 110, 255, 0.1);
}

.faq-item h3 {
    color: #b46eff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* About Page Styles */
.about-content {
    padding: 60px 0;
    background: #1a1a1a;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    color: #b46eff;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.mission-vision {
    padding: 60px 0;
    background: #222222;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.mv-item {
    background: #2d2d2d;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(180, 110, 255, 0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #b46eff, #9b4dff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.our-story {
    padding: 60px 0;
    background: #1a1a1a;
}

.story-timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.timeline-year {
    background: linear-gradient(135deg, #b46eff, #9b4dff);
    color: #ffffff;
    padding: 1rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.timeline-content {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(180, 110, 255, 0.1);
}

.timeline-content h4 {
    color: #b46eff;
    margin-bottom: 1rem;
}

.our-values {
    padding: 60px 0;
    background: #222222;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: #2d2d2d;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(180, 110, 255, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: rgba(180, 110, 255, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #b46eff, #9b4dff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.team {
    padding: 60px 0;
    background: #1a1a1a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: #2d2d2d;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(180, 110, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(180, 110, 255, 0.3);
}

.member-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #b46eff, #9b4dff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
    background: #1a1a1a;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: #2d2d2d;
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(180, 110, 255, 0.1);
}

.legal-document h2 {
    color: #b46eff;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.legal-document h3 {
    color: #b46eff;
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.legal-document ul,
.legal-document ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.contact-box {
    background: rgba(180, 110, 255, 0.1);
    border: 1px solid rgba(180, 110, 255, 0.3);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(180, 110, 255, 0.2);
    text-align: center;
    color: #888888;
    font-style: italic;
}

/* Cookie Settings */
.cookie-settings-box {
    background: #333333;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(180, 110, 255, 0.2);
    margin: 2rem 0;
}

.cookie-option {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(180, 110, 255, 0.05);
    border-radius: 8px;
}

.cookie-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: 500;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #aaa;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid #b46eff;
    z-index: 1001;
    padding: 2rem;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    color: #b46eff;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    padding: 2rem;
    overflow-y: auto;
}

.cookie-modal-content {
    max-width: 600px;
    margin: 50px auto;
    background: #2d2d2d;
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #b46eff;
}

.cookie-modal-content h3 {
    color: #b46eff;
    margin-bottom: 2rem;
    text-align: center;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2d1b4e, #1a1a1a);
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.thank-you-content h1 {
    font-size: 3.5rem;
    color: #4ade80;
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-details {
    background: #2d2d2d;
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(180, 110, 255, 0.1);
    margin: 3rem 0;
    text-align: left;
}

.thank-you-details h2 {
    text-align: center;
    color: #b46eff;
    margin-bottom: 2rem;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(180, 110, 255, 0.05);
    border-radius: 10px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b46eff, #9b4dff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.step-text h3 {
    color: #b46eff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-text p {
    color: #cccccc;
    margin: 0;
    font-size: 0.95rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.emergency-contact {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(180, 110, 255, 0.1);
    margin-top: 3rem;
}

.emergency-contact h3 {
    color: #b46eff;
    margin-bottom: 1rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #b46eff, #9b4dff);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.phone-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 110, 255, 0.4);
}

.phone-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.availability {
    color: #4ade80;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .info-grid,
    .advantages-grid,
    .achievements-grid,
    .conditions-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-content,
    .contact-grid,
    .about-intro,
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .achievement-number {
        font-size: 3rem;
    }
    
    .tab-content,
    .legal-document,
    .cookie-modal-content {
        padding: 2rem 1.5rem;
    }
    
    .thank-you-details {
        padding: 2rem 1.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    body {
        word-break: break-word;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu,
    .cookie-banner,
    .cookie-modal,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .page-header {
        background: none;
        color: black;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #ffffff;
    }
    
    .btn-outline {
        background: #ffffff;
        color: #000000;
    }
    
    .info-card,
    .advantage-item,
    .condition-item,
    .review-item {
        border: 2px solid #b46eff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
