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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(195, 73, 234, 0.3);
    transition: all 0.3s ease;
}

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

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #db6cff, #c349ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #db6cff;
    line-height: 1;
}

.logo-sub {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #db6cff, #c349ea);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: #db6cff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #db6cff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #c349ea;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #db6cff;
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #db6cff, #c349ea);
    color: #0a0a0a;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(195, 73, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(195, 73, 234, 0.4);
    background: linear-gradient(135deg, #c349ea, #db6cff);
}

.btn-secondary {
    background: transparent;
    color: #db6cff;
    border: 2px solid #db6cff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #db6cff;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-newsletter {
    background: rgba(195, 73, 234, 0.1);
    color: #db6cff;
    border: 1px solid rgba(195, 73, 234, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-newsletter:hover {
    background: rgba(195, 73, 234, 0.2);
    border-color: #db6cff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(20, 20, 20, 0.9) 50%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero.webp') center/cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.hero-text {
    max-width: 700px;
    margin-bottom: 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(195, 73, 234, 0.1);
    border: 1px solid rgba(195, 73, 234, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: #db6cff;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.highlight {
    color: #db6cff;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #db6cff, #c349ea);
    opacity: 0.7;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(195, 73, 234, 0.1);
    border: 1px solid rgba(195, 73, 234, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #db6cff, #c349ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1.2rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #db6cff;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #db6cff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator:hover {
    color: #c349ea;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(195, 73, 234, 0.1);
    border: 1px solid rgba(195, 73, 234, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #db6cff;
    backdrop-filter: blur(10px);
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #111;
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

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

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .about-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #db6cff, #c349ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 2rem;
    cursor: pointer;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.about-image:hover .play-button {
    transform: scale(1);
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #db6cff;
}

.about-text > p {
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #db6cff, #c349ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.feature-content p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

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

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(195, 73, 234, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #db6cff;
    box-shadow: 0 20px 40px rgba(195, 73, 234, 0.2);
}

.service-card.premium {
    background: linear-gradient(135deg, rgba(195, 73, 234, 0.1), rgba(244, 208, 63, 0.05));
    border-color: #db6cff;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #db6cff, #c349ea);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1.8rem;
}

.service-badge {
    background: linear-gradient(135deg, #db6cff, #c349ea);
    color: #0a0a0a;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card > p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.service-features i {
    color: #db6cff;
    font-size: 0.8rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #111;
}

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

.reason-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(195, 73, 234, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.reason-card:hover {
    transform: translateY(-10px);
    border-color: #db6cff;
    box-shadow: 0 20px 40px rgba(195, 73, 234, 0.2);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #db6cff, #c349ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.reason-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.reason-card p {
    color: #ccc;
    line-height: 1.6;
}

.reason-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #db6cff, #c349ea);
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Warranty Section */
.warranty {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.warranty-bg {
    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 100 100"><defs><pattern id="luxury" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23db6cff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury)"/></svg>') repeat;
}

.warranty-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.warranty-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.warranty-text > p {
    margin-bottom: 3rem;
    color: #ccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

.warranty-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.warranty-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #db6cff, #c349ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.warranty-info h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #db6cff;
}

.warranty-info p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.warranty-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.warranty-seal {
    position: relative;
    width: 250px;
    height: 250px;
}

.seal-outer {
    width: 100%;
    height: 100%;
    border: 3px solid #db6cff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
}

.seal-inner {
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, #db6cff, #c349ea);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    text-align: center;
}

.seal-inner i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.seal-inner span {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #111;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(195, 73, 234, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #db6cff;
    box-shadow: 0 15px 30px rgba(195, 73, 234, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    color: #db6cff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #e0e0e0;
    font-style: italic;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    color: #db6cff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #db6cff;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info span {
    color: #db6cff;
    font-size: 0.9rem;
    font-weight: 500;
}

.author-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #999;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #0a0a0a;
}

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

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

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(195, 73, 234, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #db6cff;
    box-shadow: 0 15px 30px rgba(195, 73, 234, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #db6cff, #c349ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.contact-card h4 {
    color: #db6cff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-card p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-link {
    color: #db6cff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #c349ea;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(195, 73, 234, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #db6cff;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Luxury Form Styles */
.luxury-form .form-group {
    position: relative;
    margin-bottom: 2rem;
}

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

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
    width: 100%;
    padding: 15px 15px 15px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(195, 73, 234, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
    border-color: #db6cff;
    background: rgba(195, 73, 234, 0.1);
    box-shadow: 0 0 0 3px rgba(195, 73, 234, 0.1);
}

.luxury-form label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #999;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: #0a0a0a;
    padding: 0 5px;
}

.luxury-form input:focus + label,
.luxury-form input:valid + label,
.luxury-form select:focus + label,
.luxury-form select:valid + label,
.luxury-form textarea:focus + label,
.luxury-form textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: #db6cff;
}

.luxury-form select {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="%23db6cff" viewBox="0 0 16 16"><path d="M8 11L3 6h10l-5 5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #db6cff;
}

.luxury-checkmark {
    width: 20px;
    height: 20px;
    background: rgba(195, 73, 234, 0.1);
    border: 2px solid #db6cff;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: #000;
    color: #e0e0e0;
    position: relative;
}

.footer-bg {
    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 100 100"><defs><pattern id="footerlux" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M12.5,2 L18,10 L12.5,18 L7,10 Z" fill="none" stroke="%23db6cff" stroke-width="0.3" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerlux)"/></svg>') repeat;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 0;
}

.footer-brand {
    margin-bottom: 3rem;
}

.footer-brand p {
    max-width: 400px;
    margin: 1.5rem 0;
    color: #ccc;
    line-height: 1.6;
}

.footer-awards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #db6cff;
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #db6cff;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-contact .contact-item i {
    color: #db6cff;
    width: 16px;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-media a {
    width: 40px;
    height: 40px;
    background: rgba(195, 73, 234, 0.1);
    border: 1px solid rgba(195, 73, 234, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #db6cff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background: rgba(195, 73, 234, 0.2);
    border-color: #db6cff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(195, 73, 234, 0.2);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #999;
    margin: 0;
    font-size: 0.9rem;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-certifications span {
    background: rgba(195, 73, 234, 0.1);
    color: #db6cff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(195, 73, 234, 0.3);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
}

.modal-content {
    background: linear-gradient(135deg, #111, #1a1a1a);
    color: #e0e0e0;
    margin: 3% auto;
    border: 2px solid #db6cff;
    border-radius: 20px;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    animation: luxuryModalSlide 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(195, 73, 234, 0.1);
}

.modal-large {
    max-width: 800px;
}

@keyframes luxuryModalSlide {
    from {
        transform: translateY(-100px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(195, 73, 234, 0.2);
    background: rgba(195, 73, 234, 0.05);
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    color: #db6cff;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close {
    color: #db6cff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(195, 73, 234, 0.1);
}

.close:hover {
    background: rgba(195, 73, 234, 0.2);
    color: #c349ea;
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    line-height: 1.6;
}

.modal-body h4 {
    color: #db6cff;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.modal-body p {
    color: #ccc;
    margin-bottom: 1rem;
}

.modal form {
    padding: 2rem;
}

.newsletter-content {
    text-align: center;
    padding: 0 2rem 1rem;
    color: #ccc;
}

.success-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.success-icon i {
    font-size: 4rem;
    color: #db6cff;
}

#successMessage {
    text-align: center;
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav,
    .header-actions .phone-link {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-content,
    .warranty-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .reasons-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .warranty-features,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        margin: 10% 20px;
        max-width: none;
    }
    
    .luxury-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .modal-content {
        margin: 5% 15px;
    }
    
    .modal-header,
    .modal-body,
    .modal form {
        padding: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-awards {
        flex-direction: column;
        align-items: flex-start;
    }
}